diff options
author | Erez Zilber <erezz@voltaire.com> | 2008-04-17 00:09:35 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-04-17 00:09:35 -0400 |
commit | 0a22ab92f51478796d5f3997f4f5922409c98b10 (patch) | |
tree | 97bf48294f96cb4cf00f565c08f7538e77f974c2 /drivers/infiniband | |
parent | 068c4ea1bb9ef733961d3d7a104fa9250ba80087 (diff) |
IB/iser: Don't change itt endianness
The itt field in struct iscsi_data is not defined with any particular
endianness. open-iscsi should use it as-is without byte-swapping it.
This fixes sparse warnings coming from doing ntohl(hdr->itt).
Signed-off-by: Erez Zilber <erezz@voltaire.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/iser/iser_initiator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/iser/iser_initiator.c b/drivers/infiniband/ulp/iser/iser_initiator.c index 83247f1fdf72..08dc81c46f41 100644 --- a/drivers/infiniband/ulp/iser/iser_initiator.c +++ b/drivers/infiniband/ulp/iser/iser_initiator.c | |||
@@ -405,7 +405,7 @@ int iser_send_data_out(struct iscsi_conn *conn, | |||
405 | struct iser_dto *send_dto = NULL; | 405 | struct iser_dto *send_dto = NULL; |
406 | unsigned long buf_offset; | 406 | unsigned long buf_offset; |
407 | unsigned long data_seg_len; | 407 | unsigned long data_seg_len; |
408 | unsigned int itt; | 408 | uint32_t itt; |
409 | int err = 0; | 409 | int err = 0; |
410 | 410 | ||
411 | if (!iser_conn_state_comp(iser_conn->ib_conn, ISER_CONN_UP)) { | 411 | if (!iser_conn_state_comp(iser_conn->ib_conn, ISER_CONN_UP)) { |
@@ -416,7 +416,7 @@ int iser_send_data_out(struct iscsi_conn *conn, | |||
416 | if (iser_check_xmit(conn, ctask)) | 416 | if (iser_check_xmit(conn, ctask)) |
417 | return -ENOBUFS; | 417 | return -ENOBUFS; |
418 | 418 | ||
419 | itt = ntohl(hdr->itt); | 419 | itt = (__force uint32_t)hdr->itt; |
420 | data_seg_len = ntoh24(hdr->dlength); | 420 | data_seg_len = ntoh24(hdr->dlength); |
421 | buf_offset = ntohl(hdr->offset); | 421 | buf_offset = ntohl(hdr->offset); |
422 | 422 | ||