提交 035b1032 编写于 作者: J Jack Morgenstein 提交者: Roland Dreier

IB/mlx4: Fix mlx4_ib_add() error flow

We need to use a different loop index for mlx4_counter_alloc() and for
device_create_file() iterations: the mlx4_counter_alloc() loop index
is used in the error flow to free counters.

If the same loop index is used for device_create_file() and, say, the
device_create_file() loop fails on the first iteration, the allocated
counters will not be freed.
Signed-off-by: NJack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: NRoland Dreier <roland@purestorage.com>
上级 e605b743
...@@ -1160,7 +1160,7 @@ static void *mlx4_ib_add(struct mlx4_dev *dev) ...@@ -1160,7 +1160,7 @@ static void *mlx4_ib_add(struct mlx4_dev *dev)
{ {
struct mlx4_ib_dev *ibdev; struct mlx4_ib_dev *ibdev;
int num_ports = 0; int num_ports = 0;
int i; int i, j;
int err; int err;
struct mlx4_ib_iboe *iboe; struct mlx4_ib_iboe *iboe;
...@@ -1323,9 +1323,9 @@ static void *mlx4_ib_add(struct mlx4_dev *dev) ...@@ -1323,9 +1323,9 @@ static void *mlx4_ib_add(struct mlx4_dev *dev)
goto err_reg; goto err_reg;
} }
for (i = 0; i < ARRAY_SIZE(mlx4_class_attributes); ++i) { for (j = 0; j < ARRAY_SIZE(mlx4_class_attributes); ++j) {
if (device_create_file(&ibdev->ib_dev.dev, if (device_create_file(&ibdev->ib_dev.dev,
mlx4_class_attributes[i])) mlx4_class_attributes[j]))
goto err_notif; goto err_notif;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册