DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ajit Khaparde <ajit.khaparde@broadcom.com>
To: dpdk-dev <dev@dpdk.org>, Ferruh Yigit <ferruh.yigit@intel.com>
Subject: Re: [dpdk-dev] [PATCH v2 00/12] bnxt patches
Date: Sun, 11 Oct 2020 21:31:03 -0700	[thread overview]
Message-ID: <CACZ4nhuKiyC8w7vyhAgMDKbRxTg5Gk84hMBuUyQ0PX5Do+0zeg@mail.gmail.com> (raw)
In-Reply-To: <20201010041153.63921-1-ajit.khaparde@broadcom.com>

On Fri, Oct 9, 2020 at 9:12 PM Ajit Khaparde <ajit.khaparde@broadcom.com> wrote:
>
> Fixes and enchancements in the bnxt PMD, mostly in the
> TRUFLOW layer, including templates to add support for
> Stingray device.
>
> v2:
> - squashed patch patch 13 to patch 7
> - updated and fixed commit logs
> - updated docs and release notes where necessary
Patchset applied to dpdk-next-net-brcm/for-next-net. Thanks

>
> Kishore Padmanabha (4):
>   net/bnxt: fix the corruption of the session details
>   net/bnxt: combine default and regular flows
>   net/bnxt: add support for parent child flow database
>   net/bnxt: add parent child flow create and free
>
> Mike Baucom (6):
>   net/bnxt: add multi-device infrastructure
>   net/bnxt: add Stingray device support to ULP
>   net/bnxt: consolidate template table processing
>   net/bnxt: support runtime EM selection
>   net/bnxt: consolidate template table processing
>   net/bnxt: remove flow db table type from templates
>
> Venkat Duvvuru (2):
>   net/bnxt: fix PMD PF support in SR-IOV mode
>   net/bnxt: handle default vnic change async event
>
>  doc/guides/nics/bnxt.rst                      |    42 +
>  doc/guides/rel_notes/release_20_11.rst        |     1 +
>  drivers/net/bnxt/bnxt.h                       |     6 +-
>  drivers/net/bnxt/bnxt_cpr.c                   |    13 +-
>  drivers/net/bnxt/bnxt_ethdev.c                |    40 +-
>  drivers/net/bnxt/bnxt_hwrm.c                  |   463 +-
>  drivers/net/bnxt/bnxt_hwrm.h                  |    12 +-
>  drivers/net/bnxt/meson.build                  |     4 +
>  drivers/net/bnxt/tf_ulp/bnxt_ulp.c            |   387 +-
>  drivers/net/bnxt/tf_ulp/bnxt_ulp.h            |    11 +
>  drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c       |     5 +-
>  drivers/net/bnxt/tf_ulp/ulp_def_rules.c       |     5 +-
>  drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c          |     2 +-
>  drivers/net/bnxt/tf_ulp/ulp_flow_db.c         |   892 +-
>  drivers/net/bnxt/tf_ulp/ulp_flow_db.h         |   179 +-
>  drivers/net/bnxt/tf_ulp/ulp_mapper.c          |   520 +-
>  drivers/net/bnxt/tf_ulp/ulp_mapper.h          |    22 +-
>  drivers/net/bnxt/tf_ulp/ulp_template_db_act.c |  1810 --
>  .../net/bnxt/tf_ulp/ulp_template_db_class.c   | 16271 -------------
>  .../net/bnxt/tf_ulp/ulp_template_db_enum.h    |    18 +-
>  .../tf_ulp/ulp_template_db_stingray_act.c     |  3305 +++
>  .../tf_ulp/ulp_template_db_stingray_class.c   | 19005 ++++++++++++++++
>  drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c |    59 +-
>  drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.h |    48 +
>  .../bnxt/tf_ulp/ulp_template_db_wh_plus_act.c |  3304 +++
>  .../tf_ulp/ulp_template_db_wh_plus_class.c    | 19005 ++++++++++++++++
>  drivers/net/bnxt/tf_ulp/ulp_template_struct.h |    64 +-
>  drivers/net/bnxt/tf_ulp/ulp_utils.h           |     4 +
>  28 files changed, 46530 insertions(+), 18967 deletions(-)
>  create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_stingray_act.c
>  create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_stingray_class.c
>  create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.h
>  create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_wh_plus_act.c
>  create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_wh_plus_class.c
>
> --
> 2.21.1 (Apple Git-122.3)
>

      parent reply	other threads:[~2020-10-12  4:31 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-09 11:11 [dpdk-dev] [PATCH 00/13] " Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 01/13] net/bnxt: fix the corruption of the session details Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 02/13] net/bnxt: add multi-device infrastucture Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 03/13] net/bnxt: add Stingray support to ULP Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 04/13] net/bnxt: fixes for PMD PF support in SR-IOV mode Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 05/13] net/bnxt: consolidate template table processing Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 06/13] net/bnxt: combine default and regular flows in flow database Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 07/13] net/bnxt: register PF for default vnic change async event Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 08/13] net/bnxt: runtime external vs internal em support Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 09/13] net/bnxt: add support for parent child flow database Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 10/13] net/bnxt: consolidate template table processing Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 11/13] net/bnxt: remove flow db table type from templates Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 12/13] net/bnxt: add support for parent child flow create and free Somnath Kotur
2020-10-09 11:11 ` [dpdk-dev] [PATCH 13/13] net/bnxt: remove parent fid validation in vnic change event processing Somnath Kotur
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 00/12] bnxt patches Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 01/12] net/bnxt: fix the corruption of the session details Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 02/12] net/bnxt: add multi-device infrastructure Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 03/12] net/bnxt: add Stingray device support to ULP Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 04/12] net/bnxt: fix PMD PF support in SR-IOV mode Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 05/12] net/bnxt: consolidate template table processing Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 06/12] net/bnxt: combine default and regular flows Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 07/12] net/bnxt: handle default vnic change async event Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 08/12] net/bnxt: support runtime EM selection Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 09/12] net/bnxt: add support for parent child flow database Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 10/12] net/bnxt: consolidate template table processing Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 11/12] net/bnxt: remove flow db table type from templates Ajit Khaparde
2020-10-10  4:05 ` [dpdk-dev] [PATCH v2 12/12] net/bnxt: add parent child flow create and free Ajit Khaparde
2020-10-10  4:11 ` [dpdk-dev] [PATCH v2 00/12] bnxt patches Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 01/12] net/bnxt: fix the corruption of the session details Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 02/12] net/bnxt: add multi-device infrastructure Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 03/12] net/bnxt: add Stingray device support to ULP Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 04/12] net/bnxt: fix PMD PF support in SR-IOV mode Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 05/12] net/bnxt: consolidate template table processing Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 06/12] net/bnxt: combine default and regular flows Ajit Khaparde
2022-05-24 15:31     ` Ferruh Yigit
2022-05-24 16:24       ` Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 07/12] net/bnxt: handle default vnic change async event Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 08/12] net/bnxt: support runtime EM selection Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 09/12] net/bnxt: add support for parent child flow database Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 10/12] net/bnxt: consolidate template table processing Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 11/12] net/bnxt: remove flow db table type from templates Ajit Khaparde
2020-10-10  4:11   ` [dpdk-dev] [PATCH v2 12/12] net/bnxt: add parent child flow create and free Ajit Khaparde
2020-10-12  4:31   ` Ajit Khaparde [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CACZ4nhuKiyC8w7vyhAgMDKbRxTg5Gk84hMBuUyQ0PX5Do+0zeg@mail.gmail.com \
    --to=ajit.khaparde@broadcom.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).