diff options
author | Swen Schillig <swen@vnet.ibm.com> | 2010-06-21 04:11:31 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-07-21 18:05:06 -0400 |
commit | 30b6777b8931afc5f3aa42858fe917938b570f79 (patch) | |
tree | 3c877277f0b9919a1a22379d991cd10ca1982936 /drivers | |
parent | 5adcbeb34d2a031d3baca227eef23e56734006ba (diff) |
[SCSI] zfcp: Fix check whether unchained ct_els is possible
A false check was performed whether an unchained ct_els
is possible or not.
Signed-off-by: Swen Schillig <swen@vnet.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/s390/scsi/zfcp_fsf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/scsi/zfcp_fsf.c b/drivers/s390/scsi/zfcp_fsf.c index 9ac6a6e4a604..4e15361a83b9 100644 --- a/drivers/s390/scsi/zfcp_fsf.c +++ b/drivers/s390/scsi/zfcp_fsf.c | |||
@@ -981,7 +981,7 @@ static int zfcp_fsf_setup_ct_els_sbals(struct zfcp_fsf_req *req, | |||
981 | } | 981 | } |
982 | 982 | ||
983 | /* use single, unchained SBAL if it can hold the request */ | 983 | /* use single, unchained SBAL if it can hold the request */ |
984 | if (zfcp_qdio_sg_one_sbale(sg_req) || zfcp_qdio_sg_one_sbale(sg_resp)) { | 984 | if (zfcp_qdio_sg_one_sbale(sg_req) && zfcp_qdio_sg_one_sbale(sg_resp)) { |
985 | zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req, | 985 | zfcp_fsf_setup_ct_els_unchained(adapter->qdio, &req->qdio_req, |
986 | sg_req, sg_resp); | 986 | sg_req, sg_resp); |
987 | return 0; | 987 | return 0; |