Offset and length are not correctly passed to sg_set_page().
Signed-off-by: Yi Zou <[EMAIL PROTECTED]>
---
drivers/scsi/ofc/openfc/openfc_scsi.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/ofc/openfc/openfc_scsi.c
b/drivers/scsi/ofc/openfc/openfc_scsi.c
index 29d5cc8..63242be 100644
--- a/drivers/scsi/ofc/openfc/openfc_scsi.c
+++ b/drivers/scsi/ofc/openfc/openfc_scsi.c
@@ -322,8 +322,8 @@ static void openfc_scsi_send_data(struct fc_scsi_pkt *fsp,
struct fc_seq *sp,
*/
ASSERT(fp->fr_sg_len < FC_FRAME_SG_LEN);
fsg = &fp->fr_sg[fp->fr_sg_len++];
- sg_set_page(fsg, sg_page(sg), sg->offset + offset,
- sg_bytes);
+ sg_set_page(fsg, sg_page(sg),
+ sg_bytes, sg->offset + offset);
} else {
u_int off = offset + sg->offset;
-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html