mbox

[v1,0/9] bug fixes for bnxt PMD

Message ID 20200515184542.89318-1-ajit.khaparde@broadcom.com (mailing list archive)
Headers

Message

Ajit Khaparde May 15, 2020, 6:45 p.m. UTC
  Patchset with fixes.
The patch [1/9] enhances the log message in  case of a FW command
timeout. The rest of the patches address a perf regression.
Recent commits caused a regression in performance because
bnxt structure became too big and noticed in rc2.
Most of the patches reduce the memory footprint of the struct bnxt.
With these changes the performance is back to normal.

Ajit Khaparde (7):
  net/bnxt: fix error log for command timeout
  net/bnxt: fix to alloc LED config info
  net/bnxt: fix to alloc COS queue info dynamically
  net/bnxt: fix to allocate flow stat related structs
  net/bnxt: fix to alloc link info struct
  net/bnxt: fix to alloc PF info structure
  net/bnxt: fix to use RSS config from eth dev struct

Kalesh AP (1):
  net/bnxt: fix to remove unneeded structure variable

Mike Baucom (1):
  net/bnxt: fix to allocate bnxt ulp context

 drivers/net/bnxt/bnxt.h            |  47 ++--
 drivers/net/bnxt/bnxt_cpr.c        |  20 +-
 drivers/net/bnxt/bnxt_ethdev.c     | 331 ++++++++++++++++++++---------
 drivers/net/bnxt/bnxt_filter.c     |  12 +-
 drivers/net/bnxt/bnxt_flow.c       |  14 +-
 drivers/net/bnxt/bnxt_hwrm.c       | 205 +++++++++---------
 drivers/net/bnxt/bnxt_rxq.c        |   4 +-
 drivers/net/bnxt/bnxt_rxr.c        |   4 +-
 drivers/net/bnxt/bnxt_stats.c      |  14 +-
 drivers/net/bnxt/rte_pmd_bnxt.c    |  98 ++++-----
 drivers/net/bnxt/tf_ulp/bnxt_ulp.c |  64 ++++--
 11 files changed, 492 insertions(+), 321 deletions(-)