* [PATCH] [FCoE] Bug in calling sg_set_page()
@ 2008-01-16 19:09 Yi Zou
0 siblings, 0 replies; only message in thread
From: Yi Zou @ 2008-01-16 19:09 UTC (permalink / raw)
To: linux-scsi
Offset and length are not correctly passed to sg_set_page().
Signed-off-by: Yi Zou <yi.zou@intel.com>
---
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;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-16 19:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-16 19:09 [PATCH] [FCoE] Bug in calling sg_set_page() Yi Zou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox