This patch series adds Intel Columbiaville 800 Series Ethernet Flow Director support for RTE_FLOW
- Patch 01-03 are FDIR init,teardown and configuration - Remaining patches are FDIR RTE_FLOW enablement The patchset depends on: http://patchwork.dpdk.org/project/dpdk/list/?series=6228 --- Beilei Xing (3): net/ice: initialize and set up flow director net/ice: tear down flow director net/ice: enable input set configuration Yahui Cao (9): net/ice: add FDIR create and destroy net/ice: add FDIR mark action support net/ice: add hash table for FDIR net/ice: enable FDIR queue group net/ice: add FDIR dst mac support net/ice: add FDIR counter resource init/release net/ice: add FDIR counter support for flow id net/ice: add FDIR counter support for flow shared net/ice: add FDIR non-word aligned field support drivers/net/ice/Makefile | 1 + drivers/net/ice/ice_ethdev.c | 107 +- drivers/net/ice/ice_ethdev.h | 85 ++ drivers/net/ice/ice_fdir_filter.c | 1514 +++++++++++++++++++++++++++++ drivers/net/ice/ice_rxtx.c | 505 ++++++++++ drivers/net/ice/ice_rxtx.h | 9 + drivers/net/ice/meson.build | 3 +- 7 files changed, 2204 insertions(+), 20 deletions(-) create mode 100644 drivers/net/ice/ice_fdir_filter.c -- 2.17.1