netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net 0/2] bnxt_en: 2 bug fixes.
@ 2016-05-04 20:56 Michael Chan
  2016-05-04 21:12 ` David Miller
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2016-05-04 20:56 UTC (permalink / raw)
  To: davem; +Cc: netdev

Fix crash on ppc64 due to missing memory barrier and restore multicast
after reset.

Michael Chan (2):
  bnxt_en: Need memory barrier when processing the completion ring.
  bnxt_en: Setup multicast properly after resetting device.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

-- 
1.8.3.1

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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes.
  2016-05-04 20:56 Michael Chan
@ 2016-05-04 21:12 ` David Miller
  0 siblings, 0 replies; 20+ messages in thread
From: David Miller @ 2016-05-04 21:12 UTC (permalink / raw)
  To: michael.chan; +Cc: netdev

From: Michael Chan <michael.chan@broadcom.com>
Date: Wed,  4 May 2016 16:56:42 -0400

> Fix crash on ppc64 due to missing memory barrier and restore multicast
> after reset.

Looks good, series applied, thanks.

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

* [PATCH net 0/2] bnxt_en: 2 bug fixes.
@ 2016-11-11  5:11 Michael Chan
  2016-11-11  5:11 ` [PATCH net 1/2] bnxt_en: Fix ring arithmetic in bnxt_setup_tc() Michael Chan
                   ` (2 more replies)
  0 siblings, 3 replies; 20+ messages in thread
From: Michael Chan @ 2016-11-11  5:11 UTC (permalink / raw)
  To: davem; +Cc: netdev

Bug fixes in bnxt_setup_tc() and VF vitual link state.

Michael Chan (2):
  bnxt_en: Fix ring arithmetic in bnxt_setup_tc().
  bnxt_en: Fix VF virtual link state.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c       | 11 ++++++-----
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c |  4 ++--
 2 files changed, 8 insertions(+), 7 deletions(-)

-- 
1.8.3.1

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

* [PATCH net 1/2] bnxt_en: Fix ring arithmetic in bnxt_setup_tc().
  2016-11-11  5:11 [PATCH net 0/2] bnxt_en: 2 bug fixes Michael Chan
@ 2016-11-11  5:11 ` Michael Chan
  2016-11-11  5:11 ` [PATCH net 2/2] bnxt_en: Fix VF virtual link state Michael Chan
  2016-11-13 17:37 ` [PATCH net 0/2] bnxt_en: 2 bug fixes David Miller
  2 siblings, 0 replies; 20+ messages in thread
From: Michael Chan @ 2016-11-11  5:11 UTC (permalink / raw)
  To: davem; +Cc: netdev

The logic is missing the check on whether the tx and rx rings are sharing
completion rings or not.

Signed-off-by: Michael Chan <michael.chan@broadcom.com>
---
 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
index a9f9f37..c690966 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
@@ -6309,6 +6309,7 @@ static int bnxt_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
 			 struct tc_to_netdev *ntc)
 {
 	struct bnxt *bp = netdev_priv(dev);
+	bool sh = false;
 	u8 tc;
 
 	if (ntc->type != TC_SETUP_MQPRIO)
@@ -6325,12 +6326,11 @@ static int bnxt_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
 	if (netdev_get_num_tc(dev) == tc)
 		return 0;
 
+	if (bp->flags & BNXT_FLAG_SHARED_RINGS)
+		sh = true;
+
 	if (tc) {
 		int max_rx_rings, max_tx_rings, rc;
-		bool sh = false;
-
-		if (bp->flags & BNXT_FLAG_SHARED_RINGS)
-			sh = true;
 
 		rc = bnxt_get_max_rings(bp, &max_rx_rings, &max_tx_rings, sh);
 		if (rc || bp->tx_nr_rings_per_tc * tc > max_tx_rings)
@@ -6348,7 +6348,8 @@ static int bnxt_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
 		bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
 		netdev_reset_tc(dev);
 	}
-	bp->cp_nr_rings = max_t(int, bp->tx_nr_rings, bp->rx_nr_rings);
+	bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
+			       bp->tx_nr_rings + bp->rx_nr_rings;
 	bp->num_stat_ctxs = bp->cp_nr_rings;
 
 	if (netif_running(bp->dev))
-- 
1.8.3.1

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

* [PATCH net 2/2] bnxt_en: Fix VF virtual link state.
  2016-11-11  5:11 [PATCH net 0/2] bnxt_en: 2 bug fixes Michael Chan
  2016-11-11  5:11 ` [PATCH net 1/2] bnxt_en: Fix ring arithmetic in bnxt_setup_tc() Michael Chan
@ 2016-11-11  5:11 ` Michael Chan
  2016-11-13 17:37 ` [PATCH net 0/2] bnxt_en: 2 bug fixes David Miller
  2 siblings, 0 replies; 20+ messages in thread
From: Michael Chan @ 2016-11-11  5:11 UTC (permalink / raw)
  To: davem; +Cc: netdev

If the physical link is down and the VF virtual link is set to "enable",
the current code does not always work.  If the link is down but the
cable is attached, the firmware returns LINK_SIGNAL instead of
NO_LINK.  The current code is treating LINK_SIGNAL as link up.
The fix is to treat link as down when the link_status != LINK.

Signed-off-by: Michael Chan <michael.chan@broadcom.com>
---
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
index ec6cd18..60e2af8 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
@@ -774,8 +774,8 @@ static int bnxt_vf_set_link(struct bnxt *bp, struct bnxt_vf_info *vf)
 
 		if (vf->flags & BNXT_VF_LINK_UP) {
 			/* if physical link is down, force link up on VF */
-			if (phy_qcfg_resp.link ==
-			    PORT_PHY_QCFG_RESP_LINK_NO_LINK) {
+			if (phy_qcfg_resp.link !=
+			    PORT_PHY_QCFG_RESP_LINK_LINK) {
 				phy_qcfg_resp.link =
 					PORT_PHY_QCFG_RESP_LINK_LINK;
 				phy_qcfg_resp.link_speed = cpu_to_le16(
-- 
1.8.3.1

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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes.
  2016-11-11  5:11 [PATCH net 0/2] bnxt_en: 2 bug fixes Michael Chan
  2016-11-11  5:11 ` [PATCH net 1/2] bnxt_en: Fix ring arithmetic in bnxt_setup_tc() Michael Chan
  2016-11-11  5:11 ` [PATCH net 2/2] bnxt_en: Fix VF virtual link state Michael Chan
@ 2016-11-13 17:37 ` David Miller
  2 siblings, 0 replies; 20+ messages in thread
From: David Miller @ 2016-11-13 17:37 UTC (permalink / raw)
  To: michael.chan; +Cc: netdev

From: Michael Chan <michael.chan@broadcom.com>
Date: Fri, 11 Nov 2016 00:11:41 -0500

> Bug fixes in bnxt_setup_tc() and VF vitual link state.

Series applied, thanks Michael.

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

* [PATCH net 0/2] bnxt_en: 2 bug fixes.
@ 2019-04-08 21:39 Michael Chan
  2019-04-08 23:39 ` David Miller
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2019-04-08 21:39 UTC (permalink / raw)
  To: davem; +Cc: netdev

The first patch prevents possible driver crash if we get a bad RX index
from the hardware.  The second patch resets the device when the hardware
reports buffer error to recover from the error.

Please queue these for -stable also.  Thanks.

Michael Chan (2):
  bnxt_en: Improve RX consumer index validity check.
  bnxt_en: Reset device on RX buffer errors.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

-- 
2.5.1


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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes.
  2019-04-08 21:39 Michael Chan
@ 2019-04-08 23:39 ` David Miller
  0 siblings, 0 replies; 20+ messages in thread
From: David Miller @ 2019-04-08 23:39 UTC (permalink / raw)
  To: michael.chan; +Cc: netdev

From: Michael Chan <michael.chan@broadcom.com>
Date: Mon,  8 Apr 2019 17:39:53 -0400

> The first patch prevents possible driver crash if we get a bad RX index
> from the hardware.  The second patch resets the device when the hardware
> reports buffer error to recover from the error.
> 
> Please queue these for -stable also.  Thanks.

Series applied and queued up for -stable, thanks.

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

* [PATCH net 0/2] bnxt_en: 2 bug fixes.
@ 2020-03-02  3:07 Michael Chan
  2020-03-02  3:17 ` David Miller
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2020-03-02  3:07 UTC (permalink / raw)
  To: davem; +Cc: netdev

This first patch fixes a rare but possible crash in pci_disable_msix()
when the MTU is changed.  The 2nd patch fixes a regression in error
code handling when flashing a file to NVRAM.

Please also queue these for -stable.  Thanks.

Edwin Peer (1):
  bnxt_en: fix error handling when flashing from file

Vasundhara Volam (1):
  bnxt_en: reinitialize IRQs when MTU is modified

 drivers/net/ethernet/broadcom/bnxt/bnxt.c         |  4 ++--
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c | 24 +++++++++++------------
 2 files changed, 13 insertions(+), 15 deletions(-)

-- 
2.5.1


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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes.
  2020-03-02  3:07 Michael Chan
@ 2020-03-02  3:17 ` David Miller
  0 siblings, 0 replies; 20+ messages in thread
From: David Miller @ 2020-03-02  3:17 UTC (permalink / raw)
  To: michael.chan; +Cc: netdev

From: Michael Chan <michael.chan@broadcom.com>
Date: Sun,  1 Mar 2020 22:07:16 -0500

> This first patch fixes a rare but possible crash in pci_disable_msix()
> when the MTU is changed.  The 2nd patch fixes a regression in error
> code handling when flashing a file to NVRAM.

Applied.

> Please also queue these for -stable.  Thanks.

Queued up, thanks Michael.

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

* [PATCH net 0/2] bnxt_en: 2 bug fixes.
@ 2021-02-11  7:24 Michael Chan
  2021-02-11 22:50 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2021-02-11  7:24 UTC (permalink / raw)
  To: davem; +Cc: netdev, kuba, gospo

Two unrelated fixes.  The first one fixes intermittent false TX timeouts
during ring reconfigurations.  The second one fixes a formatting
discrepancy between the stored and the running FW versions.

Please also queue these for -stable.  Thanks.

Edwin Peer (1):
  bnxt_en: reverse order of TX disable and carrier off

Vasundhara Volam (1):
  bnxt_en: Fix devlink info's stored fw.psid version format.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c         | 3 ++-
 drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.c | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

-- 
2.18.1


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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes.
  2021-02-11  7:24 Michael Chan
@ 2021-02-11 22:50 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 20+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-02-11 22:50 UTC (permalink / raw)
  To: Michael Chan; +Cc: davem, netdev, kuba, gospo

Hello:

This series was applied to netdev/net.git (refs/heads/master):

On Thu, 11 Feb 2021 02:24:22 -0500 you wrote:
> Two unrelated fixes.  The first one fixes intermittent false TX timeouts
> during ring reconfigurations.  The second one fixes a formatting
> discrepancy between the stored and the running FW versions.
> 
> Please also queue these for -stable.  Thanks.
> 
> Edwin Peer (1):
>   bnxt_en: reverse order of TX disable and carrier off
> 
> [...]

Here is the summary with links:
  - [net,1/2] bnxt_en: reverse order of TX disable and carrier off
    https://git.kernel.org/netdev/net/c/132e0b65dc2b
  - [net,2/2] bnxt_en: Fix devlink info's stored fw.psid version format.
    https://git.kernel.org/netdev/net/c/db28b6c77f40

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* [PATCH net 0/2] bnxt_en: 2 bug fixes.
@ 2021-05-15  7:25 Michael Chan
  2021-05-17 21:10 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2021-05-15  7:25 UTC (permalink / raw)
  To: davem; +Cc: netdev, kuba, gospo

The first one fixes a bug to properly identify some recently added HyperV
device IDs.  The second one fixes device context memory set up on systems
with 64K page size.

Please queue these for -stable as well.  Thanks.

Andy Gospodarek (1):
  bnxt_en: Include new P5 HV definition in VF check.

Michael Chan (1):
  bnxt_en: Fix context memory setup for 64K page size.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 12 +++---------
 drivers/net/ethernet/broadcom/bnxt/bnxt.h | 10 ++++++++++
 2 files changed, 13 insertions(+), 9 deletions(-)

-- 
2.18.1


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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes.
  2021-05-15  7:25 Michael Chan
@ 2021-05-17 21:10 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 20+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-05-17 21:10 UTC (permalink / raw)
  To: Michael Chan; +Cc: davem, netdev, kuba, gospo

Hello:

This series was applied to netdev/net.git (refs/heads/master):

On Sat, 15 May 2021 03:25:17 -0400 you wrote:
> The first one fixes a bug to properly identify some recently added HyperV
> device IDs.  The second one fixes device context memory set up on systems
> with 64K page size.
> 
> Please queue these for -stable as well.  Thanks.
> 
> Andy Gospodarek (1):
>   bnxt_en: Include new P5 HV definition in VF check.
> 
> [...]

Here is the summary with links:
  - [net,1/2] bnxt_en: Include new P5 HV definition in VF check.
    https://git.kernel.org/netdev/net/c/ab21494be9dc
  - [net,2/2] bnxt_en: Fix context memory setup for 64K page size.
    https://git.kernel.org/netdev/net/c/702279d2ce46

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* [PATCH net 0/2] bnxt_en: 2 bug fixes
@ 2021-08-15 20:15 Michael Chan
  2021-08-16 10:40 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2021-08-15 20:15 UTC (permalink / raw)
  To: davem; +Cc: netdev, kuba, gospo

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

The first one disables aRFS/NTUPLE on an older broken firmware version.
The second one adds missing memory barriers related to completion ring
handling.

Michael Chan (2):
  bnxt_en: Disable aRFS if running on 212 firmware
  bnxt_en: Add missing DMA memory barriers

 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

-- 
2.18.1


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4209 bytes --]

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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes
  2021-08-15 20:15 Michael Chan
@ 2021-08-16 10:40 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 20+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-08-16 10:40 UTC (permalink / raw)
  To: Michael Chan; +Cc: davem, netdev, kuba, gospo

Hello:

This series was applied to netdev/net.git (refs/heads/master):

On Sun, 15 Aug 2021 16:15:35 -0400 you wrote:
> The first one disables aRFS/NTUPLE on an older broken firmware version.
> The second one adds missing memory barriers related to completion ring
> handling.
> 
> Michael Chan (2):
>   bnxt_en: Disable aRFS if running on 212 firmware
>   bnxt_en: Add missing DMA memory barriers
> 
> [...]

Here is the summary with links:
  - [net,1/2] bnxt_en: Disable aRFS if running on 212 firmware
    https://git.kernel.org/netdev/net/c/976e52b718c3
  - [net,2/2] bnxt_en: Add missing DMA memory barriers
    https://git.kernel.org/netdev/net/c/828affc27ed4

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* [PATCH net 0/2] bnxt_en: 2 bug fixes
@ 2023-03-04  2:43 Michael Chan
  2023-03-06 21:30 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2023-03-04  2:43 UTC (permalink / raw)
  To: davem; +Cc: netdev, kuba, edumazet, pabeni, gospo

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

This series fixes 2 issues:

1. A potential order-5 memory allocation failure during open.
2. Double memory free bug during shutdown.

Michael Chan (1):
  bnxt_en: Avoid order-5 memory allocation for TPA data

Selvin Xavier (1):
  bnxt_en: Fix the double free during device removal

 drivers/net/ethernet/broadcom/bnxt/bnxt.c     | 25 +++++++++----------
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c |  2 ++
 2 files changed, 14 insertions(+), 13 deletions(-)

-- 
2.32.0


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4209 bytes --]

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

* Re: [PATCH net 0/2] bnxt_en: 2 bug fixes
  2023-03-04  2:43 [PATCH net 0/2] bnxt_en: 2 bug fixes Michael Chan
@ 2023-03-06 21:30 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 20+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-03-06 21:30 UTC (permalink / raw)
  To: Michael Chan; +Cc: davem, netdev, kuba, edumazet, pabeni, gospo

Hello:

This series was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:

On Fri,  3 Mar 2023 18:43:56 -0800 you wrote:
> This series fixes 2 issues:
> 
> 1. A potential order-5 memory allocation failure during open.
> 2. Double memory free bug during shutdown.
> 
> Michael Chan (1):
>   bnxt_en: Avoid order-5 memory allocation for TPA data
> 
> [...]

Here is the summary with links:
  - [net,1/2] bnxt_en: Avoid order-5 memory allocation for TPA data
    https://git.kernel.org/netdev/net/c/accd7e23693a
  - [net,2/2] bnxt_en: Fix the double free during device removal
    https://git.kernel.org/netdev/net/c/89b59a84cb16

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* [PATCH net 0/2] bnxt_en: 2 Bug fixes
@ 2025-01-04  4:38 Michael Chan
  2025-01-07  0:50 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 20+ messages in thread
From: Michael Chan @ 2025-01-04  4:38 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, kuba, pabeni, andrew+netdev, pavan.chebbi,
	andrew.gospodarek

The first patch fixes a potential memory leak when sending a FW
message for the RoCE driver.  The second patch fixes the potential
issue of DIM modifying the coalescing parameters of a ring that has
been freed.

Kalesh AP (1):
  bnxt_en: Fix possible memory leak when hwrm_req_replace fails

Michael Chan (1):
  bnxt_en: Fix DIM shutdown

 drivers/net/ethernet/broadcom/bnxt/bnxt.c     | 38 ++++++++++++++++---
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c |  3 +-
 2 files changed, 35 insertions(+), 6 deletions(-)

-- 
2.30.1


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

* Re: [PATCH net 0/2] bnxt_en: 2 Bug fixes
  2025-01-04  4:38 [PATCH net 0/2] bnxt_en: 2 Bug fixes Michael Chan
@ 2025-01-07  0:50 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 20+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-01-07  0:50 UTC (permalink / raw)
  To: Michael Chan
  Cc: davem, netdev, edumazet, kuba, pabeni, andrew+netdev,
	pavan.chebbi, andrew.gospodarek

Hello:

This series was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Fri,  3 Jan 2025 20:38:46 -0800 you wrote:
> The first patch fixes a potential memory leak when sending a FW
> message for the RoCE driver.  The second patch fixes the potential
> issue of DIM modifying the coalescing parameters of a ring that has
> been freed.
> 
> Kalesh AP (1):
>   bnxt_en: Fix possible memory leak when hwrm_req_replace fails
> 
> [...]

Here is the summary with links:
  - [net,1/2] bnxt_en: Fix possible memory leak when hwrm_req_replace fails
    https://git.kernel.org/netdev/net/c/c8dafb0e4398
  - [net,2/2] bnxt_en: Fix DIM shutdown
    https://git.kernel.org/netdev/net/c/40452969a506

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2025-01-07  0:50 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-11  5:11 [PATCH net 0/2] bnxt_en: 2 bug fixes Michael Chan
2016-11-11  5:11 ` [PATCH net 1/2] bnxt_en: Fix ring arithmetic in bnxt_setup_tc() Michael Chan
2016-11-11  5:11 ` [PATCH net 2/2] bnxt_en: Fix VF virtual link state Michael Chan
2016-11-13 17:37 ` [PATCH net 0/2] bnxt_en: 2 bug fixes David Miller
  -- strict thread matches above, loose matches on Subject: below --
2025-01-04  4:38 [PATCH net 0/2] bnxt_en: 2 Bug fixes Michael Chan
2025-01-07  0:50 ` patchwork-bot+netdevbpf
2023-03-04  2:43 [PATCH net 0/2] bnxt_en: 2 bug fixes Michael Chan
2023-03-06 21:30 ` patchwork-bot+netdevbpf
2021-08-15 20:15 Michael Chan
2021-08-16 10:40 ` patchwork-bot+netdevbpf
2021-05-15  7:25 Michael Chan
2021-05-17 21:10 ` patchwork-bot+netdevbpf
2021-02-11  7:24 Michael Chan
2021-02-11 22:50 ` patchwork-bot+netdevbpf
2020-03-02  3:07 Michael Chan
2020-03-02  3:17 ` David Miller
2019-04-08 21:39 Michael Chan
2019-04-08 23:39 ` David Miller
2016-05-04 20:56 Michael Chan
2016-05-04 21:12 ` David Miller

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