mbox series

[00/11] enhancements to host based flow table management

Message ID 1586962156-11179-1-git-send-email-venkatkumar.duvvuru@broadcom.com (mailing list archive)
Headers
Series enhancements to host based flow table management |

Message

Venkat Duvvuru April 15, 2020, 2:49 p.m. UTC
  This patchset introduces enhancements to the flow table management related
to resource sharing and deletion, flow matching performance, and flow flushing.
Additionally, a new port database was introduced to store frequently required
port mappings and resources.

Kishore Padmanabha (5):
  net/bnxt: Added flow database resource iteration API
  net/bnxt: aggregated ulp rte parser arguments to single structure
  net/bnxt: use hashing for flow template matching
  net/bnxt: addition of session and function flow flush
  net/bnxt: addition of the port database

Mike Baucom (6):
  net/bnxt: SVIF changes for dpdk port id
  net/bnxt: allow usage of more resources in flow db
  net/bnxt: added type of resource name to debug messages
  net/bnxt: aggregated ulp mapper create arguments to single structure
  net/bnxt: default identifiers added to ulp mapper
  net/bnxt: cache table type added for tcam lookups

 drivers/net/bnxt/Makefile                       |    1 +
 drivers/net/bnxt/bnxt.h                         |    1 +
 drivers/net/bnxt/bnxt_ethdev.c                  |   12 +
 drivers/net/bnxt/meson.build                    |    1 +
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c              |   90 +-
 drivers/net/bnxt/tf_ulp/bnxt_ulp.h              |   20 +
 drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c         |  170 ++--
 drivers/net/bnxt/tf_ulp/ulp_flow_db.c           |  221 ++++-
 drivers/net/bnxt/tf_ulp/ulp_flow_db.h           |   63 +-
 drivers/net/bnxt/tf_ulp/ulp_mapper.c            |  801 ++++++++++++++--
 drivers/net/bnxt/tf_ulp/ulp_mapper.h            |   72 +-
 drivers/net/bnxt/tf_ulp/ulp_matcher.c           |  220 ++---
 drivers/net/bnxt/tf_ulp/ulp_matcher.h           |   12 +-
 drivers/net/bnxt/tf_ulp/ulp_port_db.c           |  264 ++++++
 drivers/net/bnxt/tf_ulp/ulp_port_db.h           |  134 +++
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.c        | 1124 ++++++++++++-----------
 drivers/net/bnxt/tf_ulp/ulp_rte_parser.h        |  155 ++--
 drivers/net/bnxt/tf_ulp/ulp_template_db.c       |  459 +++++----
 drivers/net/bnxt/tf_ulp/ulp_template_db.h       |  313 ++++---
 drivers/net/bnxt/tf_ulp/ulp_template_field_db.h |  171 ++--
 drivers/net/bnxt/tf_ulp/ulp_template_struct.h   |  117 ++-
 drivers/net/bnxt/tf_ulp/ulp_utils.c             |   33 +
 drivers/net/bnxt/tf_ulp/ulp_utils.h             |   17 +-
 23 files changed, 3050 insertions(+), 1421 deletions(-)
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_port_db.c
 create mode 100644 drivers/net/bnxt/tf_ulp/ulp_port_db.h