mbox series

[v3,00/15] bnxt patch series

Message ID 20190717104139.21155-1-ajit.khaparde@broadcom.com (mailing list archive)
Headers
Series bnxt patch series |

Message

Ajit Khaparde July 17, 2019, 10:41 a.m. UTC
  Patchset fixing various bugs in bnxt PMD based on recent commit:
1e101412320061a4a1cd47db4227b4f8a163e9f6

Ajit Khaparde (3):
  net/bnxt: fix for doorbell register offset for Tx ring
  net/bnxt: save the number of EM flow count
  net/bnxt: fix a compilation warning

Jay Ding (1):
  net/bnxt: fix to avoid sending invalid VNIC id to firmware

Kalesh AP (5):
  net/bnxt: fix extended port counter statistics
  net/bnxt: fix possible segfault in case of probe failure
  net/bnxt: do not fail VF probe when the MAC address is zero
  net/bnxt: fix to enable disable interrupts correctly
  net/bnxt: fix to check for invalid VNIC in cleanup path

Lance Richardson (4):
  net/bnxt: fix Tx hang after port stop/start
  net/bnxt: reset Rx allocation state on port restart
  net/bnxt: nq doorbell cleanups
  net/bnxt: avoid null pointer dereference

Qingmin Liu (1):
  net/bnxt: fix rxq count if ntuple filtering is disabled

Rahul Gupta (1):
  net/bnxt: fix L4 checksum error indication in Rx path

 drivers/net/bnxt/bnxt.h        |   3 +
 drivers/net/bnxt/bnxt_ethdev.c | 307 +++++++++++++++++++--------------
 drivers/net/bnxt/bnxt_hwrm.c   |  56 +++++-
 drivers/net/bnxt/bnxt_hwrm.h   |   1 +
 drivers/net/bnxt/bnxt_irq.c    |   5 +-
 drivers/net/bnxt/bnxt_ring.c   |  11 +-
 drivers/net/bnxt/bnxt_ring.h   |  23 ++-
 drivers/net/bnxt/bnxt_rxq.c    |   4 -
 drivers/net/bnxt/bnxt_rxr.c    |  43 +++--
 drivers/net/bnxt/bnxt_rxr.h    | 120 ++++++++++---
 drivers/net/bnxt/bnxt_util.c   |  11 ++
 drivers/net/bnxt/bnxt_util.h   |   1 +
 drivers/net/bnxt/bnxt_vnic.c   |   3 +
 13 files changed, 409 insertions(+), 179 deletions(-)
  

Comments

Ferruh Yigit July 17, 2019, 5:15 p.m. UTC | #1
On 7/17/2019 11:41 AM, Ajit Khaparde wrote:
> Patchset fixing various bugs in bnxt PMD based on recent commit:
> 1e101412320061a4a1cd47db4227b4f8a163e9f6
> 
> Ajit Khaparde (3):
>   net/bnxt: fix for doorbell register offset for Tx ring
>   net/bnxt: save the number of EM flow count
>   net/bnxt: fix a compilation warning
> 
> Jay Ding (1):
>   net/bnxt: fix to avoid sending invalid VNIC id to firmware
> 
> Kalesh AP (5):
>   net/bnxt: fix extended port counter statistics
>   net/bnxt: fix possible segfault in case of probe failure
>   net/bnxt: do not fail VF probe when the MAC address is zero
>   net/bnxt: fix to enable disable interrupts correctly
>   net/bnxt: fix to check for invalid VNIC in cleanup path
> 
> Lance Richardson (4):
>   net/bnxt: fix Tx hang after port stop/start
>   net/bnxt: reset Rx allocation state on port restart
>   net/bnxt: nq doorbell cleanups
>   net/bnxt: avoid null pointer dereference
> 
> Qingmin Liu (1):
>   net/bnxt: fix rxq count if ntuple filtering is disabled
> 
> Rahul Gupta (1):
>   net/bnxt: fix L4 checksum error indication in Rx path

Series applied to dpdk-next-net/master, thanks.