blob: 7f6877a3505147a3b1094e50f816f3239b189621 [file] [log] [blame]
Paul E. McKenney29c00b42011-06-17 15:53:19 -07001#undef TRACE_SYSTEM
2#define TRACE_SYSTEM rcu
3
4#if !defined(_TRACE_RCU_H) || defined(TRACE_HEADER_MULTI_READ)
5#define _TRACE_RCU_H
6
7#include <linux/tracepoint.h>
8
9/*
Paul E. McKenney300df912011-06-18 22:26:31 -070010 * Tracepoint for start/end markers used for utilization calculations.
11 * By convention, the string is of the following forms:
12 *
13 * "Start <activity>" -- Mark the start of the specified activity,
14 * such as "context switch". Nesting is permitted.
15 * "End <activity>" -- Mark the end of the specified activity.
Paul E. McKenney385680a2011-06-21 22:43:26 -070016 *
17 * An "@" character within "<activity>" is a comment character: Data
18 * reduction scripts will ignore the "@" and the remainder of the line.
Paul E. McKenney29c00b42011-06-17 15:53:19 -070019 */
Paul E. McKenney300df912011-06-18 22:26:31 -070020TRACE_EVENT(rcu_utilization,
Paul E. McKenney29c00b42011-06-17 15:53:19 -070021
Paul E. McKenney300df912011-06-18 22:26:31 -070022 TP_PROTO(char *s),
Paul E. McKenney29c00b42011-06-17 15:53:19 -070023
Paul E. McKenney300df912011-06-18 22:26:31 -070024 TP_ARGS(s),
Paul E. McKenney29c00b42011-06-17 15:53:19 -070025
26 TP_STRUCT__entry(
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -070027 __field(char *, s)
Paul E. McKenney29c00b42011-06-17 15:53:19 -070028 ),
29
30 TP_fast_assign(
Paul E. McKenney300df912011-06-18 22:26:31 -070031 __entry->s = s;
Paul E. McKenney29c00b42011-06-17 15:53:19 -070032 ),
33
Paul E. McKenney300df912011-06-18 22:26:31 -070034 TP_printk("%s", __entry->s)
Paul E. McKenney29c00b42011-06-17 15:53:19 -070035);
36
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -070037#ifdef CONFIG_RCU_TRACE
38
39#if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU)
40
41/*
42 * Tracepoint for grace-period events: starting and ending a grace
43 * period ("start" and "end", respectively), a CPU noting the start
44 * of a new grace period or the end of an old grace period ("cpustart"
45 * and "cpuend", respectively), a CPU passing through a quiescent
46 * state ("cpuqs"), a CPU coming online or going offline ("cpuonl"
47 * and "cpuofl", respectively), and a CPU being kicked for being too
48 * long in dyntick-idle mode ("kick").
49 */
50TRACE_EVENT(rcu_grace_period,
51
52 TP_PROTO(char *rcuname, unsigned long gpnum, char *gpevent),
53
54 TP_ARGS(rcuname, gpnum, gpevent),
55
56 TP_STRUCT__entry(
57 __field(char *, rcuname)
58 __field(unsigned long, gpnum)
59 __field(char *, gpevent)
60 ),
61
62 TP_fast_assign(
63 __entry->rcuname = rcuname;
64 __entry->gpnum = gpnum;
65 __entry->gpevent = gpevent;
66 ),
67
68 TP_printk("%s %lu %s",
69 __entry->rcuname, __entry->gpnum, __entry->gpevent)
70);
71
72/*
73 * Tracepoint for grace-period-initialization events. These are
74 * distinguished by the type of RCU, the new grace-period number, the
75 * rcu_node structure level, the starting and ending CPU covered by the
76 * rcu_node structure, and the mask of CPUs that will be waited for.
77 * All but the type of RCU are extracted from the rcu_node structure.
78 */
79TRACE_EVENT(rcu_grace_period_init,
80
81 TP_PROTO(char *rcuname, unsigned long gpnum, u8 level,
82 int grplo, int grphi, unsigned long qsmask),
83
84 TP_ARGS(rcuname, gpnum, level, grplo, grphi, qsmask),
85
86 TP_STRUCT__entry(
87 __field(char *, rcuname)
88 __field(unsigned long, gpnum)
89 __field(u8, level)
90 __field(int, grplo)
91 __field(int, grphi)
92 __field(unsigned long, qsmask)
93 ),
94
95 TP_fast_assign(
96 __entry->rcuname = rcuname;
97 __entry->gpnum = gpnum;
98 __entry->level = level;
99 __entry->grplo = grplo;
100 __entry->grphi = grphi;
101 __entry->qsmask = qsmask;
102 ),
103
104 TP_printk("%s %lu %u %d %d %lx",
105 __entry->rcuname, __entry->gpnum, __entry->level,
106 __entry->grplo, __entry->grphi, __entry->qsmask)
107);
108
109/*
110 * Tracepoint for tasks blocking within preemptible-RCU read-side
111 * critical sections. Track the type of RCU (which one day might
112 * include SRCU), the grace-period number that the task is blocking
113 * (the current or the next), and the task's PID.
114 */
115TRACE_EVENT(rcu_preempt_task,
116
117 TP_PROTO(char *rcuname, int pid, unsigned long gpnum),
118
119 TP_ARGS(rcuname, pid, gpnum),
120
121 TP_STRUCT__entry(
122 __field(char *, rcuname)
123 __field(unsigned long, gpnum)
124 __field(int, pid)
125 ),
126
127 TP_fast_assign(
128 __entry->rcuname = rcuname;
129 __entry->gpnum = gpnum;
130 __entry->pid = pid;
131 ),
132
133 TP_printk("%s %lu %d",
134 __entry->rcuname, __entry->gpnum, __entry->pid)
135);
136
137/*
138 * Tracepoint for tasks that blocked within a given preemptible-RCU
139 * read-side critical section exiting that critical section. Track the
140 * type of RCU (which one day might include SRCU) and the task's PID.
141 */
142TRACE_EVENT(rcu_unlock_preempted_task,
143
144 TP_PROTO(char *rcuname, unsigned long gpnum, int pid),
145
146 TP_ARGS(rcuname, gpnum, pid),
147
148 TP_STRUCT__entry(
149 __field(char *, rcuname)
150 __field(unsigned long, gpnum)
151 __field(int, pid)
152 ),
153
154 TP_fast_assign(
155 __entry->rcuname = rcuname;
156 __entry->gpnum = gpnum;
157 __entry->pid = pid;
158 ),
159
160 TP_printk("%s %lu %d", __entry->rcuname, __entry->gpnum, __entry->pid)
161);
162
163/*
164 * Tracepoint for quiescent-state-reporting events. These are
165 * distinguished by the type of RCU, the grace-period number, the
166 * mask of quiescent lower-level entities, the rcu_node structure level,
167 * the starting and ending CPU covered by the rcu_node structure, and
168 * whether there are any blocked tasks blocking the current grace period.
169 * All but the type of RCU are extracted from the rcu_node structure.
170 */
171TRACE_EVENT(rcu_quiescent_state_report,
172
173 TP_PROTO(char *rcuname, unsigned long gpnum,
174 unsigned long mask, unsigned long qsmask,
175 u8 level, int grplo, int grphi, int gp_tasks),
176
177 TP_ARGS(rcuname, gpnum, mask, qsmask, level, grplo, grphi, gp_tasks),
178
179 TP_STRUCT__entry(
180 __field(char *, rcuname)
181 __field(unsigned long, gpnum)
182 __field(unsigned long, mask)
183 __field(unsigned long, qsmask)
184 __field(u8, level)
185 __field(int, grplo)
186 __field(int, grphi)
187 __field(u8, gp_tasks)
188 ),
189
190 TP_fast_assign(
191 __entry->rcuname = rcuname;
192 __entry->gpnum = gpnum;
193 __entry->mask = mask;
194 __entry->qsmask = qsmask;
195 __entry->level = level;
196 __entry->grplo = grplo;
197 __entry->grphi = grphi;
198 __entry->gp_tasks = gp_tasks;
199 ),
200
201 TP_printk("%s %lu %lx>%lx %u %d %d %u",
202 __entry->rcuname, __entry->gpnum,
203 __entry->mask, __entry->qsmask, __entry->level,
204 __entry->grplo, __entry->grphi, __entry->gp_tasks)
205);
206
207/*
208 * Tracepoint for quiescent states detected by force_quiescent_state().
209 * These trace events include the type of RCU, the grace-period number
210 * that was blocked by the CPU, the CPU itself, and the type of quiescent
211 * state, which can be "dti" for dyntick-idle mode, "ofl" for CPU offline,
212 * or "kick" when kicking a CPU that has been in dyntick-idle mode for
213 * too long.
214 */
215TRACE_EVENT(rcu_fqs,
216
217 TP_PROTO(char *rcuname, unsigned long gpnum, int cpu, char *qsevent),
218
219 TP_ARGS(rcuname, gpnum, cpu, qsevent),
220
221 TP_STRUCT__entry(
222 __field(char *, rcuname)
223 __field(unsigned long, gpnum)
224 __field(int, cpu)
225 __field(char *, qsevent)
226 ),
227
228 TP_fast_assign(
229 __entry->rcuname = rcuname;
230 __entry->gpnum = gpnum;
231 __entry->cpu = cpu;
232 __entry->qsevent = qsevent;
233 ),
234
235 TP_printk("%s %lu %d %s",
236 __entry->rcuname, __entry->gpnum,
237 __entry->cpu, __entry->qsevent)
238);
239
240#endif /* #if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU) */
241
242/*
243 * Tracepoint for dyntick-idle entry/exit events. These take a string
Paul E. McKenney045fb932011-11-22 12:13:03 -0800244 * as argument: "Start" for entering dyntick-idle mode, "End" for
245 * leaving it, "--=" for events moving towards idle, and "++=" for events
246 * moving away from idle. "Error on entry: not idle task" and "Error on
247 * exit: not idle task" indicate that a non-idle task is erroneously
248 * toying with the idle loop.
249 *
250 * These events also take a pair of numbers, which indicate the nesting
251 * depth before and after the event of interest. Note that task-related
252 * events use the upper bits of each number, while interrupt-related
253 * events use the lower bits.
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700254 */
255TRACE_EVENT(rcu_dyntick,
256
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700257 TP_PROTO(char *polarity, long long oldnesting, long long newnesting),
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700258
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700259 TP_ARGS(polarity, oldnesting, newnesting),
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700260
261 TP_STRUCT__entry(
262 __field(char *, polarity)
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700263 __field(long long, oldnesting)
264 __field(long long, newnesting)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700265 ),
266
267 TP_fast_assign(
268 __entry->polarity = polarity;
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700269 __entry->oldnesting = oldnesting;
270 __entry->newnesting = newnesting;
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700271 ),
272
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700273 TP_printk("%s %llx %llx", __entry->polarity,
274 __entry->oldnesting, __entry->newnesting)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700275);
276
277/*
278 * Tracepoint for the registration of a single RCU callback function.
279 * The first argument is the type of RCU, the second argument is
280 * a pointer to the RCU callback itself, and the third element is the
281 * new RCU callback queue length for the current CPU.
282 */
283TRACE_EVENT(rcu_callback,
284
285 TP_PROTO(char *rcuname, struct rcu_head *rhp, long qlen),
286
287 TP_ARGS(rcuname, rhp, qlen),
288
289 TP_STRUCT__entry(
290 __field(char *, rcuname)
291 __field(void *, rhp)
292 __field(void *, func)
293 __field(long, qlen)
294 ),
295
296 TP_fast_assign(
297 __entry->rcuname = rcuname;
298 __entry->rhp = rhp;
299 __entry->func = rhp->func;
300 __entry->qlen = qlen;
301 ),
302
303 TP_printk("%s rhp=%p func=%pf %ld",
304 __entry->rcuname, __entry->rhp, __entry->func, __entry->qlen)
305);
306
307/*
308 * Tracepoint for the registration of a single RCU callback of the special
309 * kfree() form. The first argument is the RCU type, the second argument
310 * is a pointer to the RCU callback, the third argument is the offset
311 * of the callback within the enclosing RCU-protected data structure,
312 * and the fourth argument is the new RCU callback queue length for the
313 * current CPU.
314 */
315TRACE_EVENT(rcu_kfree_callback,
316
317 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset,
318 long qlen),
319
320 TP_ARGS(rcuname, rhp, offset, qlen),
321
322 TP_STRUCT__entry(
323 __field(char *, rcuname)
324 __field(void *, rhp)
325 __field(unsigned long, offset)
326 __field(long, qlen)
327 ),
328
329 TP_fast_assign(
330 __entry->rcuname = rcuname;
331 __entry->rhp = rhp;
332 __entry->offset = offset;
333 __entry->qlen = qlen;
334 ),
335
336 TP_printk("%s rhp=%p func=%ld %ld",
337 __entry->rcuname, __entry->rhp, __entry->offset,
338 __entry->qlen)
339);
340
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700341/*
Paul E. McKenney300df912011-06-18 22:26:31 -0700342 * Tracepoint for marking the beginning rcu_do_batch, performed to start
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700343 * RCU callback invocation. The first argument is the RCU flavor,
344 * the second is the total number of callbacks (including those that
345 * are not yet ready to be invoked), and the third argument is the
346 * current RCU-callback batch limit.
Paul E. McKenney300df912011-06-18 22:26:31 -0700347 */
348TRACE_EVENT(rcu_batch_start,
349
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700350 TP_PROTO(char *rcuname, long qlen, int blimit),
Paul E. McKenney300df912011-06-18 22:26:31 -0700351
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700352 TP_ARGS(rcuname, qlen, blimit),
Paul E. McKenney300df912011-06-18 22:26:31 -0700353
354 TP_STRUCT__entry(
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700355 __field(char *, rcuname)
Paul E. McKenney300df912011-06-18 22:26:31 -0700356 __field(long, qlen)
357 __field(int, blimit)
358 ),
359
360 TP_fast_assign(
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700361 __entry->rcuname = rcuname;
Paul E. McKenney300df912011-06-18 22:26:31 -0700362 __entry->qlen = qlen;
363 __entry->blimit = blimit;
364 ),
365
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700366 TP_printk("%s CBs=%ld bl=%d",
367 __entry->rcuname, __entry->qlen, __entry->blimit)
Paul E. McKenney300df912011-06-18 22:26:31 -0700368);
369
370/*
371 * Tracepoint for the invocation of a single RCU callback function.
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700372 * The first argument is the type of RCU, and the second argument is
373 * a pointer to the RCU callback itself.
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700374 */
375TRACE_EVENT(rcu_invoke_callback,
376
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700377 TP_PROTO(char *rcuname, struct rcu_head *rhp),
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700378
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700379 TP_ARGS(rcuname, rhp),
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700380
381 TP_STRUCT__entry(
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700382 __field(char *, rcuname)
383 __field(void *, rhp)
384 __field(void *, func)
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700385 ),
386
387 TP_fast_assign(
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700388 __entry->rcuname = rcuname;
Paul E. McKenney300df912011-06-18 22:26:31 -0700389 __entry->rhp = rhp;
390 __entry->func = rhp->func;
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700391 ),
392
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700393 TP_printk("%s rhp=%p func=%pf",
394 __entry->rcuname, __entry->rhp, __entry->func)
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700395);
396
397/*
Paul E. McKenney300df912011-06-18 22:26:31 -0700398 * Tracepoint for the invocation of a single RCU callback of the special
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700399 * kfree() form. The first argument is the RCU flavor, the second
400 * argument is a pointer to the RCU callback, and the third argument
401 * is the offset of the callback within the enclosing RCU-protected
402 * data structure.
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700403 */
404TRACE_EVENT(rcu_invoke_kfree_callback,
405
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700406 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset),
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700407
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700408 TP_ARGS(rcuname, rhp, offset),
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700409
410 TP_STRUCT__entry(
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700411 __field(char *, rcuname)
412 __field(void *, rhp)
Paul E. McKenney300df912011-06-18 22:26:31 -0700413 __field(unsigned long, offset)
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700414 ),
415
416 TP_fast_assign(
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700417 __entry->rcuname = rcuname;
Paul E. McKenney300df912011-06-18 22:26:31 -0700418 __entry->rhp = rhp;
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700419 __entry->offset = offset;
420 ),
421
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700422 TP_printk("%s rhp=%p func=%ld",
423 __entry->rcuname, __entry->rhp, __entry->offset)
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700424);
425
426/*
Paul E. McKenney300df912011-06-18 22:26:31 -0700427 * Tracepoint for exiting rcu_do_batch after RCU callbacks have been
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700428 * invoked. The first argument is the name of the RCU flavor and
429 * the second argument is number of callbacks actually invoked.
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700430 */
431TRACE_EVENT(rcu_batch_end,
432
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700433 TP_PROTO(char *rcuname, int callbacks_invoked),
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700434
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700435 TP_ARGS(rcuname, callbacks_invoked),
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700436
437 TP_STRUCT__entry(
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700438 __field(char *, rcuname)
Paul E. McKenney300df912011-06-18 22:26:31 -0700439 __field(int, callbacks_invoked)
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700440 ),
441
442 TP_fast_assign(
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700443 __entry->rcuname = rcuname;
Paul E. McKenney300df912011-06-18 22:26:31 -0700444 __entry->callbacks_invoked = callbacks_invoked;
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700445 ),
446
Paul E. McKenney72fe7012011-06-21 01:14:54 -0700447 TP_printk("%s CBs-invoked=%d",
448 __entry->rcuname, __entry->callbacks_invoked)
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700449);
450
Paul E. McKenney91afaf32011-10-02 07:44:32 -0700451/*
452 * Tracepoint for rcutorture readers. The first argument is the name
453 * of the RCU flavor from rcutorture's viewpoint and the second argument
454 * is the callback address.
455 */
456TRACE_EVENT(rcu_torture_read,
457
458 TP_PROTO(char *rcutorturename, struct rcu_head *rhp),
459
460 TP_ARGS(rcutorturename, rhp),
461
462 TP_STRUCT__entry(
463 __field(char *, rcutorturename)
464 __field(struct rcu_head *, rhp)
465 ),
466
467 TP_fast_assign(
468 __entry->rcutorturename = rcutorturename;
469 __entry->rhp = rhp;
470 ),
471
472 TP_printk("%s torture read %p",
473 __entry->rcutorturename, __entry->rhp)
474);
475
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700476#else /* #ifdef CONFIG_RCU_TRACE */
477
478#define trace_rcu_grace_period(rcuname, gpnum, gpevent) do { } while (0)
479#define trace_rcu_grace_period_init(rcuname, gpnum, level, grplo, grphi, qsmask) do { } while (0)
480#define trace_rcu_preempt_task(rcuname, pid, gpnum) do { } while (0)
481#define trace_rcu_unlock_preempted_task(rcuname, gpnum, pid) do { } while (0)
482#define trace_rcu_quiescent_state_report(rcuname, gpnum, mask, qsmask, level, grplo, grphi, gp_tasks) do { } while (0)
483#define trace_rcu_fqs(rcuname, gpnum, cpu, qsevent) do { } while (0)
Paul E. McKenney4145fa72011-10-31 15:01:54 -0700484#define trace_rcu_dyntick(polarity, oldnesting, newnesting) do { } while (0)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700485#define trace_rcu_callback(rcuname, rhp, qlen) do { } while (0)
486#define trace_rcu_kfree_callback(rcuname, rhp, offset, qlen) do { } while (0)
487#define trace_rcu_batch_start(rcuname, qlen, blimit) do { } while (0)
488#define trace_rcu_invoke_callback(rcuname, rhp) do { } while (0)
489#define trace_rcu_invoke_kfree_callback(rcuname, rhp, offset) do { } while (0)
490#define trace_rcu_batch_end(rcuname, callbacks_invoked) do { } while (0)
Paul E. McKenney91afaf32011-10-02 07:44:32 -0700491#define trace_rcu_torture_read(rcutorturename, rhp) do { } while (0)
Paul E. McKenneyd4c08f22011-06-25 06:36:56 -0700492
493#endif /* #else #ifdef CONFIG_RCU_TRACE */
494
Paul E. McKenney29c00b42011-06-17 15:53:19 -0700495#endif /* _TRACE_RCU_H */
496
497/* This part must be outside protection */
498#include <trace/define_trace.h>