Coccinelle: setup_timer: improve messages from setup_timer
[linux-2.6-block.git] / scripts / coccinelle / api / setup_timer.cocci
CommitLineData
c5eda8fd
VT
1/// Use setup_timer function instead of initializing timer with the function
2/// and data fields
3// Confidence: High
4// Copyright: (C) 2016 Vaishali Thakkar, Oracle. GPLv2
5// Options: --no-includes --include-headers
6// Keywords: init_timer, setup_timer
7
8virtual patch
9virtual context
10virtual org
11virtual report
12
13@match_immediate_function_data_after_init_timer
14depends on patch && !context && !org && !report@
15expression e, func, da;
16@@
17
18-init_timer (&e);
19+setup_timer (&e, func, da);
20
21(
22-e.function = func;
23-e.data = da;
24|
25-e.data = da;
26-e.function = func;
27)
28
29@match_function_and_data_after_init_timer
30depends on patch && !context && !org && !report@
31expression e1, e2, e3, e4, e5, a, b;
32@@
33
34-init_timer (&e1);
35+setup_timer (&e1, a, b);
36
37... when != a = e2
38 when != b = e3
39(
40-e1.function = a;
41... when != b = e4
42-e1.data = b;
43|
44-e1.data = b;
45... when != a = e5
46-e1.function = a;
47)
48
49@r1 exists@
50identifier f;
51position p;
52@@
53
54f(...) { ... when any
55 init_timer@p(...)
56 ... when any
57}
58
59@r2 exists@
60identifier g != r1.f;
61struct timer_list t;
62expression e8;
63@@
64
65g(...) { ... when any
66 t.data = e8
67 ... when any
68}
69
70// It is dangerous to use setup_timer if data field is initialized
71// in another function.
72
73@script:python depends on r2@
74p << r1.p;
75@@
76
77cocci.include_match(False)
78
79@r3 depends on patch && !context && !org && !report@
80expression e6, e7, c;
81position r1.p;
82@@
83
84-init_timer@p (&e6);
85+setup_timer (&e6, c, 0UL);
86... when != c = e7
87-e6.function = c;
88
89// ----------------------------------------------------------------------------
90
91@match_immediate_function_data_after_init_timer_context
92depends on !patch && (context || org || report)@
93expression da, e, func;
94position j0, j1, j2;
95@@
96
97* init_timer@j0 (&e);
98(
99* e@j1.function = func;
100* e@j2.data = da;
101|
102* e@j1.data = da;
103* e@j2.function = func;
104)
105
106@match_function_and_data_after_init_timer_context
bc27b77d 107depends on !patch && (context || org || report)@
c5eda8fd 108expression a, b, e1, e2, e3, e4, e5;
bc27b77d 109position j0 != match_immediate_function_data_after_init_timer_context.j0,j1,j2;
c5eda8fd
VT
110@@
111
112* init_timer@j0 (&e1);
113... when != a = e2
114 when != b = e3
115(
116* e1@j1.function = a;
117... when != b = e4
118* e1@j2.data = b;
119|
120* e1@j1.data = b;
121... when != a = e5
122* e1@j2.function = a;
123)
124
bc27b77d 125@r3_context depends on !patch && (context || org || report)@
c5eda8fd
VT
126expression c, e6, e7;
127position r1.p;
bc27b77d
JL
128position j0 !=
129 {match_immediate_function_data_after_init_timer_context.j0,
130 match_function_and_data_after_init_timer_context.j0}, j1;
c5eda8fd
VT
131@@
132
133* init_timer@j0@p (&e6);
134... when != c = e7
135* e6@j1.function = c;
136
137// ----------------------------------------------------------------------------
138
139@script:python match_immediate_function_data_after_init_timer_org
140depends on org@
141j0 << match_immediate_function_data_after_init_timer_context.j0;
142j1 << match_immediate_function_data_after_init_timer_context.j1;
143j2 << match_immediate_function_data_after_init_timer_context.j2;
144@@
145
146msg = "Use setup_timer function."
147coccilib.org.print_todo(j0[0], msg)
148coccilib.org.print_link(j1[0], "")
149coccilib.org.print_link(j2[0], "")
150
151@script:python match_function_and_data_after_init_timer_org depends on org@
152j0 << match_function_and_data_after_init_timer_context.j0;
153j1 << match_function_and_data_after_init_timer_context.j1;
154j2 << match_function_and_data_after_init_timer_context.j2;
155@@
156
157msg = "Use setup_timer function."
158coccilib.org.print_todo(j0[0], msg)
159coccilib.org.print_link(j1[0], "")
160coccilib.org.print_link(j2[0], "")
161
162@script:python r3_org depends on org@
163j0 << r3_context.j0;
164j1 << r3_context.j1;
165@@
166
167msg = "Use setup_timer function."
168coccilib.org.print_todo(j0[0], msg)
169coccilib.org.print_link(j1[0], "")
170
171// ----------------------------------------------------------------------------
172
173@script:python match_immediate_function_data_after_init_timer_report
174depends on report@
175j0 << match_immediate_function_data_after_init_timer_context.j0;
176j1 << match_immediate_function_data_after_init_timer_context.j1;
177@@
178
179msg = "Use setup_timer function for function on line %s." % (j1[0].line)
180coccilib.report.print_report(j0[0], msg)
181
182@script:python match_function_and_data_after_init_timer_report depends on report@
183j0 << match_function_and_data_after_init_timer_context.j0;
184j1 << match_function_and_data_after_init_timer_context.j1;
185@@
186
187msg = "Use setup_timer function for function on line %s." % (j1[0].line)
188coccilib.report.print_report(j0[0], msg)
189
190@script:python r3_report depends on report@
191j0 << r3_context.j0;
192j1 << r3_context.j1;
193@@
194
195msg = "Use setup_timer function for function on line %s." % (j1[0].line)
196coccilib.report.print_report(j0[0], msg)