x86/mm/pat: Don't report PAT on CPUs that don't support it
[linux/fpc-iii.git] / scripts / coccinelle / misc / irqf_oneshot.cocci
blobf698d6d0f5d7b06c765eda7a9d8e0ae4d594a678
1 /// Since commit 1c6c69525b40 ("genirq: Reject bogus threaded irq requests")
2 /// threaded IRQs without a primary handler need to be requested with
3 /// IRQF_ONESHOT, otherwise the request will fail.
4 ///
5 /// So pass the IRQF_ONESHOT flag in this case.
6 ///
7 //
8 // Confidence: Moderate
9 // Comments:
10 // Options: --no-includes
12 virtual patch
13 virtual context
14 virtual org
15 virtual report
17 @r1@
18 expression dev, irq, thread_fn;
19 position p;
22 request_threaded_irq@p(irq, NULL, thread_fn,
24 IRQF_ONESHOT | ...
26 IRQF_ONESHOT
28 , ...)
30 devm_request_threaded_irq@p(dev, irq, NULL, thread_fn,
32 IRQF_ONESHOT | ...
34 IRQF_ONESHOT
36 , ...)
39 @r2@
40 expression dev, irq, thread_fn, flags, e;
41 position p != r1.p;
44 flags = IRQF_ONESHOT | ...
46 flags |= IRQF_ONESHOT | ...
48 ... when != flags = e
50 request_threaded_irq@p(irq, NULL, thread_fn, flags, ...);
52 devm_request_threaded_irq@p(dev, irq, NULL, thread_fn, flags, ...);
55 @depends on patch@
56 expression dev, irq, thread_fn, flags;
57 position p != {r1.p,r2.p};
60 request_threaded_irq@p(irq, NULL, thread_fn,
63 +IRQF_ONESHOT
65 -flags
66 +flags | IRQF_ONESHOT
68 , ...)
70 devm_request_threaded_irq@p(dev, irq, NULL, thread_fn,
73 +IRQF_ONESHOT
75 -flags
76 +flags | IRQF_ONESHOT
78 , ...)
81 @depends on context@
82 expression dev, irq;
83 position p != {r1.p,r2.p};
86 *request_threaded_irq@p(irq, NULL, ...)
88 *devm_request_threaded_irq@p(dev, irq, NULL, ...)
92 @match depends on report || org@
93 expression dev, irq;
94 position p != {r1.p,r2.p};
97 request_threaded_irq@p(irq, NULL, ...)
99 devm_request_threaded_irq@p(dev, irq, NULL, ...)
102 @script:python depends on org@
103 p << match.p;
105 msg = "ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT"
106 coccilib.org.print_todo(p[0],msg)
108 @script:python depends on report@
109 p << match.p;
111 msg = "ERROR: Threaded IRQ with no primary handler requested without IRQF_ONESHOT"
112 coccilib.report.print_report(p[0],msg)