net/mlx5e: Fix error path of updating netdev queues
authorAya Levin <ayal@nvidia.com>
Wed, 21 Apr 2021 11:26:31 +0000 (14:26 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 3 Jun 2021 07:00:36 +0000 (09:00 +0200)
commitbbd00c4d50db3558c01b008a98f994063d5c9c4e
treed9ff1f23c1c44ea8d9d2ce804a4c66596af9e41b
parent02a8da446b498f2fa4adf61209c1c666d825b7aa
net/mlx5e: Fix error path of updating netdev queues

commit 5e7923acbd86d0ff29269688d8a9c47ad091dd46 upstream.

Avoid division by zero in the error flow. In the driver TC number can be
either 1 or 8. When TC count is set to 1, driver zero netdev->num_tc.
Hence, need to convert it back from 0 to 1 in the error flow.

Fixes: fa3748775b92 ("net/mlx5e: Handle errors from netif_set_real_num_{tx,rx}_queues")
Signed-off-by: Aya Levin <ayal@nvidia.com>
Reviewed-by: Maxim Mikityanskiy <maximmi@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/mellanox/mlx5/core/en_main.c