Commit 623d1543 authored by Jason Gunthorpe's avatar Jason Gunthorpe
Browse files

IB/mlx5: Fix wrong error unwind



The destroy_workqueue on error unwind is missing, and the code jumps to
the wrong exit label.

Fixes: 813e90b1 ("IB/mlx5: Add advise_mr() support")
Acked-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent e7c4d8e6
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -5775,12 +5775,14 @@ int mlx5_ib_stage_init_init(struct mlx5_ib_dev *dev)
	dev->advise_mr_wq = alloc_ordered_workqueue("mlx5_ib_advise_mr_wq", 0);
	if (!dev->advise_mr_wq) {
		err = -ENOMEM;
		goto err_free_port;
		goto err_mp;
	}

	err = init_srcu_struct(&dev->mr_srcu);
	if (err)
		goto err_free_port;
	if (err) {
		destroy_workqueue(dev->advise_mr_wq);
		goto err_mp;
	}
#endif

	return 0;