diff options
author | Artemy Kovalyov <artemyko@mellanox.com> | 2017-01-18 15:58:06 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-02-14 17:41:16 +0100 |
commit | 25bf14d6f5898a59325f3ecabda7695565776594 (patch) | |
tree | 0df1f32f47623c9b76fcb78ffe314be39b681d3b /include/rdma | |
parent | IB/mlx5: Support creation of a WQ with scatter FCS offload (diff) | |
download | linux-25bf14d6f5898a59325f3ecabda7695565776594.tar.xz linux-25bf14d6f5898a59325f3ecabda7695565776594.zip |
IB/core: Add implicit MR flag
Add flag IB_ODP_SUPPORT_IMPLICIT indicating implicit MR supported.
Signed-off-by: Artemy Kovalyov <artemyko@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_verbs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 62fb9c61b354..22a71397db01 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -243,7 +243,8 @@ enum ib_atomic_cap { }; enum ib_odp_general_cap_bits { - IB_ODP_SUPPORT = 1 << 0, + IB_ODP_SUPPORT = 1 << 0, + IB_ODP_SUPPORT_IMPLICIT = 1 << 1, }; enum ib_odp_transport_cap_bits { |