提交 bef772eb 编写于 作者: A Aviad Yehezkel 提交者: David S. Miller

net/mlx4_core: Fixing error flow in case of QUERY_FW failure

The order of operations was wrong on the teardown flow.
Signed-off-by: NAviad Yehezkel <aviadye@mellanox.com>
Signed-off-by: NYevgeny Petrilin <yevgenyp@mellanox.co.il>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 60d31c14
...@@ -1234,13 +1234,13 @@ static int mlx4_init_hca(struct mlx4_dev *dev) ...@@ -1234,13 +1234,13 @@ static int mlx4_init_hca(struct mlx4_dev *dev)
mlx4_info(dev, "non-primary physical function, skipping.\n"); mlx4_info(dev, "non-primary physical function, skipping.\n");
else else
mlx4_err(dev, "QUERY_FW command failed, aborting.\n"); mlx4_err(dev, "QUERY_FW command failed, aborting.\n");
goto unmap_bf; return err;
} }
err = mlx4_load_fw(dev); err = mlx4_load_fw(dev);
if (err) { if (err) {
mlx4_err(dev, "Failed to start FW, aborting.\n"); mlx4_err(dev, "Failed to start FW, aborting.\n");
goto unmap_bf; return err;
} }
mlx4_cfg.log_pg_sz_m = 1; mlx4_cfg.log_pg_sz_m = 1;
...@@ -1304,7 +1304,7 @@ static int mlx4_init_hca(struct mlx4_dev *dev) ...@@ -1304,7 +1304,7 @@ static int mlx4_init_hca(struct mlx4_dev *dev)
err = mlx4_init_slave(dev); err = mlx4_init_slave(dev);
if (err) { if (err) {
mlx4_err(dev, "Failed to initialize slave\n"); mlx4_err(dev, "Failed to initialize slave\n");
goto unmap_bf; return err;
} }
err = mlx4_slave_cap(dev); err = mlx4_slave_cap(dev);
...@@ -1324,7 +1324,7 @@ static int mlx4_init_hca(struct mlx4_dev *dev) ...@@ -1324,7 +1324,7 @@ static int mlx4_init_hca(struct mlx4_dev *dev)
err = mlx4_QUERY_ADAPTER(dev, &adapter); err = mlx4_QUERY_ADAPTER(dev, &adapter);
if (err) { if (err) {
mlx4_err(dev, "QUERY_ADAPTER command failed, aborting.\n"); mlx4_err(dev, "QUERY_ADAPTER command failed, aborting.\n");
goto err_close; goto unmap_bf;
} }
priv->eq_table.inta_pin = adapter.inta_pin; priv->eq_table.inta_pin = adapter.inta_pin;
...@@ -1332,6 +1332,9 @@ static int mlx4_init_hca(struct mlx4_dev *dev) ...@@ -1332,6 +1332,9 @@ static int mlx4_init_hca(struct mlx4_dev *dev)
return 0; return 0;
unmap_bf:
unmap_bf_area(dev);
err_close: err_close:
mlx4_close_hca(dev); mlx4_close_hca(dev);
...@@ -1344,8 +1347,6 @@ static int mlx4_init_hca(struct mlx4_dev *dev) ...@@ -1344,8 +1347,6 @@ static int mlx4_init_hca(struct mlx4_dev *dev)
mlx4_UNMAP_FA(dev); mlx4_UNMAP_FA(dev);
mlx4_free_icm(dev, priv->fw.fw_icm, 0); mlx4_free_icm(dev, priv->fw.fw_icm, 0);
} }
unmap_bf:
unmap_bf_area(dev);
return err; return err;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册