diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-06-16 11:11:33 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 09:22:29 -0400 |
commit | 8e9a20cee4511be4560f9c858d9994eb6913731e (patch) | |
tree | ccfdb98eb453c5c02c10ac98a9ed5eb141924910 /drivers/infiniband | |
parent | c95fddc729fafb43f420747027eeb998c2e5e798 (diff) |
[SCSI] libiscsi, iscsi_tcp, ib_iser: fix setting of can_queue with old tools.
This patch fixes two bugs that are related.
1. Old tools did not set can_queue/cmds_max. This patch modifies
libiscsi so that when we add the host we catch this and set it
to the default.
2. iscsi_tcp thought that the scsi command that was passed to
the eh functions needed a iscsi_cmd_task allocated for it. It
only needed a mgmt task, and now it does not matter since it
all comes from the same pool and libiscsi handles this for the
drivers. ib_iser had copied iscsi_tcp's code and set can_queue
to its max - 1 to handle this. So this patch removes the max -1,
and just sets it to the max.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/iser/iscsi_iser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/iser/iscsi_iser.c b/drivers/infiniband/ulp/iser/iscsi_iser.c index c02eabd383a1..a56931e03976 100644 --- a/drivers/infiniband/ulp/iser/iscsi_iser.c +++ b/drivers/infiniband/ulp/iser/iscsi_iser.c | |||
@@ -595,7 +595,6 @@ static struct scsi_host_template iscsi_iser_sht = { | |||
595 | .name = "iSCSI Initiator over iSER, v." DRV_VER, | 595 | .name = "iSCSI Initiator over iSER, v." DRV_VER, |
596 | .queuecommand = iscsi_queuecommand, | 596 | .queuecommand = iscsi_queuecommand, |
597 | .change_queue_depth = iscsi_change_queue_depth, | 597 | .change_queue_depth = iscsi_change_queue_depth, |
598 | .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1, | ||
599 | .sg_tablesize = ISCSI_ISER_SG_TABLESIZE, | 598 | .sg_tablesize = ISCSI_ISER_SG_TABLESIZE, |
600 | .max_sectors = 1024, | 599 | .max_sectors = 1024, |
601 | .cmd_per_lun = ISCSI_MAX_CMD_PER_LUN, | 600 | .cmd_per_lun = ISCSI_MAX_CMD_PER_LUN, |