net/mlx5: Add support in query QP, CQ and MKEY segments
authorMaor Gottlieb <maorg@mellanox.com>
Wed, 8 Apr 2020 09:36:20 +0000 (12:36 +0300)
committerLeon Romanovsky <leonro@mellanox.com>
Tue, 23 Jun 2020 14:26:10 +0000 (17:26 +0300)
Introduce new resource dump segments - PRM_QUERY_QP,
PRM_QUERY_CQ and PRM_QUERY_MKEY. These segments contains the resource
dump in PRM query format.

Signed-off-by: Maor Gottlieb <maorg@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/diag/rsc_dump.c
include/linux/mlx5/rsc_dump.h

index 10218c2..4924a56 100644 (file)
@@ -23,6 +23,9 @@ static const char *const mlx5_rsc_sgmt_name[] = {
        MLX5_SGMT_STR_ASSING(SX_SLICE_ALL),
        MLX5_SGMT_STR_ASSING(RDB),
        MLX5_SGMT_STR_ASSING(RX_SLICE_ALL),
+       MLX5_SGMT_STR_ASSING(PRM_QUERY_QP),
+       MLX5_SGMT_STR_ASSING(PRM_QUERY_CQ),
+       MLX5_SGMT_STR_ASSING(PRM_QUERY_MKEY),
 };
 
 struct mlx5_rsc_dump {
index 87415fa..d11c0b2 100644 (file)
@@ -23,6 +23,9 @@ enum mlx5_sgmt_type {
        MLX5_SGMT_TYPE_SX_SLICE_ALL,
        MLX5_SGMT_TYPE_RDB,
        MLX5_SGMT_TYPE_RX_SLICE_ALL,
+       MLX5_SGMT_TYPE_PRM_QUERY_QP,
+       MLX5_SGMT_TYPE_PRM_QUERY_CQ,
+       MLX5_SGMT_TYPE_PRM_QUERY_MKEY,
        MLX5_SGMT_TYPE_MENU,
        MLX5_SGMT_TYPE_TERMINATE,