Re: [dpdk-dev] [PATCH] net/mlx5: fix VLAN inner type matching on DR/DV

2019-08-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: dev On Behalf Of Xiaoyu Min > Sent: Friday, August 2, 2019 12:18 PM > To: Shahaf Shuler ; Yongseok Koh > ; Slava Ovsiienko > Cc: dev@dpdk.org; Ori Kam > Subject: [dpdk-dev] [PATCH] net/mlx5: fix VLAN inner type matchin

[dpdk-dev] [PATCH] net/mlx5: fix VLAN inner type matching on DR/DV

2019-08-02 Thread Xiaoyu Min
The rte_flow_item_vlan has the inner_type, which is missing on DR/DV flow engine. By adding this support, the example testpmd commands could be: - matching all vlan traffic with id 2: testpmd> flow create 0 ingress pattern eth / vlan vid is 2 / end actions queue index 2 / end - mat