diff options
author | Jason Gunthorpe <jgg@mellanox.com> | 2018-01-11 14:43:05 -0700 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2018-01-15 15:33:21 -0700 |
commit | c966ea12c00515e70a976aec57d1a4334582c411 (patch) | |
tree | f5b4ebe3dd50b501f4d7ffadd7133ab74f3c1662 /include/uapi/rdma | |
parent | a6753c4d6257feef2a82522d0d222166d4be4aa8 (diff) | |
download | talos-obmc-linux-c966ea12c00515e70a976aec57d1a4334582c411.tar.gz talos-obmc-linux-c966ea12c00515e70a976aec57d1a4334582c411.zip |
RDMA: Mark imm_data as be32 in the verbs uapi header
This matches what the userspace copy of this header has been doing
for a while. imm_data is an opaque 4 byte array carried over the network,
and invalidate_rkey is in CPU byte order.
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'include/uapi/rdma')
-rw-r--r-- | include/uapi/rdma/ib_user_verbs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/rdma/ib_user_verbs.h b/include/uapi/rdma/ib_user_verbs.h index 7e11bb8651b6..fd035641cf41 100644 --- a/include/uapi/rdma/ib_user_verbs.h +++ b/include/uapi/rdma/ib_user_verbs.h @@ -449,7 +449,7 @@ struct ib_uverbs_wc { __u32 vendor_err; __u32 byte_len; union { - __u32 imm_data; + __be32 imm_data; __u32 invalidate_rkey; } ex; __u32 qp_num; @@ -765,7 +765,7 @@ struct ib_uverbs_send_wr { __u32 opcode; __u32 send_flags; union { - __u32 imm_data; + __be32 imm_data; __u32 invalidate_rkey; } ex; union { |