From: Matan Azrad Date: Tue, 12 Nov 2019 22:00:10 +0000 (+0000) Subject: net/mlx5: revert default rules amount optimization X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=7f1517012b2b55e77ef9b6b6e705b20f1841b971;p=dpdk.git net/mlx5: revert default rules amount optimization This reverts commit 304ffe576f239e5405228c0feec04b6138d525b7. It tried to optimize the amount of the default flow rules and created it only once on top of the PF representor. For each FDB rule, the default port ID to match on is like of the port that triggers the flow. Hence, the single default rule will not be matched on the VF traffic. As a result, all the traffic of the VFs will not match to the jump flow in the root table and will always be forwarded to the representor port. Revert the commit. Fixes: 304ffe576f23 ("net/mlx5: fix condition to create default rule") Signed-off-by: Matan Azrad Acked-by: Viacheslav Ovsiienko --- diff --git a/drivers/net/mlx5/mlx5_trigger.c b/drivers/net/mlx5/mlx5_trigger.c index f4dc047c4f..cafab25c67 100644 --- a/drivers/net/mlx5/mlx5_trigger.c +++ b/drivers/net/mlx5/mlx5_trigger.c @@ -420,7 +420,7 @@ mlx5_traffic_enable(struct rte_eth_dev *dev) } mlx5_txq_release(dev, i); } - if (priv->config.dv_esw_en && !priv->config.vf && !priv->representor) + if (priv->config.dv_esw_en && !priv->config.vf) if (!mlx5_flow_create_esw_table_zero_flow(dev)) goto error; if (priv->isolated)