From: Matan Barak <[email protected]> The implementation uses the default commands from libibverbs.
Signed-off-by: Matan Barak <[email protected]> Signed-off-by: Or Gerlitz <[email protected]> --- src/mlx4.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mlx4.c b/src/mlx4.c index 58f5435..f73e23b 100644 --- a/src/mlx4.c +++ b/src/mlx4.c @@ -209,6 +209,8 @@ static int mlx4_init_context(struct verbs_device *v_device, verbs_set_ctx_op(verbs_ctx, drv_ibv_create_ah_ex, mlx4_create_ah_ex); verbs_set_ctx_op(verbs_ctx, drv_query_port_ex, mlx4_query_port_ex); + verbs_set_ctx_op(verbs_ctx, drv_ibv_create_flow, ibv_cmd_create_flow); + verbs_set_ctx_op(verbs_ctx, drv_ibv_destroy_flow, ibv_cmd_destroy_flow); verbs_ctx->has_comp_mask = VERBS_CONTEXT_CREATE_AH; return 0; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
