mbox series

[v7,0/9] net/ice: add ice Flow Director driver

Message ID 20191018111602.26742-1-yahui.cao@intel.com (mailing list archive)
Headers
Series net/ice: add ice Flow Director driver |

Message

Cao, Yahui Oct. 18, 2019, 11:15 a.m. UTC
  This patch series adds Flow Director support for Intel Ethernet
Controller E810 series using RTE_FLOW

- Patch 01-02 are FDIR init,teardown and configuration
- Remaining patches are FDIR RTE_FLOW enablement

---
v7:
* Fix shared library build error

v6:
* Fix build error on different platform

v5:
* Add GTPU rule support
* Fix tunnel profile conflict issue
* Update filter counter 

v4:
* Remove rte_wmb.
* Update input set mapping table.
* Remove all created profiles during teardown
* Fix tunnel rule duplication detection failure
* Change function name

v3:
* Get flow id in flexible descriptor
* Add vxlan tunnel rule support

v2:
* Move to flexible descriptor.
* Distinguish tunnel and non-tunnel rule.
* Add uninit function for fdir engine.
* Fix coding style.
* Change patch organization.
* Add release notes.

Beilei Xing (2):
  net/ice: enable flow director engine
  net/ice: configure HW FDIR rule

Yahui Cao (7):
  net/ice: add FDIR create and destroy
  net/ice: enable FDIR queue group
  net/ice: add FDIR counter resource init/release
  net/ice: add FDIR counter support
  net/ice: reject duplicate flow for FDIR
  net/ice: add FDIR vxlan tunnel support
  net/ice: add FDIR GTPU tunnel support

 doc/guides/rel_notes/release_19_11.rst |    1 +
 drivers/net/ice/Makefile               |    3 +-
 drivers/net/ice/ice_ethdev.c           |  107 +-
 drivers/net/ice/ice_ethdev.h           |   96 ++
 drivers/net/ice/ice_fdir_filter.c      | 1792 ++++++++++++++++++++++++
 drivers/net/ice/ice_rxtx.c             |  403 ++++++
 drivers/net/ice/ice_rxtx.h             |    9 +
 drivers/net/ice/meson.build            |    3 +-
 8 files changed, 2393 insertions(+), 21 deletions(-)
 create mode 100644 drivers/net/ice/ice_fdir_filter.c
  

Comments

Xiaolong Ye Oct. 18, 2019, 6:43 a.m. UTC | #1
On 10/18, Yahui Cao wrote:
>This patch series adds Flow Director support for Intel Ethernet
>Controller E810 series using RTE_FLOW
>
>- Patch 01-02 are FDIR init,teardown and configuration
>- Remaining patches are FDIR RTE_FLOW enablement
>
>---
>v7:
>* Fix shared library build error
>
>v6:
>* Fix build error on different platform
>
>v5:
>* Add GTPU rule support
>* Fix tunnel profile conflict issue
>* Update filter counter 
>
>v4:
>* Remove rte_wmb.
>* Update input set mapping table.
>* Remove all created profiles during teardown
>* Fix tunnel rule duplication detection failure
>* Change function name
>
>v3:
>* Get flow id in flexible descriptor
>* Add vxlan tunnel rule support
>
>v2:
>* Move to flexible descriptor.
>* Distinguish tunnel and non-tunnel rule.
>* Add uninit function for fdir engine.
>* Fix coding style.
>* Change patch organization.
>* Add release notes.
>
>Beilei Xing (2):
>  net/ice: enable flow director engine
>  net/ice: configure HW FDIR rule
>
>Yahui Cao (7):
>  net/ice: add FDIR create and destroy
>  net/ice: enable FDIR queue group
>  net/ice: add FDIR counter resource init/release
>  net/ice: add FDIR counter support
>  net/ice: reject duplicate flow for FDIR
>  net/ice: add FDIR vxlan tunnel support
>  net/ice: add FDIR GTPU tunnel support
>
> doc/guides/rel_notes/release_19_11.rst |    1 +
> drivers/net/ice/Makefile               |    3 +-
> drivers/net/ice/ice_ethdev.c           |  107 +-
> drivers/net/ice/ice_ethdev.h           |   96 ++
> drivers/net/ice/ice_fdir_filter.c      | 1792 ++++++++++++++++++++++++
> drivers/net/ice/ice_rxtx.c             |  403 ++++++
> drivers/net/ice/ice_rxtx.h             |    9 +
> drivers/net/ice/meson.build            |    3 +-
> 8 files changed, 2393 insertions(+), 21 deletions(-)
> create mode 100644 drivers/net/ice/ice_fdir_filter.c
>
>-- 
>2.17.1
>

Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>

Series applied to dpdk-next-net-intel.

Thanks,
Xiaolong