interconnect: qcom: sdm845: Walk the list safely on node removal
[linux/fpc-iii.git] / scripts / coccinelle / misc / irqf_oneshot.cocci
blob7b48287b3dc13a2988bb2f86506d0e2efd9e2f01
1 // SPDX-License-Identifier: GPL-2.0
2 /// Since commit 1c6c69525b40 ("genirq: Reject bogus threaded irq requests")
3 /// threaded IRQs without a primary handler need to be requested with
4 /// IRQF_ONESHOT, otherwise the request will fail.
5 ///
6 /// So pass the IRQF_ONESHOT flag in this case.
7 ///
8 //
9 // Confidence: Moderate
10 // Comments:
11 // Options: --no-includes
13 virtual patch
14 virtual context
15 virtual org
16 virtual report
18 @r1@
19 expression dev, irq, thread_fn;
20 position p;
23 request_threaded_irq@p(irq, NULL, thread_fn,
25 IRQF_ONESHOT | ...
27 IRQF_ONESHOT
29 , ...)
31 devm_request_threaded_irq@p(dev, irq, NULL, thread_fn,
33 IRQF_ONESHOT | ...
35 IRQF_ONESHOT
37 , ...)
40 @r2@
41 expression dev, irq, thread_fn, flags, e;
42 position p != r1.p;
45 flags = IRQF_ONESHOT | ...
47 flags |= IRQF_ONESHOT | ...
49 ... when != flags = e
51 request_threaded_irq@p(irq, NULL, thread_fn, flags, ...);
53 devm_request_threaded_irq@p(dev, irq, NULL, thread_fn, flags, ...);
56 @depends on patch@
57 expression dev, irq, thread_fn, flags;
58 position p != {r1.p,r2.p};
61 request_threaded_irq@p(irq, NULL, thread_fn,
64 +IRQF_ONESHOT
66 -flags
67 +flags | IRQF_ONESHOT
69 , ...)
71 devm_request_threaded_irq@p(dev, irq, NULL, thread_fn,
74 +IRQF_ONESHOT
76 -flags
77 +flags | IRQF_ONESHOT
79 , ...)
82 @depends on context@
83 expression dev, irq;
84 position p != {r1.p,r2.p};
87 *request_threaded_irq@p(irq, NULL, ...)
89 *devm_request_threaded_irq@p(dev, irq, NULL, ...)
93 @match depends on report || org@
94 expression dev, irq;
95 position p != {r1.p,r2.p};
98 request_threaded_irq@p(irq, NULL, ...)
100 devm_request_threaded_irq@p(dev, irq, NULL, ...)
103 @script:python depends on org@
104 p << match.p;
106 msg = "ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT"
107 coccilib.org.print_todo(p[0],msg)
109 @script:python depends on report@
110 p << match.p;
112 msg = "ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT"
113 coccilib.report.print_report(p[0],msg)