]> www.infradead.org Git - users/jedix/linux-maple.git/commit
IB/mlx5: Allocate resources just before first QP/SRQ is created
authorJianbo Liu <jianbol@nvidia.com>
Mon, 3 Jun 2024 10:26:39 +0000 (13:26 +0300)
committerLeon Romanovsky <leon@kernel.org>
Sun, 16 Jun 2024 15:37:57 +0000 (18:37 +0300)
commit5895e70f2e6e8dc67b551ca554d6fcde0a7f0467
treef529b4c640003b6cde3bac73eb66d559c6680bab
parent638420115cc4ad6c3a2683bf46a052b505abb202
IB/mlx5: Allocate resources just before first QP/SRQ is created

Previously, all IB dev resources are initialized on driver load. As
they are not always used, move the initialization to the time when
they are needed.

To be more specific, move PD (p0) and CQ (c0) initialization to the
time when the first SRQ is created. and move SRQs(s0 and s1)
initialization to the time first QP is created. To avoid concurrent
creations, two new mutexes are also added.

Signed-off-by: Jianbo Liu <jianbol@nvidia.com>
Link: https://lore.kernel.org/r/98c3e53a8cc0bdfeb6dec6e5bb8b037d78ab00d8.1717409369.git.leon@kernel.org
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/hw/mlx5/main.c
drivers/infiniband/hw/mlx5/mlx5_ib.h
drivers/infiniband/hw/mlx5/qp.c
drivers/infiniband/hw/mlx5/srq.c