diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2007-12-17 19:08:59 +0300 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2007-12-19 01:04:15 +0300 |
commit | a169e63740779f62a9a5ddf0aa61091a393a03c5 (patch) | |
tree | d71fa35e34b0e0e5409be142f8bedcbf939e5a43 | |
parent | cd81621c5c5c869b848818b506962dab4499e0d9 (diff) | |
download | linux-a169e63740779f62a9a5ddf0aa61091a393a03c5.tar.xz |
[SCSI] initio: bugfix for accessors patch
patch: [SCSI] initio: convert to use the data buffer accessors had a
small but fatal bug in that it didn't increment the pointer into the
initio scatterlist descriptors as it looped over the block generated
ones. Fixed here.
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
-rw-r--r-- | drivers/scsi/initio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c index 769a7a805859..01bf0189367d 100644 --- a/drivers/scsi/initio.c +++ b/drivers/scsi/initio.c @@ -2616,6 +2616,7 @@ static void initio_build_scb(struct initio_host * host, struct scsi_ctrl_blk * c scsi_for_each_sg(cmnd, sglist, cblk->sglen, i) { sg->data = cpu_to_le32((u32)sg_dma_address(sglist)); total_len += sg->len = cpu_to_le32((u32)sg_dma_len(sglist)); + ++sg; } cblk->buflen = (scsi_bufflen(cmnd) > total_len) ? |