> -----Original Message-----
> From: dev [mailto:[email protected]] On Behalf Of Nelio Laranjeiro
> Sent: Monday, July 23, 2018 10:19 AM
> To: [email protected]; Yongseok Koh <[email protected]>; Shahaf Shuler
> <[email protected]>
> Cc: [email protected]
> Subject: [dpdk-dev] [PATCH] net/mlx5: fix tci mask filter
>
> In mlx5_traffic_enable() the TCI mask for the VLAN is wrong causing the
> sub flow engine to reject the rule.
>
> Fixes: 272733b5ebfd ("net/mlx5: use flow to enable unicast traffic")
> Cc: [email protected]
>
> Signed-off-by: Nelio Laranjeiro <[email protected]>
> ---
> drivers/net/mlx5/mlx5_trigger.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/mlx5/mlx5_trigger.c
> b/drivers/net/mlx5/mlx5_trigger.c
> index 4d2078bbd..d02a626ae 100644
> --- a/drivers/net/mlx5/mlx5_trigger.c
> +++ b/drivers/net/mlx5/mlx5_trigger.c
> @@ -300,9 +300,8 @@ mlx5_traffic_enable(struct rte_eth_dev *dev)
> struct rte_flow_item_vlan vlan_spec = {
> .tci = rte_cpu_to_be_16(vlan),
> };
> - struct rte_flow_item_vlan vlan_mask = {
> - .tci = 0xffff,
> - };
> + struct rte_flow_item_vlan vlan_mask =
> + rte_flow_item_vlan_mask;
>
> ret = mlx5_ctrl_flow_vlan(dev, &bcast, &bcast,
> &vlan_spec, &vlan_mask);
> @@ -339,9 +338,8 @@ mlx5_traffic_enable(struct rte_eth_dev *dev)
> struct rte_flow_item_vlan vlan_spec = {
> .tci = rte_cpu_to_be_16(vlan),
> };
> - struct rte_flow_item_vlan vlan_mask = {
> - .tci = 0xffff,
> - };
> + struct rte_flow_item_vlan vlan_mask =
> + rte_flow_item_vlan_mask;
>
> ret = mlx5_ctrl_flow_vlan(dev, &unicast,
> &unicast_mask,
> --
Acked-by: Ori Kam <[email protected]>
Thanks,
> 2.18.0