DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/3] patchset for bnxt PMD
@ 2020-09-29 20:59 Ajit Khaparde
  2020-09-29 20:59 ` [dpdk-dev] [PATCH 1/3] net/bnxt: add support for RSS hash selection Ajit Khaparde
                   ` (3 more replies)
  0 siblings, 4 replies; 22+ messages in thread
From: Ajit Khaparde @ 2020-09-29 20:59 UTC (permalink / raw)
  To: dev

Patches for bnxt PMD to add support for RSS level
selection, update HWRM API.

Ajit Khaparde (3):
  net/bnxt: add support for RSS hash selection
  net/bnxt: update HWRM structures
  doc: fix vector mode info for bnxt

 doc/guides/nics/bnxt.rst               |     1 -
 doc/guides/rel_notes/release_20_11.rst |     2 +
 drivers/net/bnxt/bnxt.h                |     4 +-
 drivers/net/bnxt/bnxt_ethdev.c         |     7 +
 drivers/net/bnxt/bnxt_flow.c           |     2 +
 drivers/net/bnxt/bnxt_hwrm.c           |    16 +-
 drivers/net/bnxt/bnxt_rxq.c            |     6 +
 drivers/net/bnxt/bnxt_txr.c            |    27 +-
 drivers/net/bnxt/bnxt_vnic.c           |    66 +
 drivers/net/bnxt/bnxt_vnic.h           |     5 +
 drivers/net/bnxt/hsi_struct_def_dpdk.h | 11011 +++++++++++++++--------
 11 files changed, 7153 insertions(+), 3994 deletions(-)

-- 
2.21.1 (Apple Git-122.3)


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [dpdk-dev] [PATCH 0/3] patchset for bnxt PMD
@ 2021-10-07  3:23 Ajit Khaparde
  2021-10-07 16:54 ` Ajit Khaparde
  0 siblings, 1 reply; 22+ messages in thread
From: Ajit Khaparde @ 2021-10-07  3:23 UTC (permalink / raw)
  To: dev

[-- Attachment #1: Type: text/plain, Size: 887 bytes --]

Apart from fixing an issue with Rx queue state at startup,
this patchset enhances support for RSS action and
optimizes the mbuf requirement at startup by creating the
aggregation rings only when needed (rx_scatter is enabled).

Please apply!

Ajit Khaparde (3):
  net/bnxt: create aggregration rings when needed
  net/bnxt: fix Rx queue state on start
  net/bnxt: enhance support for RSS action

 drivers/net/bnxt/bnxt_ethdev.c |  16 +--
 drivers/net/bnxt/bnxt_filter.h |   1 +
 drivers/net/bnxt/bnxt_flow.c   | 190 ++++++++++++++++++++++++++++++++-
 drivers/net/bnxt/bnxt_hwrm.c   |   9 ++
 drivers/net/bnxt/bnxt_ring.c   | 148 +++++++++++++++----------
 drivers/net/bnxt/bnxt_rxq.c    |  71 +++++++-----
 drivers/net/bnxt/bnxt_rxq.h    |   2 +
 drivers/net/bnxt/bnxt_rxr.c    | 111 +++++++++++--------
 8 files changed, 416 insertions(+), 132 deletions(-)

-- 
2.30.1 (Apple Git-130)


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [dpdk-dev] [PATCH 0/3] patchset for bnxt PMD
@ 2017-10-12 17:35 Ajit Khaparde
  0 siblings, 0 replies; 22+ messages in thread
From: Ajit Khaparde @ 2017-10-12 17:35 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

Patchset against dpdk-next
Apart from couple of fixes, this set updates the HWRM version
to 1.8.2. The patch to update the HWRM is based on a file which
is autogenerated and most of the changes in the actual PMD are
macro name changes. This patch will throw a bunch of checkpatch
warnings, but they are because of macro names which span > 80
characters.

Please apply.

Ajit Khaparde (3):
  net/bnxt: handle Rx multi queue creation properly
  net/bnxt: remove redundant code parsing pool_map
  net/bnxt: update HWRM API to 1.8.2

 drivers/net/bnxt/bnxt.h                |     2 -
 drivers/net/bnxt/bnxt_ethdev.c         |     7 +-
 drivers/net/bnxt/bnxt_hwrm.c           |     2 +-
 drivers/net/bnxt/bnxt_hwrm.h           |     2 +
 drivers/net/bnxt/bnxt_irq.c            |     2 +-
 drivers/net/bnxt/bnxt_rxq.c            |    29 +-
 drivers/net/bnxt/bnxt_rxr.c            |     4 +-
 drivers/net/bnxt/bnxt_txr.c            |     2 +-
 drivers/net/bnxt/hsi_struct_def_dpdk.h | 30829 ++++++++++++++++++++++++-------
 9 files changed, 24385 insertions(+), 6494 deletions(-)

-- 
2.13.5 (Apple Git-94)

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2021-10-12 20:39 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29 20:59 [dpdk-dev] [PATCH 0/3] patchset for bnxt PMD Ajit Khaparde
2020-09-29 20:59 ` [dpdk-dev] [PATCH 1/3] net/bnxt: add support for RSS hash selection Ajit Khaparde
2020-09-29 20:59 ` [dpdk-dev] [PATCH 2/3] net/bnxt: update HWRM structures Ajit Khaparde
2020-09-30 22:17   ` Ferruh Yigit
2020-10-01  3:56     ` [dpdk-dev] [PATCH 0/2] patchset for bnxt PMD Ajit Khaparde
2020-10-01  3:56       ` [dpdk-dev] [PATCH 1/2] net/bnxt: add support for RSS hash selection Ajit Khaparde
2020-10-01  3:56       ` [dpdk-dev] [PATCH 2/2] net/bnxt: update HWRM structures Ajit Khaparde
2020-10-01  9:12       ` [dpdk-dev] [PATCH 0/2] patchset for bnxt PMD Ajit Khaparde
2020-09-29 20:59 ` [dpdk-dev] [PATCH 3/3] doc: fix vector mode info for bnxt Ajit Khaparde
2020-09-30 17:28   ` Lance Richardson
2020-09-30 17:37     ` Ajit Khaparde
2020-09-30 17:16 ` [dpdk-dev] [PATCH 0/3] patchset for bnxt PMD Ajit Khaparde
2020-09-30 21:29   ` Ajit Khaparde
  -- strict thread matches above, loose matches on Subject: below --
2021-10-07  3:23 Ajit Khaparde
2021-10-07 16:54 ` Ajit Khaparde
2021-10-12 18:14   ` Ferruh Yigit
2021-10-12 18:16     ` Ajit Khaparde
2021-10-12 19:03       ` Ajit Khaparde
2021-10-12 19:49         ` Ferruh Yigit
2021-10-12 20:30           ` Ajit Khaparde
2021-10-12 20:39             ` Ajit Khaparde
2017-10-12 17:35 Ajit Khaparde

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).