Commit 4eefd62c authored by Bart Van Assche's avatar Bart Van Assche Committed by Jason Gunthorpe

include/rdma/opa_addr.h: Fix an endianness issue

IB_MULTICAST_LID_BASE is defined as follows:

  #define IB_MULTICAST_LID_BASE   cpu_to_be16(0xC000)

Hence use be16_to_cpu() to convert it to CPU endianness. Compile-tested
only.

Fixes: af808ece ("IB/SA: Check dlid before SA agent queries for ClassPortInfo")
Signed-off-by: default avatarBart Van Assche <bart.vanassche@wdc.com>
Cc: Venkata Sandeep Dhanalakota <venkata.s.dhanalakota@intel.com>
Cc: Mike Marciniszyn <mike.marciniszyn@intel.com>
Cc: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 1c77483e
...@@ -120,7 +120,7 @@ static inline bool rdma_is_valid_unicast_lid(struct rdma_ah_attr *attr) ...@@ -120,7 +120,7 @@ static inline bool rdma_is_valid_unicast_lid(struct rdma_ah_attr *attr)
if (attr->type == RDMA_AH_ATTR_TYPE_IB) { if (attr->type == RDMA_AH_ATTR_TYPE_IB) {
if (!rdma_ah_get_dlid(attr) || if (!rdma_ah_get_dlid(attr) ||
rdma_ah_get_dlid(attr) >= rdma_ah_get_dlid(attr) >=
be32_to_cpu(IB_MULTICAST_LID_BASE)) be16_to_cpu(IB_MULTICAST_LID_BASE))
return false; return false;
} else if (attr->type == RDMA_AH_ATTR_TYPE_OPA) { } else if (attr->type == RDMA_AH_ATTR_TYPE_OPA) {
if (!rdma_ah_get_dlid(attr) || if (!rdma_ah_get_dlid(attr) ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment