mirror of
https://github.com/torvalds/linux.git
synced 2026-07-29 10:41:49 +02:00
net/mlx5: E-Switch, Remove redundant warning when QoS enable failed
esw_vport_enable_qos can return error in cases below: 1. QoS is already enabled. Warnning is useless in this case. 2. Create scheduling element cmd failed. There is already a warning. Remove the redundant warnning if esw_vport_enable_qos returns err. Signed-off-by: Bodong Wang <bodong@mellanox.com> Reviewed-by: Parav Pandit <parav@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
14c844cbf3
commit
a9814d7fde
|
|
@ -1801,9 +1801,7 @@ static int esw_enable_vport(struct mlx5_eswitch *esw, struct mlx5_vport *vport,
|
|||
goto done;
|
||||
|
||||
/* Attach vport to the eswitch rate limiter */
|
||||
if (esw_vport_enable_qos(esw, vport, vport->info.max_rate,
|
||||
vport->qos.bw_share))
|
||||
esw_warn(esw->dev, "Failed to attach vport %d to eswitch rate limiter", vport_num);
|
||||
esw_vport_enable_qos(esw, vport, vport->info.max_rate, vport->qos.bw_share);
|
||||
|
||||
/* Sync with current vport context */
|
||||
vport->enabled_events = enabled_events;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user