On 8/24/21 5:25 PM, Eli Britstein wrote: > > On 8/24/2021 6:08 PM, Finn, Emma wrote: >> External email: Use caution opening links or attachments >> >> >> -----Original Message----- >> From: Eli Britstein <el...@nvidia.com> >> Sent: Monday 16 August 2021 14:55 >> To: d...@openvswitch.org; Ilya Maximets <i.maxim...@ovn.org> >> Cc: Finn, Emma <emma.f...@intel.com>; Stokes, Ian <ian.sto...@intel.com>; >> Sriharsha Basavapatna <sriharsha.basavapa...@broadcom.com>; Gaetan Rivet >> <gaet...@nvidia.com>; Majd Dibbiny <m...@nvidia.com>; Eli Britstein >> <el...@nvidia.com>; Salem Sol <sal...@nvidia.com> >> Subject: [PATCH V3 1/2] netdev-offload-dpdk: Use has_vlan match attribute >> >> DPDK 20.11 introduced an ability to specify existance/non-existance of VLAN >> tag by [1]. >> Use this attribute. >> >> [1]: 09315fc83861 ("ethdev: add VLAN attributes to ethernet and VLAN items") >> >> Signed-off-by: Eli Britstein <el...@nvidia.com> >> Reviewed-by: Salem Sol <sal...@nvidia.com> >> >> Hi Eli, >> >> I tested this but currently we don't have support in the i40e pmd for the >> has_vlan match attribute and with these patches it is breaking offload for >> VLAN packets on Intel devices. > > Hi Emma, > > Thanks for testing. > > Is adding such support in your plans? > > How do you suggest to proceed? It is needed in order to fix OVS bug. > > Thanks, > > Eli
The "Table 1.2 rte_flow items availability in networking drivers" here: https://doc.dpdk.org/guides/nics/overview.html says that both ixgbe and i40e has a full support for 'vlan' and 'eth' items. Is it a bug? Should it be 'partial' instead? In general, this sounds like a big limitation of rte_flow API. I mean the fact that there is no way to get what is implemented by a particular driver and what is not implemented in runtime. Someone should, probably, work on adding this kind of API to DPDK. Otherwise, we will stuck with inability to use certain actions/matches unless all the drivers supports them (which is also hard to check taking documentation issues into account). If I missed it and the API actually exists, we should definitely start using it. CC: dpdk-dev and rte_flow maintainers. Thoughts? Best regards, Ilya Maximets.