mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
net/mlx4_en: Fix resource leak in error flow
Wrong condition was used when calling iounmap. Signed-off-by: Dotan Barak <[email protected]> Signed-off-by: Amir Vadai <[email protected]> Signed-off-by: David S. Miller <[email protected]>
This commit is contained in:
committed by
David S. Miller
parent
2b9651d72d
commit
8850494a33
@@ -310,7 +310,7 @@ static void *mlx4_en_add(struct mlx4_dev *dev)
|
||||
err_mr:
|
||||
(void) mlx4_mr_free(dev, &mdev->mr);
|
||||
err_map:
|
||||
if (!mdev->uar_map)
|
||||
if (mdev->uar_map)
|
||||
iounmap(mdev->uar_map);
|
||||
err_uar:
|
||||
mlx4_uar_free(dev, &mdev->priv_uar);
|
||||
|
||||
Reference in New Issue
Block a user