mbox series

[00/15] add flow API support to softnic

Message ID 1536251222-17275-1-git-send-email-reshma.pattan@intel.com (mailing list archive)
Headers
Series add flow API support to softnic |

Message

Pattan, Reshma Sept. 6, 2018, 4:26 p.m. UTC
  This patch series adds the flow API support
for the softnic.

This patch set also introduce a new cli command
to provide mapping of flow group and direction
to softnic pipeline and table.

Reshma Pattan (15):
  net/softnic: add infrastructure for flow API
  net/softnic: rte flow attr mapping to pipeline
  net/softnic: add new cli for flow attribute map
  net/softnic: various data type changes
  net/softnic: add free table and find out port functions
  net/softnic: add function to get eth device from softnic
  net/softnic: flow API validate support
  net/softnic: validate and map flow rule with acl table match
  net/softnic: parse flow protocol for acl table match
  net/softnic: validate and map flow with hash table match
  net/softnic: validate and map flow action with table action
  net/softnic: add flow create API
  net/softnic: add flow destroy API
  net/softnic: add flow query API
  net/softnic: add parsing for raw flow item

 drivers/net/softnic/Makefile                    |    1 +
 drivers/net/softnic/meson.build                 |    1 +
 drivers/net/softnic/rte_eth_softnic.c           |   16 +
 drivers/net/softnic/rte_eth_softnic_cli.c       |  115 +-
 drivers/net/softnic/rte_eth_softnic_flow.c      | 1809 +++++++++++++++++++++++
 drivers/net/softnic/rte_eth_softnic_internals.h |   98 +-
 drivers/net/softnic/rte_eth_softnic_pipeline.c  |   61 +-
 7 files changed, 2071 insertions(+), 30 deletions(-)
 create mode 100644 drivers/net/softnic/rte_eth_softnic_flow.c