LRO requires striding RQ and checks that it's enabled at two places:
mlx5e_fix_features and set_feature_lro. This commit keeps only one check
at mlx5e_fix_features and removes the duplicating one in
set_feature_lro.
Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
        mutex_lock(&priv->state_lock);
 
        cur_params = &priv->channels.params;
-       if (enable && !MLX5E_GET_PFLAG(cur_params, MLX5E_PFLAG_RX_STRIDING_RQ)) {
-               netdev_warn(netdev, "can't set LRO with legacy RQ\n");
-               err = -EINVAL;
-               goto out;
-       }
-
        new_params = *cur_params;
 
        if (enable)