-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net/mlx5: Export resource dump interface
Export some of the resource dump API. mlx5_ib driver will use it in downstream patches. Signed-off-by: Maor Gottlieb <maorg@mellanox.com> Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
- Loading branch information
Maor Gottlieb
authored and
Leon Romanovsky
committed
Jun 23, 2020
1 parent
4877846
commit d63cc24
Showing
3 changed files
with
52 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */ | ||
/* Copyright (c) 2020 Mellanox Technologies inc. */ | ||
|
||
#include <linux/mlx5/driver.h> | ||
|
||
#ifndef __MLX5_RSC_DUMP | ||
#define __MLX5_RSC_DUMP | ||
|
||
enum mlx5_sgmt_type { | ||
MLX5_SGMT_TYPE_HW_CQPC, | ||
MLX5_SGMT_TYPE_HW_SQPC, | ||
MLX5_SGMT_TYPE_HW_RQPC, | ||
MLX5_SGMT_TYPE_FULL_SRQC, | ||
MLX5_SGMT_TYPE_FULL_CQC, | ||
MLX5_SGMT_TYPE_FULL_EQC, | ||
MLX5_SGMT_TYPE_FULL_QPC, | ||
MLX5_SGMT_TYPE_SND_BUFF, | ||
MLX5_SGMT_TYPE_RCV_BUFF, | ||
MLX5_SGMT_TYPE_SRQ_BUFF, | ||
MLX5_SGMT_TYPE_CQ_BUFF, | ||
MLX5_SGMT_TYPE_EQ_BUFF, | ||
MLX5_SGMT_TYPE_SX_SLICE, | ||
MLX5_SGMT_TYPE_SX_SLICE_ALL, | ||
MLX5_SGMT_TYPE_RDB, | ||
MLX5_SGMT_TYPE_RX_SLICE_ALL, | ||
MLX5_SGMT_TYPE_MENU, | ||
MLX5_SGMT_TYPE_TERMINATE, | ||
|
||
MLX5_SGMT_TYPE_NUM, /* Keep last */ | ||
}; | ||
|
||
struct mlx5_rsc_key { | ||
enum mlx5_sgmt_type rsc; | ||
int index1; | ||
int index2; | ||
int num_of_obj1; | ||
int num_of_obj2; | ||
int size; | ||
}; | ||
|
||
struct mlx5_rsc_dump_cmd; | ||
|
||
struct mlx5_rsc_dump_cmd *mlx5_rsc_dump_cmd_create(struct mlx5_core_dev *dev, | ||
struct mlx5_rsc_key *key); | ||
void mlx5_rsc_dump_cmd_destroy(struct mlx5_rsc_dump_cmd *cmd); | ||
int mlx5_rsc_dump_next(struct mlx5_core_dev *dev, struct mlx5_rsc_dump_cmd *cmd, | ||
struct page *page, int *size); | ||
#endif /* __MLX5_RSC_DUMP */ |