net/mlx5: Take TIR destruction out of the TIR list lock
authorMaxim Mikityanskiy <maximmi@nvidia.com>
Fri, 23 Apr 2021 16:14:37 +0000 (19:14 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Mon, 26 Jul 2021 16:50:37 +0000 (09:50 -0700)
res->td.list_lock protects the list of TIRs. There is no point to call
mlx5_core_destroy_tir() and invoke a firmware command under this lock.
This commit moves this call outside of the lock and puts it after
deleting the TIR from the list to ensure that TIRs are always alive
while in the list.

Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en_common.c

index 8c166ee..f3bdd06 100644 (file)
@@ -58,9 +58,10 @@ void mlx5e_destroy_tir(struct mlx5_core_dev *mdev,
        struct mlx5e_hw_objs *res = &mdev->mlx5e_res.hw_objs;
 
        mutex_lock(&res->td.list_lock);
-       mlx5_core_destroy_tir(mdev, tir->tirn);
        list_del(&tir->list);
        mutex_unlock(&res->td.list_lock);
+
+       mlx5_core_destroy_tir(mdev, tir->tirn);
 }
 
 void mlx5e_mkey_set_relaxed_ordering(struct mlx5_core_dev *mdev, void *mkc)