diff options
author | Jayamohan Kallickal <jayamohank@serverengines.com> | 2010-01-04 18:40:01 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-01-18 11:48:22 -0500 |
commit | 51a462500fbed4a1e8110dc60a421a3f12b9580b (patch) | |
tree | 9dac274836c36917dcab94202d0e230848650620 /drivers | |
parent | 0ecb0b45f22df911c564070b64af21db36934f0f (diff) |
[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')
-rw-r--r-- | drivers/scsi/be2iscsi/be_main.c | 2 |
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) | |||
3607 | } | 3607 | } |
3608 | 3608 | ||
3609 | AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, | 3609 | AMAP_SET_BITS(struct amap_iscsi_wrb, r2t_exp_dtl, pwrb, |
3610 | be32_to_cpu(task->data_count)); | 3610 | task->data_count); |
3611 | AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb, | 3611 | AMAP_SET_BITS(struct amap_iscsi_wrb, ptr2nextwrb, pwrb, |
3612 | io_task->pwrb_handle->nxt_wrb_index); | 3612 | io_task->pwrb_handle->nxt_wrb_index); |
3613 | be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb)); | 3613 | be_dws_le_to_cpu(pwrb, sizeof(struct iscsi_wrb)); |