mbox series

[v2,0/4] net/ice: support DCF ACL capabiltiy

Message ID 20200929015632.109364-1-simei.su@intel.com (mailing list archive)
Headers
Series net/ice: support DCF ACL capabiltiy |

Message

Simei Su Sept. 29, 2020, 1:56 a.m. UTC
  [PATCH v2 1/4] change API from static to non-static.
[PATCH v2 2/4] get PF VSI map for DCF ACL rule.
[PATCH v2 3/4] support IPV4/IPV4_UDP/IPV4_TCP/IPV4_SCTP pattern
	       and DROP action for DCF ACL.
[PATCH v2 4/4] add devargs support for DCF ACL IPV4 rule number.

v2:
* Add release notes.
* Adjust patch sequence.
* Refactor ACL design and related structure.
* Add bitmap mechanism to allocate entry dynamically.

Simei Su (4):
  net/ice/base: change API from static to non-static
  net/ice: get PF VSI map
  net/ice: support ACL filter in DCF
  net/ice: add devarg for ACL ipv4 rule number

 doc/guides/rel_notes/release_20_11.rst |    5 +
 drivers/net/ice/base/ice_flow.c        |    2 +-
 drivers/net/ice/base/ice_flow.h        |    3 +
 drivers/net/ice/ice_acl_filter.c       | 1096 ++++++++++++++++++++++++++++++++
 drivers/net/ice/ice_dcf.c              |    1 +
 drivers/net/ice/ice_dcf.h              |    1 +
 drivers/net/ice/ice_dcf_ethdev.c       |  100 ++-
 drivers/net/ice/ice_dcf_parent.c       |   37 +-
 drivers/net/ice/ice_ethdev.h           |   18 +
 drivers/net/ice/ice_generic_flow.c     |    2 +
 drivers/net/ice/meson.build            |    3 +-
 11 files changed, 1241 insertions(+), 27 deletions(-)
 create mode 100644 drivers/net/ice/ice_acl_filter.c