* [PATCH] net: cadence: macb: Fix a possible deadlock in macb_halt_tx.
@ 2025-05-07 10:12 Mathieu Othacehe
2025-05-08 10:41 ` Paolo Abeni
0 siblings, 1 reply; 2+ messages in thread
From: Mathieu Othacehe @ 2025-05-07 10:12 UTC (permalink / raw)
To: Nicolas Ferre
Cc: Claudiu Beznea, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, netdev, linux-kernel, anton.reding,
Mathieu Othacehe
There is a situation where after THALT is set high, TGO stays high as
well. Because jiffies are never updated, as we are in a context with
interrupts disabled, we never exit that loop and have a deadlock.
That deadlock was noticed on a sama5d4 device that stayed locked for days.
Use retries instead of jiffies so that the timeout really works and we do
not have a deadlock anymore.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
drivers/net/ethernet/cadence/macb_main.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
index 1fe8ec37491b1..ffcf569c14f6a 100644
--- a/drivers/net/ethernet/cadence/macb_main.c
+++ b/drivers/net/ethernet/cadence/macb_main.c
@@ -997,20 +997,19 @@ static void macb_update_stats(struct macb *bp)
static int macb_halt_tx(struct macb *bp)
{
- unsigned long halt_time, timeout;
- u32 status;
+ unsigned int delay_us = 250;
+ unsigned int retries = MACB_HALT_TIMEOUT / delay_us;
+ u32 status;
macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
- timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
do {
- halt_time = jiffies;
status = macb_readl(bp, TSR);
if (!(status & MACB_BIT(TGO)))
return 0;
- udelay(250);
- } while (time_before(halt_time, timeout));
+ udelay(delay_us);
+ } while (retries-- > 0);
return -ETIMEDOUT;
}
--
2.49.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] net: cadence: macb: Fix a possible deadlock in macb_halt_tx.
2025-05-07 10:12 [PATCH] net: cadence: macb: Fix a possible deadlock in macb_halt_tx Mathieu Othacehe
@ 2025-05-08 10:41 ` Paolo Abeni
0 siblings, 0 replies; 2+ messages in thread
From: Paolo Abeni @ 2025-05-08 10:41 UTC (permalink / raw)
To: Mathieu Othacehe, Nicolas Ferre
Cc: Claudiu Beznea, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, netdev, linux-kernel, anton.reding
On 5/7/25 12:12 PM, Mathieu Othacehe wrote:
> There is a situation where after THALT is set high, TGO stays high as
> well. Because jiffies are never updated, as we are in a context with
> interrupts disabled, we never exit that loop and have a deadlock.
>
> That deadlock was noticed on a sama5d4 device that stayed locked for days.
>
> Use retries instead of jiffies so that the timeout really works and we do
> not have a deadlock anymore.
>
> Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This looks like a fix that should target the net tree and include a
fixes tag, see Documentation/process/maintainer-netdev.rst
> ---
> drivers/net/ethernet/cadence/macb_main.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
> index 1fe8ec37491b1..ffcf569c14f6a 100644
> --- a/drivers/net/ethernet/cadence/macb_main.c
> +++ b/drivers/net/ethernet/cadence/macb_main.c
> @@ -997,20 +997,19 @@ static void macb_update_stats(struct macb *bp)
>
> static int macb_halt_tx(struct macb *bp)
> {
> - unsigned long halt_time, timeout;
> - u32 status;
> + unsigned int delay_us = 250;
> + unsigned int retries = MACB_HALT_TIMEOUT / delay_us;
> + u32 status;
>
> macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
>
> - timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
> do {
> - halt_time = jiffies;
> status = macb_readl(bp, TSR);
> if (!(status & MACB_BIT(TGO)))
> return 0;
>
> - udelay(250);
> - } while (time_before(halt_time, timeout));
> + udelay(delay_us);
> + } while (retries-- > 0);
I think it would be better to use read_poll_timeout_atomic() instead of
sort-of open-codying it.
Thanks,
Paolo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-05-08 10:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-07 10:12 [PATCH] net: cadence: macb: Fix a possible deadlock in macb_halt_tx Mathieu Othacehe
2025-05-08 10:41 ` Paolo Abeni
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.