diff options
| author | Jens Axboe <jens.axboe@oracle.com> | 2008-03-04 14:22:54 -0500 |
|---|---|---|
| committer | Jens Axboe <jens.axboe@oracle.com> | 2008-03-04 14:24:05 -0500 |
| commit | e97a294ef6938512b655b1abf17656cf2b26f709 (patch) | |
| tree | edd25900b25c853540cdaeca4f1d2b10fc560493 | |
| parent | 87baa2bb904ed46f872385fe430b6cfb80967835 (diff) | |
scsi: missing add of padded bytes to io completion byte count
Original patch from Tejun Heo <htejun@gmail.com> but should use ->extra_len
and not ->data_len, as we would then overshoot the original request size.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
| -rw-r--r-- | drivers/scsi/scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index fecba05b4e77..e5c6f6af8765 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
| @@ -757,7 +757,7 @@ void scsi_finish_command(struct scsi_cmnd *cmd) | |||
| 757 | "Notifying upper driver of completion " | 757 | "Notifying upper driver of completion " |
| 758 | "(result %x)\n", cmd->result)); | 758 | "(result %x)\n", cmd->result)); |
| 759 | 759 | ||
| 760 | good_bytes = scsi_bufflen(cmd); | 760 | good_bytes = scsi_bufflen(cmd) + cmd->request->extra_len; |
| 761 | if (cmd->request->cmd_type != REQ_TYPE_BLOCK_PC) { | 761 | if (cmd->request->cmd_type != REQ_TYPE_BLOCK_PC) { |
| 762 | drv = scsi_cmd_to_driver(cmd); | 762 | drv = scsi_cmd_to_driver(cmd); |
| 763 | if (drv->done) | 763 | if (drv->done) |
