net/mlx5: Stay in polling mode when command EQ destroy fails
authorMoshe Shemesh <moshe@mellanox.com>
Mon, 4 Dec 2017 13:23:51 +0000 (15:23 +0200)
committerSaeed Mahameed <saeedm@mellanox.com>
Tue, 19 Dec 2017 21:24:05 +0000 (23:24 +0200)
During unload, on mlx5_stop_eqs we move command interface from events
mode to polling mode, but if command interface EQ destroy fail we move
back to events mode.
That's wrong since even if we fail to destroy command interface EQ, we
do release its irq, so no interrupts will be received.

Fixes: e126ba97dba9 ("mlx5: Add driver for Mellanox Connect-IB adapters")
Signed-off-by: Moshe Shemesh <moshe@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/eq.c

index ab4d1465b7e41e563a44a52ff155e1ca911767c9..e7e7cef2bde402be23b191873a5790ed23fd7843 100644 (file)
@@ -801,11 +801,9 @@ void mlx5_stop_eqs(struct mlx5_core_dev *dev)
        mlx5_cmd_use_polling(dev);
 
        err = mlx5_destroy_unmap_eq(dev, &table->cmd_eq);
-       if (err) {
+       if (err)
                mlx5_core_err(dev, "failed to destroy command eq, err(%d)\n",
                              err);
-               mlx5_cmd_use_events(dev);
-       }
 }
 
 int mlx5_core_eq_query(struct mlx5_core_dev *dev, struct mlx5_eq *eq,