* [PATCH net] net: mvpp2: Fix IRQ error handling
@ 2026-08-24 10:07 phucduc.bui
2026-08-26 12:40 ` Simon Horman
0 siblings, 1 reply; 3+ messages in thread
From: phucduc.bui @ 2026-08-24 10:07 UTC (permalink / raw)
To: Marcin Wojtas, Russell King
Cc: Andrew Lunn, davem, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Thomas Petazzoni, linux-kernel, netdev, bui duc phuc
From: bui duc phuc <phucduc.bui@gmail.com>
irq_of_parse_and_map() returns 0 when parsing or mapping an IRQ fails.
The current code does not handle this return value correctly.
Check for a zero return value and return -EINVAL when the IRQ lookup
fails.
Fixes: 591f4cfab38a ("net: mvpp2: introduce queue_vector concept")
Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
---
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
index ccc24a1301f2..1c50174c9f1e 100644
--- a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
+++ b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
@@ -5874,7 +5874,7 @@ static int mvpp2_simple_queue_vectors_init(struct mvpp2_port *port,
v->sw_thread_mask = *cpumask_bits(cpu_online_mask);
v->port = port;
v->irq = irq_of_parse_and_map(port_node, 0);
- if (v->irq <= 0)
+ if (!v->irq)
return -EINVAL;
netif_napi_add(port->dev, &v->napi, mvpp2_poll);
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net] net: mvpp2: Fix IRQ error handling
2026-08-24 10:07 [PATCH net] net: mvpp2: Fix IRQ error handling phucduc.bui
@ 2026-08-26 12:40 ` Simon Horman
2026-08-27 4:37 ` Bui Duc Phuc
0 siblings, 1 reply; 3+ messages in thread
From: Simon Horman @ 2026-08-26 12:40 UTC (permalink / raw)
To: phucduc.bui
Cc: Marcin Wojtas, Russell King, Andrew Lunn, davem, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Thomas Petazzoni, linux-kernel,
netdev
On Mon, Aug 24, 2026 at 05:07:58PM +0700, phucduc.bui@gmail.com wrote:
> From: bui duc phuc <phucduc.bui@gmail.com>
>
> irq_of_parse_and_map() returns 0 when parsing or mapping an IRQ fails.
> The current code does not handle this return value correctly.
>
> Check for a zero return value and return -EINVAL when the IRQ lookup
> fails.
>
> Fixes: 591f4cfab38a ("net: mvpp2: introduce queue_vector concept")
> Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
> ---
> drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
> index ccc24a1301f2..1c50174c9f1e 100644
> --- a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
> +++ b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
> @@ -5874,7 +5874,7 @@ static int mvpp2_simple_queue_vectors_init(struct mvpp2_port *port,
> v->sw_thread_mask = *cpumask_bits(cpu_online_mask);
> v->port = port;
> v->irq = irq_of_parse_and_map(port_node, 0);
> - if (v->irq <= 0)
> + if (!v->irq)
> return -EINVAL;
> netif_napi_add(port->dev, &v->napi, mvpp2_poll);
Hi,
Thanks for your patch.
As pointed out by an AI-generated review [1], although the current
condition is unnecessarily wide, it does correctly catch the v->irq == 0
case.
So this is a clean-up rather than a bug fix.
And should be for net-next, without a Fixes tag, rather than net.
Please also note that net-next is closed for the merge window.
I expect it to reopen in early September. Please don't post
patches for net-next until it reopens.
[1] https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260824100758.31622-1-phucduc.bui%40gmail.com
--
pw-bot: changes-requested
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net] net: mvpp2: Fix IRQ error handling
2026-08-26 12:40 ` Simon Horman
@ 2026-08-27 4:37 ` Bui Duc Phuc
0 siblings, 0 replies; 3+ messages in thread
From: Bui Duc Phuc @ 2026-08-27 4:37 UTC (permalink / raw)
To: Simon Horman
Cc: Marcin Wojtas, Russell King, Andrew Lunn, davem, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Thomas Petazzoni, linux-kernel,
netdev
Hi Simon,
Thanks for clarifying.
>
> As pointed out by an AI-generated review [1], although the current
> condition is unnecessarily wide, it does correctly catch the v->irq == 0
> case.
>
> So this is a clean-up rather than a bug fix.
> And should be for net-next, without a Fixes tag, rather than net.
>
> Please also note that net-next is closed for the merge window.
> I expect it to reopen in early September. Please don't post
> patches for net-next until it reopens.
>
> [1] https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260824100758.31622-1-phucduc.bui%40gmail.com
>
I'll resend the patch to net-next after August 31.
Best regards,
Phuc
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-27 4:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-24 10:07 [PATCH net] net: mvpp2: Fix IRQ error handling phucduc.bui
2026-08-26 12:40 ` Simon Horman
2026-08-27 4:37 ` Bui Duc Phuc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox