aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/mlx5/qp.c
diff options
context:
space:
mode:
authorLeon Romanovsky <leonro@nvidia.com>2022-01-23 20:00:48 +0200
committerJason Gunthorpe <jgg@nvidia.com>2022-01-28 13:01:54 -0400
commit84aa6c3963b702002b57ba5bdb9110960550a2ec (patch)
tree831b1727cec371e2501be56b2463b0a1aacf22a8 /drivers/infiniband/hw/mlx5/qp.c
parentRDMA/core: Set MR type in ib_reg_user_mr (diff)
downloadlinux-dev-84aa6c3963b702002b57ba5bdb9110960550a2ec.tar.xz
linux-dev-84aa6c3963b702002b57ba5bdb9110960550a2ec.zip
RDMA/mlx5: Delete get_num_static_uars function
There is no need to keep get_num_static_uars in the headers file as it is not shared and used only once. Link: https://lore.kernel.org/r/11d78568c3c6ba588ee8465e0d10d96145fc825c.1642960830.git.leonro@nvidia.com Signed-off-by: Leon Romanovsky <leonro@nvidia.com> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband/hw/mlx5/qp.c')
-rw-r--r--drivers/infiniband/hw/mlx5/qp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c
index 29475cf8c7c3..15ef663dfef8 100644
--- a/drivers/infiniband/hw/mlx5/qp.c
+++ b/drivers/infiniband/hw/mlx5/qp.c
@@ -615,7 +615,8 @@ enum {
static int max_bfregs(struct mlx5_ib_dev *dev, struct mlx5_bfreg_info *bfregi)
{
- return get_num_static_uars(dev, bfregi) * MLX5_NON_FP_BFREGS_PER_UAR;
+ return get_uars_per_sys_page(dev, bfregi->lib_uar_4k) *
+ bfregi->num_static_sys_pages * MLX5_NON_FP_BFREGS_PER_UAR;
}
static int num_med_bfreg(struct mlx5_ib_dev *dev,