]> git.dujemihanovic.xyz Git - linux.git/commitdiff
net/mlx5: HWS, fixed double-free in error flow of creating SQ
authorYevgeny Kliteynik <kliteyn@nvidia.com>
Thu, 19 Sep 2024 09:17:59 +0000 (12:17 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Wed, 25 Sep 2024 20:15:45 +0000 (13:15 -0700)
When SQ creation fails, call the appropriate mlx5_core destroy function.

This fixes the following smatch warnings:
  divers/net/ethernet/mellanox/mlx5/core/steering/hws/mlx5hws_send.c:739
    hws_send_ring_open_sq() warn: 'sq->dep_wqe' double freed
    hws_send_ring_open_sq() warn: 'sq->wq_ctrl.buf.frags' double freed
    hws_send_ring_open_sq() warn: 'sq->wr_priv' double freed

Fixes: 2ca62599aa0b ("net/mlx5: HWS, added send engine and context handling")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/all/e4ebc227-4b25-49bf-9e4c-14b7ea5c6a07@stanley.mountain/
Signed-off-by: Yevgeny Kliteynik <kliteyn@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/steering/hws/mlx5hws_send.c

index a1adbb48735c10a2a9cf35a893068a348a632bee..0c7989184c3071391b668d4f9674dd0512716d09 100644 (file)
@@ -653,6 +653,12 @@ static int hws_send_ring_create_sq(struct mlx5_core_dev *mdev, u32 pdn,
        return err;
 }
 
+static void hws_send_ring_destroy_sq(struct mlx5_core_dev *mdev,
+                                    struct mlx5hws_send_ring_sq *sq)
+{
+       mlx5_core_destroy_sq(mdev, sq->sqn);
+}
+
 static int hws_send_ring_set_sq_rdy(struct mlx5_core_dev *mdev, u32 sqn)
 {
        void *in, *sqc;
@@ -696,7 +702,7 @@ static int hws_send_ring_create_sq_rdy(struct mlx5_core_dev *mdev, u32 pdn,
 
        err = hws_send_ring_set_sq_rdy(mdev, sq->sqn);
        if (err)
-               hws_send_ring_close_sq(sq);
+               hws_send_ring_destroy_sq(mdev, sq);
 
        return err;
 }