* [PATCH net-next v2] net: mvpp2: simplify IRQ validity check
@ 2026-09-03 7:57 phucduc.bui
2026-09-08 8:53 ` Simon Horman
2026-09-08 13:20 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: phucduc.bui @ 2026-09-03 7:57 UTC (permalink / raw)
To: Marcin Wojtas, Russell King, Paolo Abeni, Simon Horman
Cc: Andrew Lunn, davem, Eric Dumazet, Jakub Kicinski,
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 condition also checks for negative values, even though
irq_of_parse_and_map() does not return negative error codes.
Check only for a zero return value to match the semantics of
irq_of_parse_and_map().
Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
---
Link v1:
https://lore.kernel.org/all/20260824100758.31622-1-phucduc.bui@gmail.com/
Changes in v2:
- Drop the Fixes tag and rework the commit message to describe this
as a cleanup.
- Add net-next to the --subject-prefix.
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 [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v2] net: mvpp2: simplify IRQ validity check
2026-09-03 7:57 [PATCH net-next v2] net: mvpp2: simplify IRQ validity check phucduc.bui
@ 2026-09-08 8:53 ` Simon Horman
2026-09-08 13:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2026-09-08 8:53 UTC (permalink / raw)
To: phucduc.bui
Cc: Marcin Wojtas, Russell King, Paolo Abeni, Andrew Lunn, davem,
Eric Dumazet, Jakub Kicinski, Thomas Petazzoni, linux-kernel,
netdev
On Thu, Sep 03, 2026 at 02:57:53PM +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 condition also checks for negative values, even though
> irq_of_parse_and_map() does not return negative error codes.
>
> Check only for a zero return value to match the semantics of
> irq_of_parse_and_map().
>
> Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
> ---
>
> Link v1:
> https://lore.kernel.org/all/20260824100758.31622-1-phucduc.bui@gmail.com/
>
> Changes in v2:
> - Drop the Fixes tag and rework the commit message to describe this
> as a cleanup.
> - Add net-next to the --subject-prefix.
Thanks for the updates.
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v2] net: mvpp2: simplify IRQ validity check
2026-09-03 7:57 [PATCH net-next v2] net: mvpp2: simplify IRQ validity check phucduc.bui
2026-09-08 8:53 ` Simon Horman
@ 2026-09-08 13:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-08 13:20 UTC (permalink / raw)
To: Bui Duc Phuc
Cc: marcin.s.wojtas, linux, pabeni, horms, andrew+netdev, davem,
edumazet, kuba, thomas.petazzoni, linux-kernel, netdev
Hello:
This patch was applied to netdev/net-next.git (main)
by Paolo Abeni <pabeni@redhat.com>:
On Thu, 3 Sep 2026 14:57:53 +0700 you 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 condition also checks for negative values, even though
> irq_of_parse_and_map() does not return negative error codes.
>
> Check only for a zero return value to match the semantics of
> irq_of_parse_and_map().
>
> [...]
Here is the summary with links:
- [net-next,v2] net: mvpp2: simplify IRQ validity check
https://git.kernel.org/netdev/net-next/c/bf6f89ccd974
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-08 13:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-03 7:57 [PATCH net-next v2] net: mvpp2: simplify IRQ validity check phucduc.bui
2026-09-08 8:53 ` Simon Horman
2026-09-08 13:20 ` 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®