summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/ibmvscsi
diff options
context:
space:
mode:
authorFUJITA Tomonori2007-07-23 02:28:39 +0200
committerJames Bottomley2007-07-31 17:31:55 +0200
commited3a3633b798a15281f9c9a89a7e74d4bdd02ebe (patch)
tree07ad05b1c80db1b3bbb076d051c1d7dba58cd774 /drivers/scsi/ibmvscsi
parent[SCSI] zfcp: convert to use the data buffer accessors (diff)
downloadkernel-qcow2-linux-ed3a3633b798a15281f9c9a89a7e74d4bdd02ebe.tar.gz
kernel-qcow2-linux-ed3a3633b798a15281f9c9a89a7e74d4bdd02ebe.tar.xz
kernel-qcow2-linux-ed3a3633b798a15281f9c9a89a7e74d4bdd02ebe.zip
[SCSI] ibmvscsi: remove unnecessary map_sg check
No need to check use_sg since sg_tablesize is set appropriately in the scsi host template. Brian King's patch (2a7309372fe56ae46c499b772d811ad31c501dd9) did this cleanup but the data buffer accessors patch (written before the patch and merged after it) restored the check. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Acked-by: Brian King <brking@linux.vnet.ibm.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/ibmvscsi')
-rw-r--r--drivers/scsi/ibmvscsi/ibmvscsi.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/scsi/ibmvscsi/ibmvscsi.c b/drivers/scsi/ibmvscsi/ibmvscsi.c
index 5870866abc99..673526044e8b 100644
--- a/drivers/scsi/ibmvscsi/ibmvscsi.c
+++ b/drivers/scsi/ibmvscsi/ibmvscsi.c
@@ -393,12 +393,6 @@ static int map_sg_data(struct scsi_cmnd *cmd,
return 1;
else if (sg_mapped < 0)
return 0;
- else if (sg_mapped > SG_ALL) {
- printk(KERN_ERR
- "ibmvscsi: More than %d mapped sg entries, got %d\n",
- SG_ALL, sg_mapped);
- return 0;
- }
set_srp_direction(cmd, srp_cmd, sg_mapped);