Skip to content

Commit 72da2e9

Browse files
moshelazerdavem330
authored andcommitted
net/mlx4_core: Change the default value of enable_qos
Change the default status of quality of service back to disabled, as it hurts performance in some cases. Fixes: 38438f7 ("net/mlx4: Set enhanced QoS support by default when ...") Signed-off-by: Moshe Lazer <[email protected]> Signed-off-by: Tariq Toukan <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 33a1f8b commit 72da2e9

File tree

1 file changed

+2
-2
lines changed
  • drivers/net/ethernet/mellanox/mlx4

1 file changed

+2
-2
lines changed

drivers/net/ethernet/mellanox/mlx4/fw.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ enum {
4949
extern void __buggy_use_of_MLX4_GET(void);
5050
extern void __buggy_use_of_MLX4_PUT(void);
5151

52-
static bool enable_qos = true;
52+
static bool enable_qos;
5353
module_param(enable_qos, bool, 0444);
54-
MODULE_PARM_DESC(enable_qos, "Enable Enhanced QoS support (default: on)");
54+
MODULE_PARM_DESC(enable_qos, "Enable Enhanced QoS support (default: off)");
5555

5656
#define MLX4_GET(dest, source, offset) \
5757
do { \

0 commit comments

Comments
 (0)