diff options
| author | Daisuke Matsuda <matsuda-daisuke@fujitsu.com> | 2025-03-24 16:56:49 +0900 |
|---|---|---|
| committer | Leon Romanovsky <leon@kernel.org> | 2025-04-09 14:30:10 -0400 |
| commit | b84001ad0ceeb34bc3fd6c383f197326d4fe8353 (patch) | |
| tree | c0b93a781af70d531a642093bdb3212a426e72d3 /include/rdma | |
| parent | RDMA/rxe: Enable ODP in RDMA FLUSH operation (diff) | |
| download | linux-b84001ad0ceeb34bc3fd6c383f197326d4fe8353.tar.gz linux-b84001ad0ceeb34bc3fd6c383f197326d4fe8353.zip | |
RDMA/rxe: Enable ODP in ATOMIC WRITE operation
Add rxe_odp_do_atomic_write() so that ODP specific steps are applied to
ATOMIC WRITE requests.
Signed-off-by: Daisuke Matsuda <matsuda-daisuke@fujitsu.com>
Link: https://patch.msgid.link/20250324075649.3313968-3-matsuda-daisuke@fujitsu.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Diffstat (limited to 'include/rdma')
| -rw-r--r-- | include/rdma/ib_verbs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 41bf98ccb275..0a7ccd08b365 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -326,6 +326,7 @@ enum ib_odp_transport_cap_bits { IB_ODP_SUPPORT_ATOMIC = 1 << 4, IB_ODP_SUPPORT_SRQ_RECV = 1 << 5, IB_ODP_SUPPORT_FLUSH = 1 << 6, + IB_ODP_SUPPORT_ATOMIC_WRITE = 1 << 7, }; struct ib_odp_caps { |
