common/mlx5: glue event queue query
authorMatan Azrad <matan@mellanox.com>
Wed, 29 Jan 2020 12:38:35 +0000 (12:38 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 5 Feb 2020 08:51:20 +0000 (09:51 +0100)
The event queue is managed only by the kernel.

Add the rdma-core command in glue to query the kernel event queue
details.

Signed-off-by: Matan Azrad <matan@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
drivers/common/mlx5/mlx5_glue.c
drivers/common/mlx5/mlx5_glue.h

index e75e6bc..fedce77 100644 (file)
@@ -1049,6 +1049,20 @@ mlx5_glue_dr_dump_domain(FILE *file, void *domain)
 #endif
 }
 
+static int
+mlx5_glue_devx_query_eqn(struct ibv_context *ctx, uint32_t cpus,
+                        uint32_t *eqn)
+{
+#ifdef HAVE_IBV_DEVX_OBJ
+       return mlx5dv_devx_query_eqn(ctx, cpus, eqn);
+#else
+       (void)ctx;
+       (void)cpus;
+       (void)eqn;
+       return -ENOTSUP;
+#endif
+}
+
 alignas(RTE_CACHE_LINE_SIZE)
 const struct mlx5_glue *mlx5_glue = &(const struct mlx5_glue){
        .version = MLX5_GLUE_VERSION,
@@ -1148,4 +1162,5 @@ const struct mlx5_glue *mlx5_glue = &(const struct mlx5_glue){
        .devx_qp_query = mlx5_glue_devx_qp_query,
        .devx_port_query = mlx5_glue_devx_port_query,
        .dr_dump_domain = mlx5_glue_dr_dump_domain,
+       .devx_query_eqn = mlx5_glue_devx_query_eqn,
 };
index 33afaf4..fe51f97 100644 (file)
@@ -259,6 +259,8 @@ struct mlx5_glue {
                               uint32_t port_num,
                               struct mlx5dv_devx_port *mlx5_devx_port);
        int (*dr_dump_domain)(FILE *file, void *domain);
+       int (*devx_query_eqn)(struct ibv_context *context, uint32_t cpus,
+                             uint32_t *eqn);
 };
 
 const struct mlx5_glue *mlx5_glue;