> -----Original Message----- > From: Andrew Rybchenko <[email protected]> > Sent: Sunday, October 18, 2020 22:09 > To: Lu, Wenzhuo <[email protected]>; Xing, Beilei <[email protected]>; > Iremonger, Bernard > <[email protected]>; Ray Kinsella <[email protected]>; Neil Horman > <[email protected]>; Ajit > Khaparde <[email protected]>; Somnath Kotur > <[email protected]>; John Daley > <[email protected]>; Hyong Youb Kim <[email protected]>; Guo, Jia > <[email protected]>; Wang, Haiyue > <[email protected]>; Matan Azrad <[email protected]>; Shahaf Shuler > <[email protected]>; > Viacheslav Ovsiienko <[email protected]>; Rasesh Mody > <[email protected]>; Shahed Shaikh > <[email protected]>; Andrew Rybchenko <[email protected]>; > Thomas Monjalon > <[email protected]>; Yigit, Ferruh <[email protected]> > Cc: [email protected] > Subject: [PATCH 12/14] ethdev: remove legacy FDIR filter type support > > RTE flow API should be used for filtering. > > Signed-off-by: Andrew Rybchenko <[email protected]> > --- > app/test-pmd/cmdline.c | 897 +++------------------------ > app/test-pmd/config.c | 15 +- > app/test-pmd/testpmd.h | 2 + > doc/guides/rel_notes/deprecation.rst | 4 +- > drivers/net/bnxt/bnxt_ethdev.c | 396 ------------ > drivers/net/enic/enic.h | 7 - > drivers/net/enic/enic_clsf.c | 168 ----- > drivers/net/enic/enic_ethdev.c | 48 -- > drivers/net/i40e/i40e_ethdev.c | 86 --- > drivers/net/i40e/i40e_ethdev.h | 11 +- > drivers/net/i40e/i40e_fdir.c | 539 ---------------- > drivers/net/ixgbe/ixgbe_ethdev.c | 5 +- > drivers/net/ixgbe/ixgbe_ethdev.h | 2 - > drivers/net/ixgbe/ixgbe_fdir.c | 220 ------- > drivers/net/mlx5/mlx5.h | 1 - > drivers/net/mlx5/mlx5_flow.c | 516 --------------- > drivers/net/mlx5/mlx5_flow.h | 8 - > drivers/net/qede/qede_ethdev.h | 5 - > drivers/net/qede/qede_filter.c | 171 ----- > drivers/net/sfc/sfc_ethdev.c | 3 - > lib/librte_ethdev/rte_eth_ctrl.h | 27 +- > 21 files changed, 81 insertions(+), 3050 deletions(-) >
Thanks Andrew, removing the legacy filter from deprecation note, testpmd, lib, to PMDs per type is very clear, and easy to review. Very appreciate your professional work! ;-) For ixgbe PMD, Acked-by: Haiyue Wang <[email protected]> > -- > 2.17.1

