From 5e49611e03eae51f451257092ec342c308a1a765 Mon Sep 17 00:00:00 2001 From: Daisuke Matsuda Date: Thu, 1 May 2025 04:25:28 +0000 Subject: [PATCH] rxe: Enable ibv_advise_mr(3) Add a new handler to rxe so that the kernel module can handle the requests from user-space applications. Signed-off-by: Daisuke Matsuda --- providers/rxe/rxe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/rxe/rxe.c b/providers/rxe/rxe.c index 306c7796d..f8d46c98e 100644 --- a/providers/rxe/rxe.c +++ b/providers/rxe/rxe.c @@ -1854,6 +1854,7 @@ static const struct verbs_context_ops rxe_ctx_ops = { .attach_mcast = ibv_cmd_attach_mcast, .detach_mcast = ibv_cmd_detach_mcast, .free_context = rxe_free_context, + .advise_mr = ibv_cmd_advise_mr, }; static struct verbs_context *rxe_alloc_context(struct ibv_device *ibdev,