* [PATCH] macb: Fix tx completion check
@ 2025-01-28 4:16 David Dgien via B4 Relay
2025-01-28 10:02 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: David Dgien via B4 Relay @ 2025-01-28 4:16 UTC (permalink / raw)
To: Sascha Hauer, BAREBOX; +Cc: Billy Gomez, David Dgien
From: David Dgien <dgienda125@gmail.com>
Check the send completion bit for the current packet in the descriptor
ring, instead of just the first entry in the ring.
This fixes issues when sending multiple small packets in quick
succession, such as with netconsole.
Reported-by: Billy Gomez <william.james.gomez@gmail.com>
Signed-off-by: David Dgien <dgienda125@gmail.com>
Fixes: aa2095304a ("macb: fix tx ring size")
---
drivers/net/macb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/macb.c b/drivers/net/macb.c
index 28c2fc860e37853a91488a675af3716d9f3843df..205e3169f17b2b762ba51640248a2ea96db5c582 100644
--- a/drivers/net/macb.c
+++ b/drivers/net/macb.c
@@ -132,7 +132,7 @@ static int macb_send(struct eth_device *edev, void *packet,
start = get_time_ns();
ret = -ETIMEDOUT;
do {
- ctrl = readl(&macb->tx_ring[0].ctrl);
+ ctrl = readl(&macb->tx_ring[tx_head].ctrl);
if (ctrl & MACB_BIT(TX_USED)) {
ret = 0;
break;
---
base-commit: 1a3be5bdf6329e4e691f1d39461f5157767c7e72
change-id: 20250126-fix-macb-send-3600780f5de8
Best regards,
--
David Dgien <dgienda125@gmail.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] macb: Fix tx completion check
2025-01-28 4:16 [PATCH] macb: Fix tx completion check David Dgien via B4 Relay
@ 2025-01-28 10:02 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2025-01-28 10:02 UTC (permalink / raw)
To: BAREBOX, David Dgien; +Cc: Billy Gomez
On Mon, 27 Jan 2025 23:16:18 -0500, David Dgien wrote:
> Check the send completion bit for the current packet in the descriptor
> ring, instead of just the first entry in the ring.
>
> This fixes issues when sending multiple small packets in quick
> succession, such as with netconsole.
>
>
> [...]
Applied, thanks!
[1/1] macb: Fix tx completion check
https://git.pengutronix.de/cgit/barebox/commit/?id=b661aa5ba735 (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-28 10:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-28 4:16 [PATCH] macb: Fix tx completion check David Dgien via B4 Relay
2025-01-28 10:02 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox