Glue function mlx5_glue_devx_qp_query() uses wrong directive HAVE_IBV_DEVX_ASYNC by mistake. This patch replaces the directive to HAVE_IBV_DEVX_OBJ, as required.
Fixes: 62d6f70f30f4 ("net/mlx5: add glue for queue query via DevX") Cc: sta...@dpdk.org Signed-off-by: Dekel Peled <dek...@mellanox.com> --- drivers/net/mlx5/mlx5_glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mlx5/mlx5_glue.c b/drivers/net/mlx5/mlx5_glue.c index b5aab52..58c9a82 100644 --- a/drivers/net/mlx5/mlx5_glue.c +++ b/drivers/net/mlx5/mlx5_glue.c @@ -976,7 +976,7 @@ const void *in, size_t inlen, void *out, size_t outlen) { -#ifdef HAVE_IBV_DEVX_ASYNC +#ifdef HAVE_IBV_DEVX_OBJ return mlx5dv_devx_qp_query(qp, in, inlen, out, outlen); #else (void)qp; -- 1.8.3.1