|
@@ -1041,7 +1041,7 @@ static int mlx5e_create_main_flow_table(struct mlx5e_priv *priv)
|
|
|
int err;
|
|
|
|
|
|
ft->num_groups = 0;
|
|
|
- ft->t = mlx5_create_flow_table(priv->fts.ns, 0, MLX5E_MAIN_TABLE_SIZE);
|
|
|
+ ft->t = mlx5_create_flow_table(priv->fts.ns, 1, MLX5E_MAIN_TABLE_SIZE);
|
|
|
|
|
|
if (IS_ERR(ft->t)) {
|
|
|
err = PTR_ERR(ft->t);
|
|
@@ -1150,7 +1150,7 @@ static int mlx5e_create_vlan_flow_table(struct mlx5e_priv *priv)
|
|
|
int err;
|
|
|
|
|
|
ft->num_groups = 0;
|
|
|
- ft->t = mlx5_create_flow_table(priv->fts.ns, 0, MLX5E_VLAN_TABLE_SIZE);
|
|
|
+ ft->t = mlx5_create_flow_table(priv->fts.ns, 1, MLX5E_VLAN_TABLE_SIZE);
|
|
|
|
|
|
if (IS_ERR(ft->t)) {
|
|
|
err = PTR_ERR(ft->t);
|