[dpdk-dev] [PATCH v4 0/5] re-implement legacy filter functions by private API

Chenxu Di chenxux.di at intel.com
Wed Jul 8 03:18:36 CEST 2020


The legacy filter API will be superseded by rte_flow.
There are also several small features which can not be
implemented in rte_flow.
This patch re-implemented features get_fdir_info, get_fdir_stat and
set_gre_key_len as private API.
This patch also enable RSS action in flow query.

v4:
-updated code in testpmd
v3:
-updated the init of ret in testpmd
-updated the log style
v2:
-fixed the __rte_experimental flag

Chenxu Di (5):
  net/i40e: add private APIs
  net/ixgbe: add private APIs
  app/testpmd: re-implement commands by using private API
  net/i40e: enable flow query RSS
  app/testpmd: support query RSS config in flow query

 app/test-pmd/cmdline.c                      |   4 +
 app/test-pmd/config.c                       | 112 ++++++++++++++++++--
 doc/guides/rel_notes/release_20_08.rst      |  14 +++
 drivers/net/i40e/i40e_ethdev.c              |   2 +-
 drivers/net/i40e/i40e_ethdev.h              |   5 +
 drivers/net/i40e/i40e_fdir.c                |   4 +-
 drivers/net/i40e/i40e_flow.c                |  49 +++++++++
 drivers/net/i40e/rte_pmd_i40e.c             |  51 +++++++++
 drivers/net/i40e/rte_pmd_i40e.h             |  49 +++++++++
 drivers/net/i40e/rte_pmd_i40e_version.map   |   3 +
 drivers/net/ixgbe/ixgbe_ethdev.h            |   4 +
 drivers/net/ixgbe/ixgbe_fdir.c              |   8 +-
 drivers/net/ixgbe/rte_pmd_ixgbe.c           |  33 ++++++
 drivers/net/ixgbe/rte_pmd_ixgbe.h           |  33 ++++++
 drivers/net/ixgbe/rte_pmd_ixgbe_version.map |   2 +
 15 files changed, 353 insertions(+), 20 deletions(-)

-- 
2.17.1



More information about the dev mailing list