Commit f8ebecf2 authored by Maxim Mikityanskiy's avatar Maxim Mikityanskiy Committed by Saeed Mahameed

net/mlx5e: Use #define for the WQE wait timeout constant

Create a #define for the timeout of mlx5e_wait_for_min_rx_wqes to
clarify the meaning of a magic number.
Signed-off-by: default avatarMaxim Mikityanskiy <maximmi@mellanox.com>
Reviewed-by: default avatarTariq Toukan <tariqt@mellanox.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
parent 03ceda6f
...@@ -2256,14 +2256,18 @@ static void mlx5e_activate_channels(struct mlx5e_channels *chs) ...@@ -2256,14 +2256,18 @@ static void mlx5e_activate_channels(struct mlx5e_channels *chs)
mlx5e_activate_channel(chs->c[i]); mlx5e_activate_channel(chs->c[i]);
} }
#define MLX5E_RQ_WQES_TIMEOUT 20000 /* msecs */
static int mlx5e_wait_channels_min_rx_wqes(struct mlx5e_channels *chs) static int mlx5e_wait_channels_min_rx_wqes(struct mlx5e_channels *chs)
{ {
int err = 0; int err = 0;
int i; int i;
for (i = 0; i < chs->num; i++) for (i = 0; i < chs->num; i++) {
err |= mlx5e_wait_for_min_rx_wqes(&chs->c[i]->rq, int timeout = err ? 0 : MLX5E_RQ_WQES_TIMEOUT;
err ? 0 : 20000);
err |= mlx5e_wait_for_min_rx_wqes(&chs->c[i]->rq, timeout);
}
return err ? -ETIMEDOUT : 0; return err ? -ETIMEDOUT : 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment