diff options
author | Dave C Boutcher <sleddog@us.ibm.com> | 2005-08-22 15:38:26 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-08-28 12:14:11 -0400 |
commit | 8224bfa84d510630b40ea460b2bb380c91acb8ae (patch) | |
tree | 2bfb5eda755e307e6c96a587bb30a48714f3956a | |
parent | de540a53f2f7b68a48c3021e5ab78ea49f6cf21c (diff) |
[SCSI] ibmvscsi timeout fix
This patch fixes a long term borkenness in
ibmvscsi where we were using the wrong timeout
field from the scsi command (and using the
wrong units.) Now broken by the fact that the
scsi_cmnd timeout field is gone entirely.
This only worked before because all the SCSI
targets assumed that 0 was default.
Signed-off-by: Dave Boutcher <boutcher@us.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r-- | drivers/scsi/ibmvscsi/ibmvscsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/ibmvscsi/ibmvscsi.c b/drivers/scsi/ibmvscsi/ibmvscsi.c index 1ae800ae93d7..e3e6752c4104 100644 --- a/drivers/scsi/ibmvscsi/ibmvscsi.c +++ b/drivers/scsi/ibmvscsi/ibmvscsi.c | |||
@@ -594,7 +594,7 @@ static int ibmvscsi_queuecommand(struct scsi_cmnd *cmnd, | |||
594 | init_event_struct(evt_struct, | 594 | init_event_struct(evt_struct, |
595 | handle_cmd_rsp, | 595 | handle_cmd_rsp, |
596 | VIOSRP_SRP_FORMAT, | 596 | VIOSRP_SRP_FORMAT, |
597 | cmnd->timeout); | 597 | cmnd->timeout_per_command/HZ); |
598 | 598 | ||
599 | evt_struct->cmnd = cmnd; | 599 | evt_struct->cmnd = cmnd; |
600 | evt_struct->cmnd_done = done; | 600 | evt_struct->cmnd_done = done; |