public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Justin Chen <justin.chen@broadcom.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org, pabeni@redhat.com, edumazet@google.com,
	davem@davemloft.net, andrew+netdev@lunn.ch,
	bcm-kernel-feedback-list@broadcom.com,
	florian.fainelli@broadcom.com, opendmb@gmail.com, nb@tipi-net.de
Subject: Re: [PATCH net 1/2] net: bcmgenet: fix leaking free_bds
Date: Tue, 31 Mar 2026 16:11:51 -0700	[thread overview]
Message-ID: <8c187325-16ff-4944-bf27-b340ac7f92f9@broadcom.com> (raw)
In-Reply-To: <20260327211127.7e9317b3@kernel.org>



On 3/27/26 9:11 PM, Jakub Kicinski wrote:
> On Thu, 26 Mar 2026 11:45:28 -0700 justin.chen@broadcom.com wrote:
>> From: Justin Chen <justin.chen@broadcom.com>
>>
>> While reclaiming the tx queue we fast forward the write pointer to
>> drop any data in flight. These dropped frames are not added back
>> to the pool of free bds. We also need to tell the netdev that we
>> are dropping said data.
> 
>> diff --git a/drivers/net/ethernet/broadcom/genet/bcmgenet.c b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
>> index 482a31e7b72b..3e1fc3bb8297 100644
>> --- a/drivers/net/ethernet/broadcom/genet/bcmgenet.c
>> +++ b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
>> @@ -1985,6 +1985,7 @@ static unsigned int bcmgenet_tx_reclaim(struct net_device *dev,
>>   		drop = (ring->prod_index - ring->c_index) & DMA_C_INDEX_MASK;
>>   		released += drop;
>>   		ring->prod_index = ring->c_index & DMA_C_INDEX_MASK;
>> +		ring->free_bds += drop;
>>   		while (drop--) {
>>   			cb_ptr = bcmgenet_put_txcb(priv, ring);
>>   			skb = cb_ptr->skb;
>> @@ -1996,6 +1997,7 @@ static unsigned int bcmgenet_tx_reclaim(struct net_device *dev,
>>   		}
>>   		if (skb)
>>   			dev_consume_skb_any(skb);
>> +		netdev_tx_reset_queue(netdev_get_tx_queue(dev, ring->index));
>>   		bcmgenet_tdma_ring_writel(priv, ring->index,
>>   					  ring->prod_index, TDMA_PROD_INDEX);
>>   		wr_ptr = ring->write_ptr * WORDS_PER_BD(priv);
> 
> AI says you may be off by one here?
> 
>    Does this loop miss the oldest dropped descriptor and leak its SKB and
>    DMA mapping?
> 
>    Since bcmgenet_get_txcb() increments write_ptr after a transmission,
>    write_ptr always points to the next available empty slot.
> 
>    When this loops backwards drop times, the first iteration retrieves that
>    empty descriptor (where cb->skb is NULL), and the loop will finish before
>    reaching the oldest uncompleted descriptor at c_index.
> 
>    When write_ptr is rolled back to c_index, won't subsequent transmissions
>    overwrite the descriptor at c_index and permanently leak the unmapped DMA
>    buffer and SKB memory?

Ack. Looks like this is another bug. Yes, it causes an off-by-one in 
this case, but also in the xmit error path case. So I think this 
warrants another commit. Will submit v3 with this as another bug fix.

Thanks,
Justin

  reply	other threads:[~2026-03-31 23:11 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-26 18:45 [PATCH 0/2 net] net: bcmgenet: fix lock up when queues time out justin.chen
2026-03-26 18:45 ` [PATCH net 1/2] net: bcmgenet: fix leaking free_bds justin.chen
2026-03-28  4:11   ` Jakub Kicinski
2026-03-31 23:11     ` Justin Chen [this message]
2026-03-26 18:45 ` [PATCH net 2/2] net: bcmgenet: fix racing timeout handler justin.chen
2026-03-28  4:13   ` Jakub Kicinski
2026-03-31 23:15     ` Justin Chen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8c187325-16ff-4944-bf27-b340ac7f92f9@broadcom.com \
    --to=justin.chen@broadcom.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=florian.fainelli@broadcom.com \
    --cc=kuba@kernel.org \
    --cc=nb@tipi-net.de \
    --cc=netdev@vger.kernel.org \
    --cc=opendmb@gmail.com \
    --cc=pabeni@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox