Thread (38 messages) 38 messages, 6 authors, 2021-03-23

RE: [kbuild-all] Re: [PATCH] wfx: fix irqf_oneshot.cocci warnings

From: Li, Philip <hidden>
Date: 2021-03-16 08:03:54
Also in: linux-devicetree, linux-mmc, lkml, netdev, oe-kbuild-all

Subject: [kbuild-all] Re: [PATCH] wfx: fix irqf_oneshot.cocci warnings

Hello,

On Monday 15 March 2021 22:09:20 CET kernel test robot wrote:
quoted
From: kernel test robot <redacted>

drivers/net/wireless/silabs/wfx/bus_sdio.c:134:8-33: ERROR: Threaded IRQ with no primary handler requested without
IRQF_ONESHOT
quoted
 Since commit 1c6c69525b40 ("genirq: Reject bogus threaded irq requests")
 threaded IRQs without a primary handler need to be requested with
 IRQF_ONESHOT, otherwise the request will fail.

 So pass the IRQF_ONESHOT flag in this case.

Generated by: scripts/coccinelle/misc/irqf_oneshot.cocci

CC: Jérôme Pouiller <jerome.pouiller@silabs.com>
Reported-by: kernel test robot <redacted>
Signed-off-by: kernel test robot <redacted>
---

url:    https://github.com/0day-ci/linux/commits/Jerome-Pouiller/wfx-get-out-from-the-staging-area/20210315-212855
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git b828324bba8f575fde487a91fec07303789dda8a

 bus_sdio.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--- a/drivers/net/wireless/silabs/wfx/bus_sdio.c
+++ b/drivers/net/wireless/silabs/wfx/bus_sdio.c
@@ -132,7 +132,8 @@ static int wfx_sdio_irq_subscribe(void *
                flags = IRQF_TRIGGER_HIGH;
        flags |= IRQF_ONESHOT;
        return devm_request_threaded_irq(&bus->func->dev, bus->of_irq, NULL,
-                                        wfx_sdio_irq_handler_ext, flags,
+                                        wfx_sdio_irq_handler_ext,
+                                        flags | IRQF_ONESHOT,
                                         "wfx", bus);
 }
Obviously, "flags" always contains IRQF_ONESHOT. So, it is a false positive.
Thanks for the feedback. Sorry about this false positive, this had been disabled
for auto report now.

--
Jérôme Pouiller

_______________________________________________
kbuild-all mailing list -- kbuild-all@lists.01.org
To unsubscribe send an email to kbuild-all-leave@lists.01.org
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help