aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/be2iscsi
diff options
context:
space:
mode:
authorJayamohan Kallickal <jayamohank@serverengines.com>2010-01-05 05:10:01 +0530
committerJames Bottomley <James.Bottomley@suse.de>2010-01-18 10:48:22 -0600
commit51a462500fbed4a1e8110dc60a421a3f12b9580b (patch)
tree9dac274836c36917dcab94202d0e230848650620 /drivers/scsi/be2iscsi
parent[SCSI] be2iscsi: decide which requests need completion (diff)
downloadlinux-dev-51a462500fbed4a1e8110dc60a421a3f12b9580b.tar.xz
linux-dev-51a462500fbed4a1e8110dc60a421a3f12b9580b.zip
[SCSI] be2iscsi: No requirement for endianess change for data_count
This patch removes the endianess change that was wrongly added for data_count Signed-off-by: Jayamohan Kallickal <jayamohank@serverengines.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/be2iscsi')
-rw-r--r--drivers/scsi/be2iscsi/be_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c
index 26d7016492da..6170548a5289 100644
--- a/drivers/scsi/be2iscsi/be_main.c
+++ b/drivers/scsi/be2iscsi/be_main.c
@@ -3607,7 +3607,7 @@ static int beiscsi_mtask(struct iscsi_task *task)
}
AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb,
- be32_to_cpu(task->data_count));
+ task->data_count);
AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb,
io_task->pwrb_handle->nxt_wrb_index);
be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb));