-
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.
Merge branch 'mlx5-next' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/mellanox/linux * 'mlx5-next' of git://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux: net/mlx5: kTLS, Improve TLS params layout structures net/mlx5: Avoid eswitch header inclusion in fs core layer net/mlx5: Avoid RDMA file inclusion in core driver net/mlx5: Add support in query QP, CQ and MKEY segments net/mlx5: Export resource dump interface Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
- Loading branch information
Showing
11 changed files
with
81 additions
and
46 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
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
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
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,51 @@ | ||
/* 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_PRM_QUERY_QP, | ||
MLX5_SGMT_TYPE_PRM_QUERY_CQ, | ||
MLX5_SGMT_TYPE_PRM_QUERY_MKEY, | ||
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 */ |