mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 00:47:56 -04:00
net/mlx5e: Make mlx5e_verify_rx_mpwqe_strides static
mlx5e_verify_rx_mpwqe_strides is only used in en/params.c, so it can be made static and removed from en/params.h. Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com> Reviewed-by: Tariq Toukan <tariqt@nvidia.com> Reviewed-by: Saeed Mahameed <saeedm@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
665f29de4c
commit
7e49abb1e3
@@ -90,8 +90,8 @@ bool mlx5e_rx_is_linear_skb(struct mlx5e_params *params,
|
||||
linear_frag_sz <= PAGE_SIZE;
|
||||
}
|
||||
|
||||
bool mlx5e_verify_rx_mpwqe_strides(struct mlx5_core_dev *mdev,
|
||||
u8 log_stride_sz, u8 log_num_strides)
|
||||
static bool mlx5e_verify_rx_mpwqe_strides(struct mlx5_core_dev *mdev,
|
||||
u8 log_stride_sz, u8 log_num_strides)
|
||||
{
|
||||
if (log_stride_sz + log_num_strides != MLX5_MPWRQ_LOG_WQE_SZ)
|
||||
return false;
|
||||
|
||||
@@ -97,8 +97,6 @@ void mlx5e_build_rq_params(struct mlx5_core_dev *mdev, struct mlx5e_params *para
|
||||
void mlx5e_set_rq_type(struct mlx5_core_dev *mdev, struct mlx5e_params *params);
|
||||
void mlx5e_init_rq_type_params(struct mlx5_core_dev *mdev, struct mlx5e_params *params);
|
||||
|
||||
bool mlx5e_verify_rx_mpwqe_strides(struct mlx5_core_dev *mdev,
|
||||
u8 log_stride_sz, u8 log_num_strides);
|
||||
u16 mlx5e_get_linear_rq_headroom(struct mlx5e_params *params,
|
||||
struct mlx5e_xsk_param *xsk);
|
||||
u32 mlx5e_rx_get_min_frag_sz(struct mlx5e_params *params,
|
||||
|
||||
Reference in New Issue
Block a user