From: Boaz Harrosh Date: Mon, 17 Dec 2007 16:08:59 +0000 (+0200) Subject: [SCSI] initio: bugfix for accessors patch X-Git-Tag: v2.6.24-rc6~15^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a169e63740779f62a9a5ddf0aa61091a393a03c5;p=platform%2Fkernel%2Flinux-3.10.git [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 Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c index 769a7a8..01bf018 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) ?