diff options
author | Artemy Kovalyov <artemyko@mellanox.com> | 2017-01-18 16:58:06 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-02-14 11:41:16 -0500 |
commit | 25bf14d6f5898a59325f3ecabda7695565776594 (patch) | |
tree | 0df1f32f47623c9b76fcb78ffe314be39b681d3b /include/rdma | |
parent | 4be6da1e5b8dde8b163c540fca5745644a6a9e00 (diff) | |
download | op-kernel-dev-25bf14d6f5898a59325f3ecabda7695565776594.zip op-kernel-dev-25bf14d6f5898a59325f3ecabda7695565776594.tar.gz |
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 62fb9c6..22a7139 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 { |