RDMA/mlx5: Fix unwind flow as part of mlx5_ib_stage_init_init

JIRA: https://issues.redhat.com/browse/RHEL-45365
Upstream-status: v6.10-rc5

commit 81497c148b7a2e4a4fbda93aee585439f7323e2e
Author: Yishai Hadas <yishaih@nvidia.com>
Date:   Tue May 28 15:52:55 2024 +0300

    RDMA/mlx5: Fix unwind flow as part of mlx5_ib_stage_init_init

    Fix unwind flow as part of mlx5_ib_stage_init_init to use the correct
    goto upon an error.

    Fixes: 758ce14aee82 ("RDMA/mlx5: Implement MACsec gid addition and deletion")
    Signed-off-by: Yishai Hadas <yishaih@nvidia.com>
    Reviewed-by: Patrisious Haddad <phaddad@nvidia.com>
    Link: https://lore.kernel.org/r/aa40615116eda14ec9eca21d52017d632ea89188.1716900410.git.leon@kernel.org
    Signed-off-by: Leon Romanovsky <leon@kernel.org>

Signed-off-by: Benjamin Poirier <bpoirier@redhat.com>
This commit is contained in:
Benjamin Poirier 2024-08-07 09:20:56 -04:00
parent 65b31fd85d
commit 26b0a2ac28
1 changed files with 2 additions and 2 deletions

View File

@ -3760,10 +3760,10 @@ static int mlx5_ib_stage_init_init(struct mlx5_ib_dev *dev)
spin_lock_init(&dev->dm.lock);
dev->dm.dev = mdev;
return 0;
err:
mlx5r_macsec_dealloc_gids(dev);
err_mp:
mlx5_ib_cleanup_multiport_master(dev);
err:
mlx5r_macsec_dealloc_gids(dev);
return err;
}