Message ID | 20221027112430.8696-1-zajec5@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | ef3556ee16c68735ec69bd08df41d1cd83b14ad3 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: broadcom: bcm4908_enet: update TX stats after actual transmission | expand |
On 10/27/2022 4:24 AM, Rafał Miłecki wrote: > From: Rafał Miłecki <rafal@milecki.pl> > > Queueing packets doesn't guarantee their transmission. Update TX stats > after hardware confirms consuming submitted data. > > This also fixes a possible race and NULL dereference. > bcm4908_enet_start_xmit() could try to access skb after freeing it in > the bcm4908_enet_poll_tx(). > > Reported-by: Florian Fainelli <f.fainelli@gmail.com> > Signed-off-by: Rafał Miłecki <rafal@milecki.pl> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> To me this is 'net' material since it fixes a potential issue, but let's see what the netdev maintainers prefer.
On 27.10.2022 18:12, Florian Fainelli wrote: > On 10/27/2022 4:24 AM, Rafał Miłecki wrote: >> From: Rafał Miłecki <rafal@milecki.pl> >> >> Queueing packets doesn't guarantee their transmission. Update TX stats >> after hardware confirms consuming submitted data. >> >> This also fixes a possible race and NULL dereference. >> bcm4908_enet_start_xmit() could try to access skb after freeing it in >> the bcm4908_enet_poll_tx(). >> >> Reported-by: Florian Fainelli <f.fainelli@gmail.com> >> Signed-off-by: Rafał Miłecki <rafal@milecki.pl> > > Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> > > To me this is 'net' material since it fixes a potential issue, but let's see what the netdev maintainers prefer. Thanks. In that case it may be also worth adding: Fixes: 4feffeadbcb2e ("net: broadcom: bcm4908enet: add BCM4908 controller driver")
Hello: This patch was applied to netdev/net.git (master) by Jakub Kicinski <kuba@kernel.org>: On Thu, 27 Oct 2022 13:24:30 +0200 you wrote: > From: Rafał Miłecki <rafal@milecki.pl> > > Queueing packets doesn't guarantee their transmission. Update TX stats > after hardware confirms consuming submitted data. > > This also fixes a possible race and NULL dereference. > bcm4908_enet_start_xmit() could try to access skb after freeing it in > the bcm4908_enet_poll_tx(). > > [...] Here is the summary with links: - net: broadcom: bcm4908_enet: update TX stats after actual transmission https://git.kernel.org/netdev/net/c/ef3556ee16c6 You are awesome, thank you!
diff --git a/drivers/net/ethernet/broadcom/bcm4908_enet.c b/drivers/net/ethernet/broadcom/bcm4908_enet.c index ca8c86ee44c0..b0aac0bcb060 100644 --- a/drivers/net/ethernet/broadcom/bcm4908_enet.c +++ b/drivers/net/ethernet/broadcom/bcm4908_enet.c @@ -571,8 +571,6 @@ static netdev_tx_t bcm4908_enet_start_xmit(struct sk_buff *skb, struct net_devic if (++ring->write_idx == ring->length - 1) ring->write_idx = 0; - enet->netdev->stats.tx_bytes += skb->len; - enet->netdev->stats.tx_packets++; return NETDEV_TX_OK; } @@ -654,6 +652,7 @@ static int bcm4908_enet_poll_tx(struct napi_struct *napi, int weight) struct bcm4908_enet_dma_ring_bd *buf_desc; struct bcm4908_enet_dma_ring_slot *slot; struct device *dev = enet->dev; + unsigned int bytes = 0; int handled = 0; while (handled < weight && tx_ring->read_idx != tx_ring->write_idx) { @@ -664,12 +663,17 @@ static int bcm4908_enet_poll_tx(struct napi_struct *napi, int weight) dma_unmap_single(dev, slot->dma_addr, slot->len, DMA_TO_DEVICE); dev_kfree_skb(slot->skb); - if (++tx_ring->read_idx == tx_ring->length) - tx_ring->read_idx = 0; handled++; + bytes += slot->len; + + if (++tx_ring->read_idx == tx_ring->length) + tx_ring->read_idx = 0; } + enet->netdev->stats.tx_packets += handled; + enet->netdev->stats.tx_bytes += bytes; + if (handled < weight) { napi_complete_done(napi, handled); bcm4908_enet_dma_ring_intrs_on(enet, tx_ring);