diff mbox

[libibverbs,V1,4/5] Export cross-channel capability flag

Message ID 1452959624-29454-5-git-send-email-leon@leon.nu (mailing list archive)
State Deferred
Headers show

Commit Message

Leon Romanovsky Jan. 16, 2016, 3:53 p.m. UTC
From: Leon Romanovsky <leonro@mellanox.com>

Export device capability flag IB_DEVICE_CROSS_CHANNEL
for the devices that can perform cross-channel operations.

Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Reviewed-by: Sagi Grimberg <sagig@mellanox.com>
---
 include/infiniband/verbs.h | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/include/infiniband/verbs.h b/include/infiniband/verbs.h
index d91dd8a1376e..0ad9be3c323f 100644
--- a/include/infiniband/verbs.h
+++ b/include/infiniband/verbs.h
@@ -121,6 +121,7 @@  enum ibv_device_cap_flags {
 	IBV_DEVICE_XRC			= 1 << 20,
 	IBV_DEVICE_RC_IP_CSUM		= 1 << 25,
 	IBV_DEVICE_RAW_IP_CSUM		= 1 << 26,
+	IBV_DEVICE_CROSS_CHANNEL	= 1 << 27,
 	IBV_DEVICE_MANAGED_FLOW_STEERING = 1 << 29
 };