Re: [dpdk-dev] [PATCH] net/tap: fix some flow collision

2017-05-26 Thread Ferruh Yigit
On 5/22/2017 12:19 PM, Pascal Mazon wrote: > The following two flow rules (testpmd syntax) should not collide: > flow create 0 priority 1 ingress pattern eth / ipv4 / end actions drop / end > flow create 0 priority 1 ingress pattern eth / ipv6 / end actions drop / end > > But the eth_type in the a

[dpdk-dev] [PATCH] net/tap: fix some flow collision

2017-05-22 Thread Pascal Mazon
The following two flow rules (testpmd syntax) should not collide: flow create 0 priority 1 ingress pattern eth / ipv4 / end actions drop / end flow create 0 priority 1 ingress pattern eth / ipv6 / end actions drop / end But the eth_type in the associated TC rule was set to either "ip" or "ipv6". F