mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH net] net: ethernet: rtsn: fix potential memory leak in rtsn_start_xmit()
@ 2024-10-14 14:42 Wang Hai
  2024-10-14 20:50 ` Niklas Söderlund
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Wang Hai @ 2024-10-14 14:42 UTC (permalink / raw)
  To: niklas.soderlund, davem, edumazet, kuba, pabeni, andrew, zhangxiaoxu5
  Cc: netdev, linux-renesas-soc, linux-kernel, wanghai38

The rtsn_start_xmit() returns NETDEV_TX_OK without freeing skb
in case of skb->len being too long, add dev_kfree_skb_any() to fix it.

Fixes: b0d3969d2b4d ("net: ethernet: rtsn: Add support for Renesas Ethernet-TSN")
Signed-off-by: Wang Hai <wanghai38@huawei.com>
---
 drivers/net/ethernet/renesas/rtsn.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/renesas/rtsn.c b/drivers/net/ethernet/renesas/rtsn.c
index f9f63c61d792..6b3f7fca8d15 100644
--- a/drivers/net/ethernet/renesas/rtsn.c
+++ b/drivers/net/ethernet/renesas/rtsn.c
@@ -1057,6 +1057,7 @@ static netdev_tx_t rtsn_start_xmit(struct sk_buff *skb, struct net_device *ndev)
 	if (skb->len >= TX_DS) {
 		priv->stats.tx_dropped++;
 		priv->stats.tx_errors++;
+		dev_kfree_skb_any(skb);
 		goto out;
 	}
 
-- 
2.17.1


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

end of thread, other threads:[~2024-10-15 18:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-14 14:42 [PATCH net] net: ethernet: rtsn: fix potential memory leak in rtsn_start_xmit() Wang Hai
2024-10-14 20:50 ` Niklas Söderlund
2024-10-15  6:58 ` Geert Uytterhoeven
2024-10-15  7:47   ` Eric Dumazet
2024-10-15  7:49 ` Eric Dumazet
2024-10-15 18:10 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®