patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 18.11 00/19] bnxt patchset for 18.11
@ 2019-12-18  6:23 Somnath Kotur
  2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 01/19] net/bnxt: fix setting default MAC address Somnath Kotur
                   ` (19 more replies)
  0 siblings, 20 replies; 22+ messages in thread
From: Somnath Kotur @ 2019-12-18  6:23 UTC (permalink / raw)
  To: stable; +Cc: ktraynor

bnxt driver fixes backported to 18.11.

Please apply.

Ajit Khaparde (5):
  net/bnxt: fix async link handling and update
  net/bnxt: fix flow flush handling
  net/bnxt: update trusted VF status only when it changes
  net/bnxt: fix doorbell register offset for Tx ring
  net/bnxt: get default HWRM command timeout from FW

Kalesh AP (11):
  net/bnxt: fix setting default MAC address
  net/bnxt: fix error checking of FW commands
  net/bnxt: fix check of address mapping
  net/bnxt: fix stats errors handling
  net/bnxt: move macro definitions to header file
  net/bnxt: fix extended port counter statistics
  net/bnxt: fix VF probe when MAC address is zero
  net/bnxt: fix coding style
  net/bnxt: fix forwarding with higher mbuf size
  net/bnxt: fix deferred start of Tx queues
  net/bnxt: fix rx queue start/stop

Rahul Gupta (1):
  net/bnxt: fix Rx queue count

Santoshkumar Karanappa Rastapur (2):
  net/bnxt: fix MAC/VLAN filter allocation
  net/bnxt: fix crash after removing and adding slaves

 drivers/net/bnxt/bnxt.h        |  57 +++-
 drivers/net/bnxt/bnxt_cpr.c    |   2 +-
 drivers/net/bnxt/bnxt_ethdev.c | 610 +++++++++++++++++++----------------------
 drivers/net/bnxt/bnxt_flow.c   |  15 +-
 drivers/net/bnxt/bnxt_hwrm.c   |  82 ++++--
 drivers/net/bnxt/bnxt_hwrm.h   |   1 +
 drivers/net/bnxt/bnxt_irq.c    |   2 +-
 drivers/net/bnxt/bnxt_irq.h    |   1 +
 drivers/net/bnxt/bnxt_ring.c   |  12 +-
 drivers/net/bnxt/bnxt_rxq.c    |  37 ++-
 drivers/net/bnxt/bnxt_rxq.h    |   2 +-
 drivers/net/bnxt/bnxt_rxr.c    |  10 +-
 drivers/net/bnxt/bnxt_stats.c  |  28 +-
 drivers/net/bnxt/bnxt_txq.c    |   6 +
 drivers/net/bnxt/bnxt_txq.h    |   1 +
 drivers/net/bnxt/bnxt_txr.c    |   6 +-
 drivers/net/bnxt/bnxt_util.c   |  11 +
 drivers/net/bnxt/bnxt_util.h   |   1 +
 18 files changed, 485 insertions(+), 399 deletions(-)

-- 
2.10.1


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

end of thread, other threads:[~2019-12-18 11:23 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18  6:23 [dpdk-stable] [PATCH 18.11 00/19] bnxt patchset for 18.11 Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 01/19] net/bnxt: fix setting default MAC address Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 02/19] net/bnxt: fix error checking of FW commands Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 03/19] net/bnxt: fix check of address mapping Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 04/19] net/bnxt: fix stats errors handling Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 05/19] net/bnxt: move macro definitions to header file Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 06/19] net/bnxt: fix extended port counter statistics Somnath Kotur
2019-12-18  6:23 ` [dpdk-stable] [PATCH 18.11 07/19] net/bnxt: fix VF probe when MAC address is zero Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 08/19] net/bnxt: fix coding style Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 09/19] net/bnxt: fix async link handling and update Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 10/19] net/bnxt: fix flow flush handling Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 11/19] net/bnxt: update trusted VF status only when it changes Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 12/19] net/bnxt: fix doorbell register offset for Tx ring Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 13/19] net/bnxt: get default HWRM command timeout from FW Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 14/19] net/bnxt: fix MAC/VLAN filter allocation Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 15/19] net/bnxt: fix forwarding with higher mbuf size Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 16/19] net/bnxt: fix crash after removing and adding slaves Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 17/19] net/bnxt: fix Rx queue count Somnath Kotur
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 18/19] net/bnxt: fix deferred start of Tx queues Somnath Kotur
2019-12-18 10:21   ` Kevin Traynor
2019-12-18  6:24 ` [dpdk-stable] [PATCH 18.11 19/19] net/bnxt: fix rx queue start/stop Somnath Kotur
2019-12-18 11:22 ` [dpdk-stable] [PATCH 18.11 00/19] bnxt patchset for 18.11 Kevin Traynor

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