diff options
author | Ed Lin <ed.lin@promise.com> | 2007-07-05 15:09:06 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-14 19:59:10 -0400 |
commit | 968a5763fb7247feb0e69573a2975a7a0c094267 (patch) | |
tree | 7c8d9e51241df8bde636bbace2ad5a58752b5a53 /drivers/scsi/stex.c | |
parent | 80dc3e062a8f82acd5852df15f6b4bc3359de871 (diff) |
[SCSI] stex: use resid for xfer len information
The original implementation in stex_ys_commands() is inappropriate.
For xfer len information, we should use resid instead.
Signed-off-by: Ed Lin <ed.lin@promise.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/stex.c')
-rw-r--r-- | drivers/scsi/stex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/stex.c b/drivers/scsi/stex.c index adda296b594b..72f6d8015358 100644 --- a/drivers/scsi/stex.c +++ b/drivers/scsi/stex.c | |||
@@ -719,8 +719,8 @@ static void stex_ys_commands(struct st_hba *hba, | |||
719 | 719 | ||
720 | if (ccb->cmd->cmnd[0] == MGT_CMD && | 720 | if (ccb->cmd->cmnd[0] == MGT_CMD && |
721 | resp->scsi_status != SAM_STAT_CHECK_CONDITION) { | 721 | resp->scsi_status != SAM_STAT_CHECK_CONDITION) { |
722 | scsi_bufflen(ccb->cmd) = | 722 | scsi_set_resid(ccb->cmd, scsi_bufflen(ccb->cmd) - |
723 | le32_to_cpu(*(__le32 *)&resp->variable[0]); | 723 | le32_to_cpu(*(__le32 *)&resp->variable[0])); |
724 | return; | 724 | return; |
725 | } | 725 | } |
726 | 726 | ||