mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
mlx4_core: Fix cleanup in __mlx4_init_one() error path
If mlx4_init_port_info() fails, cleanup the initialized ports only. Signed-off-by: Eli Cohen <eli@mellanox.co.il> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
2b94607742
commit
b4f77264cd
1 changed files with 1 additions and 1 deletions
|
@ -1174,7 +1174,7 @@ static int __mlx4_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_port:
|
err_port:
|
||||||
for (port = 1; port <= dev->caps.num_ports; port++)
|
for (--port; port >= 1; --port)
|
||||||
mlx4_cleanup_port_info(&priv->port[port]);
|
mlx4_cleanup_port_info(&priv->port[port]);
|
||||||
|
|
||||||
mlx4_cleanup_mcg_table(dev);
|
mlx4_cleanup_mcg_table(dev);
|
||||||
|
|
Loading…
Reference in a new issue