* [PATCH net-next v3] net: davicom: Propagate wakeup IRQ errors
@ 2026-09-09 4:57 phucduc.bui
2026-09-10 10:55 ` Simon Horman
2026-09-11 1:10 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: phucduc.bui @ 2026-09-09 4:57 UTC (permalink / raw)
To: Andrew Lunn, davem, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: linux-kernel, netdev, bui duc phuc
From: bui duc phuc <phucduc.bui@gmail.com>
The wakeup IRQ is optional, but errors from platform_get_irq_optional()
are currently ignored. Propagate errors from the IRQ lookup, except
-ENXIO which indicates that the optional IRQ is not available.
Found by manual code inspection.
Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
---
Changes in v2:
- Add a Fixes: tag.
Changes in v3:
- Remove the goto statements for the error paths in request_irq()
and irq_set_irq_wake().
- Drop the Fixes: tag as this patch is intended for net-next.
drivers/net/ethernet/davicom/dm9000.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/davicom/dm9000.c b/drivers/net/ethernet/davicom/dm9000.c
index b87eaf0c250c..e294b365eb06 100644
--- a/drivers/net/ethernet/davicom/dm9000.c
+++ b/drivers/net/ethernet/davicom/dm9000.c
@@ -1511,7 +1511,11 @@ dm9000_probe(struct platform_device *pdev)
}
db->irq_wake = platform_get_irq_optional(pdev, 1);
- if (db->irq_wake >= 0) {
+ if (db->irq_wake < 0 && db->irq_wake != -ENXIO) {
+ ret = db->irq_wake;
+ goto out;
+ }
+ if (db->irq_wake > 0) {
dev_dbg(db->dev, "wakeup irq %d\n", db->irq_wake);
ret = request_irq(db->irq_wake, dm9000_wol_interrupt,
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH net-next v3] net: davicom: Propagate wakeup IRQ errors
2026-09-09 4:57 [PATCH net-next v3] net: davicom: Propagate wakeup IRQ errors phucduc.bui
@ 2026-09-10 10:55 ` Simon Horman
2026-09-11 1:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2026-09-10 10:55 UTC (permalink / raw)
To: phucduc.bui
Cc: Andrew Lunn, davem, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
linux-kernel, netdev
On Wed, Sep 09, 2026 at 11:57:37AM +0700, phucduc.bui@gmail.com wrote:
> From: bui duc phuc <phucduc.bui@gmail.com>
>
> The wakeup IRQ is optional, but errors from platform_get_irq_optional()
> are currently ignored. Propagate errors from the IRQ lookup, except
> -ENXIO which indicates that the optional IRQ is not available.
>
> Found by manual code inspection.
>
> Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
> ---
>
> Changes in v2:
> - Add a Fixes: tag.
> Changes in v3:
> - Remove the goto statements for the error paths in request_irq()
> and irq_set_irq_wake().
> - Drop the Fixes: tag as this patch is intended for net-next.
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v3] net: davicom: Propagate wakeup IRQ errors
2026-09-09 4:57 [PATCH net-next v3] net: davicom: Propagate wakeup IRQ errors phucduc.bui
2026-09-10 10:55 ` Simon Horman
@ 2026-09-11 1:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-11 1:10 UTC (permalink / raw)
To: Bui Duc Phuc
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, linux-kernel, netdev
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 9 Sep 2026 11:57:37 +0700 you wrote:
> From: bui duc phuc <phucduc.bui@gmail.com>
>
> The wakeup IRQ is optional, but errors from platform_get_irq_optional()
> are currently ignored. Propagate errors from the IRQ lookup, except
> -ENXIO which indicates that the optional IRQ is not available.
>
> Found by manual code inspection.
>
> [...]
Here is the summary with links:
- [net-next,v3] net: davicom: Propagate wakeup IRQ errors
https://git.kernel.org/netdev/net-next/c/75a73afd0b32
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-11 1:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-09 4:57 [PATCH net-next v3] net: davicom: Propagate wakeup IRQ errors phucduc.bui
2026-09-10 10:55 ` Simon Horman
2026-09-11 1: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®