mbox series

[rdma-next,0/3] Delay mlx5_ib internal resources allocations

Message ID cover.1717409369.git.leon@kernel.org (mailing list archive)
Headers show
Series Delay mlx5_ib internal resources allocations | expand

Message

Leon Romanovsky June 3, 2024, 10:26 a.m. UTC
From: Leon Romanovsky <leonro@nvidia.com>

Internal mlx5_ib resources are created during mlx5_ib module load. This
behavior is not optimal because it consumes resources that are not
needed when SFs are created. This patch series delays the creation of
mlx5_ib internal resources to the stage when they actually used.

Thanks

Jianbo Liu (3):
  net/mlx5: Reimplement write combining test
  IB/mlx5: Create UMR QP just before first reg_mr occurs
  IB/mlx5: Allocate resources just before first QP/SRQ is created

 drivers/infiniband/hw/mlx5/main.c             | 171 ++++---
 drivers/infiniband/hw/mlx5/mem.c              | 198 --------
 drivers/infiniband/hw/mlx5/mlx5_ib.h          |   9 +-
 drivers/infiniband/hw/mlx5/mr.c               |   9 +
 drivers/infiniband/hw/mlx5/qp.c               |  20 +-
 drivers/infiniband/hw/mlx5/srq.c              |   4 +
 drivers/infiniband/hw/mlx5/umr.c              |  55 ++-
 drivers/infiniband/hw/mlx5/umr.h              |   3 +
 .../net/ethernet/mellanox/mlx5/core/Makefile  |   2 +-
 .../net/ethernet/mellanox/mlx5/core/main.c    |   2 +
 drivers/net/ethernet/mellanox/mlx5/core/wc.c  | 434 ++++++++++++++++++
 include/linux/mlx5/driver.h                   |  11 +
 12 files changed, 627 insertions(+), 291 deletions(-)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/wc.c

Comments

Leon Romanovsky June 16, 2024, 3:38 p.m. UTC | #1
On Mon, 03 Jun 2024 13:26:36 +0300, Leon Romanovsky wrote:
> Internal mlx5_ib resources are created during mlx5_ib module load. This
> behavior is not optimal because it consumes resources that are not
> needed when SFs are created. This patch series delays the creation of
> mlx5_ib internal resources to the stage when they actually used.
> 
> Thanks
> 
> [...]

Applied, thanks!

[2/3] IB/mlx5: Create UMR QP just before first reg_mr occurs
      https://git.kernel.org/rdma/rdma/c/638420115cc4ad
[3/3] IB/mlx5: Allocate resources just before first QP/SRQ is created
      https://git.kernel.org/rdma/rdma/c/5895e70f2e6e8d

Best regards,