summaryrefslogtreecommitdiff
path: root/include/rdma
diff options
context:
space:
mode:
authorEli Cohen <eli@mellanox.com>2016-03-11 20:58:37 (GMT)
committerDoug Ledford <dledford@redhat.com>2016-03-21 20:34:06 (GMT)
commita0c1b2a3508714281f604db818fa0cc83c2f9b6a (patch)
tree22388370391416e1535a45b1d0fe89205a7ade03 /include/rdma
parentfad61ad4e755f5dd13c7702a87cd907207392534 (diff)
downloadlinux-a0c1b2a3508714281f604db818fa0cc83c2f9b6a.tar.xz
IB/core: Support accessing SA in virtualized environment
Per the ongoing standardisation process, when virtual HCAs are present in a network, traffic is routed based on a destination GID. In order to access the SA we use the well known SA GID. We also add a GRH required boolean field to the port attributes which is used to report to the verbs consumer whether this port is connected to a virtual network. We use this field to realize whether we need to create an address vector with GRH to access the subnet administrator. We clear the port attributes struct before calling the hardware driver to make sure the default remains that GRH is not required. Signed-off-by: Eli Cohen <eli@mellanox.com> Reviewed-by: Or Gerlitz <ogerlitz@mellanox.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/rdma')
-rw-r--r--include/rdma/ib_verbs.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index 7239b9a..3a5a66b 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -97,6 +97,11 @@ enum rdma_node_type {
RDMA_NODE_USNIC_UDP,
};
+enum {
+ /* set the local administered indication */
+ IB_SA_WELL_KNOWN_GUID = BIT_ULL(57) | 2,
+};
+
enum rdma_transport_type {
RDMA_TRANSPORT_IB,
RDMA_TRANSPORT_IWARP,
@@ -510,6 +515,7 @@ struct ib_port_attr {
u8 active_width;
u8 active_speed;
u8 phys_state;
+ bool grh_required;
};
enum ib_device_modify_flags {