Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / include / instrumentation / events / rcu.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM rcu
4
5 #if !defined(LTTNG_TRACE_RCU_H) || defined(TRACE_HEADER_MULTI_READ)
6 #define LTTNG_TRACE_RCU_H
7
8 #include <lttng/tracepoint-event.h>
9 #include <linux/version.h>
10
11 /*
12 * Tracepoint for start/end markers used for utilization calculations.
13 * By convention, the string is of the following forms:
14 *
15 * "Start <activity>" -- Mark the start of the specified activity,
16 * such as "context switch". Nesting is permitted.
17 * "End <activity>" -- Mark the end of the specified activity.
18 *
19 * An "@" character within "<activity>" is a comment character: Data
20 * reduction scripts will ignore the "@" and the remainder of the line.
21 */
22 LTTNG_TRACEPOINT_EVENT(rcu_utilization,
23
24 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
25 TP_PROTO(const char *s),
26 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
27 TP_PROTO(char *s),
28 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
29
30 TP_ARGS(s),
31
32 TP_FIELDS(
33 ctf_string(s, s)
34 )
35 )
36
37 #ifdef CONFIG_RCU_TRACE
38
39 #if defined(CONFIG_TREE_RCU) \
40 || (LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0) \
41 && defined(CONFIG_PREEMPT_RCU)) \
42 || defined(CONFIG_TREE_PREEMPT_RCU)
43
44 /*
45 * Tracepoint for grace-period events: starting and ending a grace
46 * period ("start" and "end", respectively), a CPU noting the start
47 * of a new grace period or the end of an old grace period ("cpustart"
48 * and "cpuend", respectively), a CPU passing through a quiescent
49 * state ("cpuqs"), a CPU coming online or going offline ("cpuonl"
50 * and "cpuofl", respectively), and a CPU being kicked for being too
51 * long in dyntick-idle mode ("kick").
52 */
53 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
54 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
55 LTTNG_TRACEPOINT_EVENT(rcu_grace_period,
56
57 TP_PROTO(const char *rcuname, unsigned long gp_seq, const char *gpevent),
58
59 TP_ARGS(rcuname, gp_seq, gpevent),
60
61 TP_FIELDS(
62 ctf_string(rcuname, rcuname)
63 ctf_integer(unsigned long, gp_seq, gp_seq)
64 ctf_string(gpevent, gpevent)
65 )
66 )
67 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
68 LTTNG_TRACEPOINT_EVENT(rcu_grace_period,
69
70 TP_PROTO(const char *rcuname, unsigned long gpnum, const char *gpevent),
71
72 TP_ARGS(rcuname, gpnum, gpevent),
73
74 TP_FIELDS(
75 ctf_string(rcuname, rcuname)
76 ctf_integer(unsigned long, gpnum, gpnum)
77 ctf_string(gpevent, gpevent)
78 )
79 )
80 #else
81 LTTNG_TRACEPOINT_EVENT(rcu_grace_period,
82
83 TP_PROTO(char *rcuname, unsigned long gpnum, char *gpevent),
84
85 TP_ARGS(rcuname, gpnum, gpevent),
86
87 TP_FIELDS(
88 ctf_string(rcuname, rcuname)
89 ctf_integer(unsigned long, gpnum, gpnum)
90 ctf_string(gpevent, gpevent)
91 )
92 )
93 #endif
94
95 /*
96 * Tracepoint for grace-period-initialization events. These are
97 * distinguished by the type of RCU, the new grace-period number, the
98 * rcu_node structure level, the starting and ending CPU covered by the
99 * rcu_node structure, and the mask of CPUs that will be waited for.
100 * All but the type of RCU are extracted from the rcu_node structure.
101 */
102 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
103 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
104 LTTNG_TRACEPOINT_EVENT(rcu_grace_period_init,
105
106 TP_PROTO(const char *rcuname, unsigned long gp_seq, u8 level,
107 int grplo, int grphi, unsigned long qsmask),
108
109 TP_ARGS(rcuname, gp_seq, level, grplo, grphi, qsmask),
110
111 TP_FIELDS(
112 ctf_string(rcuname, rcuname)
113 ctf_integer(unsigned long, gp_seq, gp_seq)
114 ctf_integer(u8, level, level)
115 ctf_integer(int, grplo, grplo)
116 ctf_integer(int, grphi, grphi)
117 ctf_integer(unsigned long, qsmask, qsmask)
118 )
119 )
120 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
121 LTTNG_TRACEPOINT_EVENT(rcu_grace_period_init,
122
123 TP_PROTO(const char *rcuname, unsigned long gpnum, u8 level,
124 int grplo, int grphi, unsigned long qsmask),
125
126 TP_ARGS(rcuname, gpnum, level, grplo, grphi, qsmask),
127
128 TP_FIELDS(
129 ctf_string(rcuname, rcuname)
130 ctf_integer(unsigned long, gpnum, gpnum)
131 ctf_integer(u8, level, level)
132 ctf_integer(int, grplo, grplo)
133 ctf_integer(int, grphi, grphi)
134 ctf_integer(unsigned long, qsmask, qsmask)
135 )
136 )
137 #else
138 LTTNG_TRACEPOINT_EVENT(rcu_grace_period_init,
139
140 TP_PROTO(char *rcuname, unsigned long gpnum, u8 level,
141 int grplo, int grphi, unsigned long qsmask),
142
143 TP_ARGS(rcuname, gpnum, level, grplo, grphi, qsmask),
144
145 TP_FIELDS(
146 ctf_string(rcuname, rcuname)
147 ctf_integer(unsigned long, gpnum, gpnum)
148 ctf_integer(u8, level, level)
149 ctf_integer(int, grplo, grplo)
150 ctf_integer(int, grphi, grphi)
151 ctf_integer(unsigned long, qsmask, qsmask)
152 )
153 )
154 #endif
155
156 /*
157 * Tracepoint for tasks blocking within preemptible-RCU read-side
158 * critical sections. Track the type of RCU (which one day might
159 * include SRCU), the grace-period number that the task is blocking
160 * (the current or the next), and the task's PID.
161 */
162 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
163 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
164 LTTNG_TRACEPOINT_EVENT(rcu_preempt_task,
165
166 TP_PROTO(const char *rcuname, int pid, unsigned long gp_seq),
167
168 TP_ARGS(rcuname, pid, gp_seq),
169
170 TP_FIELDS(
171 ctf_string(rcuname, rcuname)
172 ctf_integer(unsigned long, gp_seq, gp_seq)
173 ctf_integer(int, pid, pid)
174 )
175 )
176 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
177 LTTNG_TRACEPOINT_EVENT(rcu_preempt_task,
178
179 TP_PROTO(const char *rcuname, int pid, unsigned long gpnum),
180
181 TP_ARGS(rcuname, pid, gpnum),
182
183 TP_FIELDS(
184 ctf_string(rcuname, rcuname)
185 ctf_integer(unsigned long, gpnum, gpnum)
186 ctf_integer(int, pid, pid)
187 )
188 )
189 #else
190 LTTNG_TRACEPOINT_EVENT(rcu_preempt_task,
191
192 TP_PROTO(char *rcuname, int pid, unsigned long gpnum),
193
194 TP_ARGS(rcuname, pid, gpnum),
195
196 TP_FIELDS(
197 ctf_string(rcuname, rcuname)
198 ctf_integer(unsigned long, gpnum, gpnum)
199 ctf_integer(int, pid, pid)
200 )
201 )
202 #endif
203
204 /*
205 * Tracepoint for tasks that blocked within a given preemptible-RCU
206 * read-side critical section exiting that critical section. Track the
207 * type of RCU (which one day might include SRCU) and the task's PID.
208 */
209 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
210 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
211 LTTNG_TRACEPOINT_EVENT(rcu_unlock_preempted_task,
212
213 TP_PROTO(const char *rcuname, unsigned long gp_seq, int pid),
214
215 TP_ARGS(rcuname, gp_seq, pid),
216
217 TP_FIELDS(
218 ctf_string(rcuname, rcuname)
219 ctf_integer(unsigned long, gp_seq, gp_seq)
220 ctf_integer(int, pid, pid)
221 )
222 )
223 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
224 LTTNG_TRACEPOINT_EVENT(rcu_unlock_preempted_task,
225
226 TP_PROTO(const char *rcuname, unsigned long gpnum, int pid),
227
228 TP_ARGS(rcuname, gpnum, pid),
229
230 TP_FIELDS(
231 ctf_string(rcuname, rcuname)
232 ctf_integer(unsigned long, gpnum, gpnum)
233 ctf_integer(int, pid, pid)
234 )
235 )
236 #else
237 LTTNG_TRACEPOINT_EVENT(rcu_unlock_preempted_task,
238
239 TP_PROTO(char *rcuname, unsigned long gpnum, int pid),
240
241 TP_ARGS(rcuname, gpnum, pid),
242
243 TP_FIELDS(
244 ctf_string(rcuname, rcuname)
245 ctf_integer(unsigned long, gpnum, gpnum)
246 ctf_integer(int, pid, pid)
247 )
248 )
249 #endif
250
251 /*
252 * Tracepoint for quiescent-state-reporting events. These are
253 * distinguished by the type of RCU, the grace-period number, the
254 * mask of quiescent lower-level entities, the rcu_node structure level,
255 * the starting and ending CPU covered by the rcu_node structure, and
256 * whether there are any blocked tasks blocking the current grace period.
257 * All but the type of RCU are extracted from the rcu_node structure.
258 */
259 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
260 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
261 LTTNG_TRACEPOINT_EVENT(rcu_quiescent_state_report,
262
263 TP_PROTO(const char *rcuname, unsigned long gp_seq,
264 unsigned long mask, unsigned long qsmask,
265 u8 level, int grplo, int grphi, int gp_tasks),
266
267 TP_ARGS(rcuname, gp_seq, mask, qsmask, level, grplo, grphi, gp_tasks),
268
269 TP_FIELDS(
270 ctf_string(rcuname, rcuname)
271 ctf_integer(unsigned long, gp_seq, gp_seq)
272 ctf_integer(unsigned long, mask, mask)
273 ctf_integer(unsigned long, qsmask, qsmask)
274 ctf_integer(u8, level, level)
275 ctf_integer(int, grplo, grplo)
276 ctf_integer(int, grphi, grphi)
277 ctf_integer(u8, gp_tasks, gp_tasks)
278 )
279 )
280 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
281 LTTNG_TRACEPOINT_EVENT(rcu_quiescent_state_report,
282
283 TP_PROTO(const char *rcuname, unsigned long gpnum,
284 unsigned long mask, unsigned long qsmask,
285 u8 level, int grplo, int grphi, int gp_tasks),
286
287 TP_ARGS(rcuname, gpnum, mask, qsmask, level, grplo, grphi, gp_tasks),
288
289 TP_FIELDS(
290 ctf_string(rcuname, rcuname)
291 ctf_integer(unsigned long, gpnum, gpnum)
292 ctf_integer(unsigned long, mask, mask)
293 ctf_integer(unsigned long, qsmask, qsmask)
294 ctf_integer(u8, level, level)
295 ctf_integer(int, grplo, grplo)
296 ctf_integer(int, grphi, grphi)
297 ctf_integer(u8, gp_tasks, gp_tasks)
298 )
299 )
300 #else
301 LTTNG_TRACEPOINT_EVENT(rcu_quiescent_state_report,
302
303 TP_PROTO(char *rcuname, unsigned long gpnum,
304 unsigned long mask, unsigned long qsmask,
305 u8 level, int grplo, int grphi, int gp_tasks),
306
307 TP_ARGS(rcuname, gpnum, mask, qsmask, level, grplo, grphi, gp_tasks),
308
309 TP_FIELDS(
310 ctf_string(rcuname, rcuname)
311 ctf_integer(unsigned long, gpnum, gpnum)
312 ctf_integer(unsigned long, mask, mask)
313 ctf_integer(unsigned long, qsmask, qsmask)
314 ctf_integer(u8, level, level)
315 ctf_integer(int, grplo, grplo)
316 ctf_integer(int, grphi, grphi)
317 ctf_integer(u8, gp_tasks, gp_tasks)
318 )
319 )
320 #endif
321
322 /*
323 * Tracepoint for quiescent states detected by force_quiescent_state().
324 * These trace events include the type of RCU, the grace-period number
325 * that was blocked by the CPU, the CPU itself, and the type of quiescent
326 * state, which can be "dti" for dyntick-idle mode, "ofl" for CPU offline,
327 * or "kick" when kicking a CPU that has been in dyntick-idle mode for
328 * too long.
329 */
330 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
331 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
332 LTTNG_TRACEPOINT_EVENT(rcu_fqs,
333
334 TP_PROTO(const char *rcuname, unsigned long gp_seq, int cpu, const char *qsevent),
335
336 TP_ARGS(rcuname, gp_seq, cpu, qsevent),
337
338 TP_FIELDS(
339 ctf_integer(unsigned long, gp_seq, gp_seq)
340 ctf_integer(int, cpu, cpu)
341 ctf_string(rcuname, rcuname)
342 ctf_string(qsevent, qsevent)
343 )
344 )
345 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
346 LTTNG_TRACEPOINT_EVENT(rcu_fqs,
347
348 TP_PROTO(const char *rcuname, unsigned long gpnum, int cpu, const char *qsevent),
349
350 TP_ARGS(rcuname, gpnum, cpu, qsevent),
351
352 TP_FIELDS(
353 ctf_integer(unsigned long, gpnum, gpnum)
354 ctf_integer(int, cpu, cpu)
355 ctf_string(rcuname, rcuname)
356 ctf_string(qsevent, qsevent)
357 )
358 )
359 #else
360 LTTNG_TRACEPOINT_EVENT(rcu_fqs,
361
362 TP_PROTO(char *rcuname, unsigned long gpnum, int cpu, char *qsevent),
363
364 TP_ARGS(rcuname, gpnum, cpu, qsevent),
365
366 TP_FIELDS(
367 ctf_integer(unsigned long, gpnum, gpnum)
368 ctf_integer(int, cpu, cpu)
369 ctf_string(rcuname, rcuname)
370 ctf_string(qsevent, qsevent)
371 )
372 )
373 #endif
374
375 #endif /*
376 * #if defined(CONFIG_TREE_RCU)
377 * || (LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)
378 * && defined(CONFIG_PREEMPT_RCU))
379 * || defined(CONFIG_TREE_PREEMPT_RCU)
380 */
381
382 /*
383 * Tracepoint for dyntick-idle entry/exit events. These take a string
384 * as argument: "Start" for entering dyntick-idle mode, "End" for
385 * leaving it, "--=" for events moving towards idle, and "++=" for events
386 * moving away from idle. "Error on entry: not idle task" and "Error on
387 * exit: not idle task" indicate that a non-idle task is erroneously
388 * toying with the idle loop.
389 *
390 * These events also take a pair of numbers, which indicate the nesting
391 * depth before and after the event of interest. Note that task-related
392 * events use the upper bits of each number, while interrupt-related
393 * events use the lower bits.
394 */
395 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) \
396 || LTTNG_KERNEL_RANGE(5,5,6, 5,6,0) \
397 || LTTNG_KERNEL_RANGE(5,4,22, 5,5,0)
398 LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
399
400 TP_PROTO(const char *polarity, long oldnesting, long newnesting, int dynticks),
401
402 TP_ARGS(polarity, oldnesting, newnesting, dynticks),
403
404 TP_FIELDS(
405 ctf_string(polarity, polarity)
406 ctf_integer(long, oldnesting, oldnesting)
407 ctf_integer(long, newnesting, newnesting)
408 ctf_integer(int, dynticks, dynticks)
409 )
410 )
411
412 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,16,0))
413 LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
414
415 TP_PROTO(const char *polarity, long oldnesting, long newnesting, atomic_t dynticks),
416
417 TP_ARGS(polarity, oldnesting, newnesting, dynticks),
418
419 TP_FIELDS(
420 ctf_string(polarity, polarity)
421 ctf_integer(long, oldnesting, oldnesting)
422 ctf_integer(long, newnesting, newnesting)
423 ctf_integer(int, dynticks, atomic_read(&dynticks))
424 )
425 )
426
427 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
428 LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
429
430 TP_PROTO(const char *polarity, long long oldnesting, long long newnesting),
431
432 TP_ARGS(polarity, oldnesting, newnesting),
433
434 TP_FIELDS(
435 ctf_string(polarity, polarity)
436 ctf_integer(long long, oldnesting, oldnesting)
437 ctf_integer(long long, newnesting, newnesting)
438 )
439 )
440 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
441 LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
442
443 TP_PROTO(char *polarity, long long oldnesting, long long newnesting),
444
445 TP_ARGS(polarity, oldnesting, newnesting),
446
447 TP_FIELDS(
448 ctf_string(polarity, polarity)
449 ctf_integer(long long, oldnesting, oldnesting)
450 ctf_integer(long long, newnesting, newnesting)
451 )
452 )
453 #else
454 LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
455
456 TP_PROTO(char *polarity),
457
458 TP_ARGS(polarity),
459
460 TP_FIELDS(
461 ctf_string(polarity, polarity)
462 )
463 )
464 #endif
465
466
467 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
468 /*
469 * Tracepoint for RCU preparation for idle, the goal being to get RCU
470 * processing done so that the current CPU can shut off its scheduling
471 * clock and enter dyntick-idle mode. One way to accomplish this is
472 * to drain all RCU callbacks from this CPU, and the other is to have
473 * done everything RCU requires for the current grace period. In this
474 * latter case, the CPU will be awakened at the end of the current grace
475 * period in order to process the remainder of its callbacks.
476 *
477 * These tracepoints take a string as argument:
478 *
479 * "No callbacks": Nothing to do, no callbacks on this CPU.
480 * "In holdoff": Nothing to do, holding off after unsuccessful attempt.
481 * "Begin holdoff": Attempt failed, don't retry until next jiffy.
482 * "Dyntick with callbacks": Entering dyntick-idle despite callbacks.
483 * "Dyntick with lazy callbacks": Entering dyntick-idle w/lazy callbacks.
484 * "More callbacks": Still more callbacks, try again to clear them out.
485 * "Callbacks drained": All callbacks processed, off to dyntick idle!
486 * "Timer": Timer fired to cause CPU to continue processing callbacks.
487 * "Demigrate": Timer fired on wrong CPU, woke up correct CPU.
488 * "Cleanup after idle": Idle exited, timer canceled.
489 */
490 LTTNG_TRACEPOINT_EVENT(rcu_prep_idle,
491
492 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
493 TP_PROTO(const char *reason),
494 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
495 TP_PROTO(char *reason),
496 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
497
498 TP_ARGS(reason),
499
500 TP_FIELDS(
501 ctf_string(reason, reason)
502 )
503 )
504 #endif
505
506 /*
507 * Tracepoint for the registration of a single RCU callback function.
508 * The first argument is the type of RCU, the second argument is
509 * a pointer to the RCU callback itself, the third element is the
510 * number of lazy callbacks queued, and the fourth element is the
511 * total number of callbacks queued.
512 */
513 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
514 LTTNG_TRACEPOINT_EVENT(rcu_callback,
515
516 TP_PROTO(const char *rcuname, struct rcu_head *rhp, long qlen),
517
518 TP_ARGS(rcuname, rhp, qlen),
519
520 TP_FIELDS(
521 ctf_string(rcuname, rcuname)
522 ctf_integer_hex(void *, rhp, rhp)
523 ctf_integer_hex(void *, func, rhp->func)
524 ctf_integer(long, qlen, qlen)
525 )
526 )
527 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
528 LTTNG_TRACEPOINT_EVENT(rcu_callback,
529
530 TP_PROTO(const char *rcuname, struct rcu_head *rhp, long qlen_lazy,
531 long qlen),
532
533 TP_ARGS(rcuname, rhp, qlen_lazy, qlen),
534
535 TP_FIELDS(
536 ctf_string(rcuname, rcuname)
537 ctf_integer_hex(void *, rhp, rhp)
538 ctf_integer_hex(void *, func, rhp->func)
539 ctf_integer(long, qlen_lazy, qlen_lazy)
540 ctf_integer(long, qlen, qlen)
541 )
542 )
543 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
544 LTTNG_TRACEPOINT_EVENT(rcu_callback,
545
546 TP_PROTO(char *rcuname, struct rcu_head *rhp, long qlen_lazy,
547 long qlen),
548
549 TP_ARGS(rcuname, rhp, qlen_lazy, qlen),
550
551 TP_FIELDS(
552 ctf_string(rcuname, rcuname)
553 ctf_integer_hex(void *, rhp, rhp)
554 ctf_integer_hex(void *, func, rhp->func)
555 ctf_integer(long, qlen_lazy, qlen_lazy)
556 ctf_integer(long, qlen, qlen)
557 )
558 )
559 #else
560 LTTNG_TRACEPOINT_EVENT(rcu_callback,
561
562 TP_PROTO(char *rcuname, struct rcu_head *rhp, long qlen),
563
564 TP_ARGS(rcuname, rhp, qlen),
565
566 TP_FIELDS(
567 ctf_string(rcuname, rcuname)
568 ctf_integer_hex(void *, rhp, rhp)
569 ctf_integer_hex(void *, func, rhp->func)
570 ctf_integer(long, qlen, qlen)
571 )
572 )
573 #endif
574
575
576 /*
577 * Tracepoint for the registration of a single RCU callback of the special
578 * kfree() form. The first argument is the RCU type, the second argument
579 * is a pointer to the RCU callback, the third argument is the offset
580 * of the callback within the enclosing RCU-protected data structure,
581 * the fourth argument is the number of lazy callbacks queued, and the
582 * fifth argument is the total number of callbacks queued.
583 */
584 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
585 LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
586
587 TP_PROTO(const char *rcuname, struct rcu_head *rhp, unsigned long offset,
588 long qlen),
589
590 TP_ARGS(rcuname, rhp, offset, qlen),
591
592 TP_FIELDS(
593 ctf_string(rcuname, rcuname)
594 ctf_integer_hex(void *, rhp, rhp)
595 ctf_integer_hex(unsigned long, offset, offset)
596 ctf_integer(long, qlen, qlen)
597 )
598 )
599 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
600 LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
601
602 TP_PROTO(const char *rcuname, struct rcu_head *rhp, unsigned long offset,
603 long qlen_lazy, long qlen),
604
605 TP_ARGS(rcuname, rhp, offset, qlen_lazy, qlen),
606
607 TP_FIELDS(
608 ctf_string(rcuname, rcuname)
609 ctf_integer_hex(void *, rhp, rhp)
610 ctf_integer_hex(unsigned long, offset, offset)
611 ctf_integer(long, qlen_lazy, qlen_lazy)
612 ctf_integer(long, qlen, qlen)
613 )
614 )
615 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
616 LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
617
618 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset,
619 long qlen_lazy, long qlen),
620
621 TP_ARGS(rcuname, rhp, offset, qlen_lazy, qlen),
622
623 TP_FIELDS(
624 ctf_string(rcuname, rcuname)
625 ctf_integer_hex(void *, rhp, rhp)
626 ctf_integer_hex(unsigned long, offset, offset)
627 ctf_integer(long, qlen_lazy, qlen_lazy)
628 ctf_integer(long, qlen, qlen)
629 )
630 )
631 #else
632 LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
633
634 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset,
635 long qlen),
636
637 TP_ARGS(rcuname, rhp, offset, qlen),
638
639 TP_FIELDS(
640 ctf_string(rcuname, rcuname)
641 ctf_integer_hex(void *, rhp, rhp)
642 ctf_integer_hex(unsigned long, offset, offset)
643 ctf_integer(long, qlen, qlen)
644 )
645 )
646 #endif
647
648 /*
649 * Tracepoint for marking the beginning rcu_do_batch, performed to start
650 * RCU callback invocation. The first argument is the RCU flavor,
651 * the second is the number of lazy callbacks queued, the third is
652 * the total number of callbacks queued, and the fourth argument is
653 * the current RCU-callback batch limit.
654 */
655 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
656 LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
657
658 TP_PROTO(const char *rcuname, long qlen, long blimit),
659
660 TP_ARGS(rcuname, qlen, blimit),
661
662 TP_FIELDS(
663 ctf_string(rcuname, rcuname)
664 ctf_integer(long, qlen, qlen)
665 ctf_integer(long, blimit, blimit)
666 )
667 )
668 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
669 LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
670
671 TP_PROTO(const char *rcuname, long qlen_lazy, long qlen, long blimit),
672
673 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
674
675 TP_FIELDS(
676 ctf_string(rcuname, rcuname)
677 ctf_integer(long, qlen_lazy, qlen_lazy)
678 ctf_integer(long, qlen, qlen)
679 ctf_integer(long, blimit, blimit)
680 )
681 )
682 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
683 LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
684
685 TP_PROTO(char *rcuname, long qlen_lazy, long qlen, long blimit),
686
687 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
688
689 TP_FIELDS(
690 ctf_string(rcuname, rcuname)
691 ctf_integer(long, qlen_lazy, qlen_lazy)
692 ctf_integer(long, qlen, qlen)
693 ctf_integer(long, blimit, blimit)
694 )
695 )
696 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
697 LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
698
699 TP_PROTO(char *rcuname, long qlen_lazy, long qlen, int blimit),
700
701 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
702
703 TP_FIELDS(
704 ctf_string(rcuname, rcuname)
705 ctf_integer(long, qlen_lazy, qlen_lazy)
706 ctf_integer(long, qlen, qlen)
707 ctf_integer(int, blimit, blimit)
708 )
709 )
710 #else
711 LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
712
713 TP_PROTO(char *rcuname, long qlen, int blimit),
714
715 TP_ARGS(rcuname, qlen, blimit),
716
717 TP_FIELDS(
718 ctf_string(rcuname, rcuname)
719 ctf_integer(long, qlen, qlen)
720 ctf_integer(int, blimit, blimit)
721 )
722 )
723 #endif
724
725 /*
726 * Tracepoint for the invocation of a single RCU callback function.
727 * The first argument is the type of RCU, and the second argument is
728 * a pointer to the RCU callback itself.
729 */
730 LTTNG_TRACEPOINT_EVENT(rcu_invoke_callback,
731
732 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
733 TP_PROTO(const char *rcuname, struct rcu_head *rhp),
734 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
735 TP_PROTO(char *rcuname, struct rcu_head *rhp),
736 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
737
738 TP_ARGS(rcuname, rhp),
739
740 TP_FIELDS(
741 ctf_string(rcuname, rcuname)
742 ctf_integer_hex(void *, rhp, rhp)
743 ctf_integer_hex(void *, func, rhp->func)
744 )
745 )
746
747 /*
748 * Tracepoint for the invocation of a single RCU callback of the special
749 * kfree() form. The first argument is the RCU flavor, the second
750 * argument is a pointer to the RCU callback, and the third argument
751 * is the offset of the callback within the enclosing RCU-protected
752 * data structure.
753 */
754 LTTNG_TRACEPOINT_EVENT(rcu_invoke_kfree_callback,
755
756 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
757 TP_PROTO(const char *rcuname, struct rcu_head *rhp, unsigned long offset),
758 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
759 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset),
760 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
761
762 TP_ARGS(rcuname, rhp, offset),
763
764 TP_FIELDS(
765 ctf_string(rcuname, rcuname)
766 ctf_integer_hex(void *, rhp, rhp)
767 ctf_integer(unsigned long, offset, offset)
768 )
769 )
770
771 /*
772 * Tracepoint for exiting rcu_do_batch after RCU callbacks have been
773 * invoked. The first argument is the name of the RCU flavor,
774 * the second argument is number of callbacks actually invoked,
775 * the third argument (cb) is whether or not any of the callbacks that
776 * were ready to invoke at the beginning of this batch are still
777 * queued, the fourth argument (nr) is the return value of need_resched(),
778 * the fifth argument (iit) is 1 if the current task is the idle task,
779 * and the sixth argument (risk) is the return value from
780 * rcu_is_callbacks_kthread().
781 */
782 LTTNG_TRACEPOINT_EVENT(rcu_batch_end,
783
784 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,13,0))
785 TP_PROTO(const char *rcuname, int callbacks_invoked,
786 char cb, char nr, char iit, char risk),
787
788 TP_ARGS(rcuname, callbacks_invoked, cb, nr, iit, risk),
789 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
790 TP_PROTO(const char *rcuname, int callbacks_invoked,
791 bool cb, bool nr, bool iit, bool risk),
792
793 TP_ARGS(rcuname, callbacks_invoked, cb, nr, iit, risk),
794 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
795 TP_PROTO(char *rcuname, int callbacks_invoked,
796 bool cb, bool nr, bool iit, bool risk),
797
798 TP_ARGS(rcuname, callbacks_invoked, cb, nr, iit, risk),
799 #else
800 TP_PROTO(char *rcuname, int callbacks_invoked),
801
802 TP_ARGS(rcuname, callbacks_invoked),
803 #endif
804
805 TP_FIELDS(
806 ctf_string(rcuname, rcuname)
807 ctf_integer(int, callbacks_invoked, callbacks_invoked)
808 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,13,0))
809 ctf_integer(char, cb, cb)
810 ctf_integer(char, nr, nr)
811 ctf_integer(char, iit, iit)
812 ctf_integer(char, risk, risk)
813 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
814 ctf_integer(bool, cb, cb)
815 ctf_integer(bool, nr, nr)
816 ctf_integer(bool, iit, iit)
817 ctf_integer(bool, risk, risk)
818 #endif
819 )
820 )
821
822 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
823 /*
824 * Tracepoint for rcutorture readers. The first argument is the name
825 * of the RCU flavor from rcutorture's viewpoint and the second argument
826 * is the callback address.
827 */
828 LTTNG_TRACEPOINT_EVENT(rcu_torture_read,
829
830 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
831 TP_PROTO(const char *rcutorturename, struct rcu_head *rhp,
832 unsigned long secs, unsigned long c_old, unsigned long c),
833
834 TP_ARGS(rcutorturename, rhp, secs, c_old, c),
835 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
836 TP_PROTO(char *rcutorturename, struct rcu_head *rhp,
837 unsigned long secs, unsigned long c_old, unsigned long c),
838
839 TP_ARGS(rcutorturename, rhp, secs, c_old, c),
840 #else
841 TP_PROTO(char *rcutorturename, struct rcu_head *rhp),
842
843 TP_ARGS(rcutorturename, rhp),
844 #endif
845
846 TP_FIELDS(
847 ctf_string(rcutorturename, rcutorturename)
848 ctf_integer_hex(struct rcu_head *, rhp, rhp)
849 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
850 ctf_integer(unsigned long, secs, secs)
851 ctf_integer(unsigned long, c_old, c_old)
852 ctf_integer(unsigned long, c, c)
853 #endif
854 )
855 )
856 #endif
857
858 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
859 /*
860 * Tracepoint for _rcu_barrier() execution. The string "s" describes
861 * the _rcu_barrier phase:
862 * "Begin": rcu_barrier_callback() started.
863 * "Check": rcu_barrier_callback() checking for piggybacking.
864 * "EarlyExit": rcu_barrier_callback() piggybacked, thus early exit.
865 * "Inc1": rcu_barrier_callback() piggyback check counter incremented.
866 * "Offline": rcu_barrier_callback() found offline CPU
867 * "OnlineQ": rcu_barrier_callback() found online CPU with callbacks.
868 * "OnlineNQ": rcu_barrier_callback() found online CPU, no callbacks.
869 * "IRQ": An rcu_barrier_callback() callback posted on remote CPU.
870 * "CB": An rcu_barrier_callback() invoked a callback, not the last.
871 * "LastCB": An rcu_barrier_callback() invoked the last callback.
872 * "Inc2": rcu_barrier_callback() piggyback check counter incremented.
873 * The "cpu" argument is the CPU or -1 if meaningless, the "cnt" argument
874 * is the count of remaining callbacks, and "done" is the piggybacking count.
875 */
876 LTTNG_TRACEPOINT_EVENT(rcu_barrier,
877
878 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
879 TP_PROTO(const char *rcuname, const char *s, int cpu, int cnt, unsigned long done),
880 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
881 TP_PROTO(char *rcuname, char *s, int cpu, int cnt, unsigned long done),
882 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
883
884 TP_ARGS(rcuname, s, cpu, cnt, done),
885
886 TP_FIELDS(
887 ctf_string(rcuname, rcuname)
888 ctf_string(s, s)
889 ctf_integer(int, cpu, cpu)
890 ctf_integer(int, cnt, cnt)
891 ctf_integer(unsigned long, done, done)
892 )
893 )
894 #endif
895
896 #else /* #ifdef CONFIG_RCU_TRACE */
897
898 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0) || \
899 LTTNG_RHEL_KERNEL_RANGE(4,18,0,80,0,0, 4,19,0,0,0,0))
900 #define trace_rcu_grace_period(rcuname, gp_seq, gpevent) do { } while (0)
901 #define trace_rcu_grace_period_init(rcuname, gp_seq, level, grplo, grphi, \
902 qsmask) do { } while (0)
903 #define trace_rcu_preempt_task(rcuname, pid, gp_seq) do { } while (0)
904 #define trace_rcu_unlock_preempted_task(rcuname, gp_seq, pid) do { } while (0)
905 #define trace_rcu_quiescent_state_report(rcuname, gp_seq, mask, qsmask, level, \
906 grplo, grphi, gp_tasks) do { } \
907 while (0)
908 #define trace_rcu_fqs(rcuname, gp_seq, cpu, qsevent) do { } while (0)
909 #else
910 #define trace_rcu_grace_period(rcuname, gpnum, gpevent) do { } while (0)
911 #define trace_rcu_grace_period_init(rcuname, gpnum, level, grplo, grphi, \
912 qsmask) do { } while (0)
913 #define trace_rcu_preempt_task(rcuname, pid, gpnum) do { } while (0)
914 #define trace_rcu_unlock_preempted_task(rcuname, gpnum, pid) do { } while (0)
915 #define trace_rcu_quiescent_state_report(rcuname, gpnum, mask, qsmask, level, \
916 grplo, grphi, gp_tasks) do { } \
917 while (0)
918 #define trace_rcu_fqs(rcuname, gpnum, cpu, qsevent) do { } while (0)
919 #endif
920
921 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,16,0))
922 #define trace_rcu_dyntick(polarity, oldnesting, newnesting, dyntick) do { } while (0)
923 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
924 #define trace_rcu_dyntick(polarity, oldnesting, newnesting) do { } while (0)
925 #else
926 #define trace_rcu_dyntick(polarity) do { } while (0)
927 #endif
928 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
929 #define trace_rcu_prep_idle(reason) do { } while (0)
930 #endif
931 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
932 #define trace_rcu_callback(rcuname, rhp, qlen_lazy, qlen) do { } while (0)
933 #define trace_rcu_kfree_callback(rcuname, rhp, offset, qlen_lazy, qlen) \
934 do { } while (0)
935 #define trace_rcu_batch_start(rcuname, qlen_lazy, qlen, blimit) \
936 do { } while (0)
937 #else
938 #define trace_rcu_callback(rcuname, rhp, qlen) do { } while (0)
939 #define trace_rcu_kfree_callback(rcuname, rhp, offset, qlen) do { } while (0)
940 #define trace_rcu_batch_start(rcuname, qlen, blimit) do { } while (0)
941 #endif
942 #define trace_rcu_invoke_callback(rcuname, rhp) do { } while (0)
943 #define trace_rcu_invoke_kfree_callback(rcuname, rhp, offset) do { } while (0)
944 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
945 #define trace_rcu_batch_end(rcuname, callbacks_invoked, cb, nr, iit, risk) \
946 do { } while (0)
947 #else
948 #define trace_rcu_batch_end(rcuname, callbacks_invoked) do { } while (0)
949 #endif
950 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
951 #define trace_rcu_torture_read(rcutorturename, rhp, secs, c_old, c) \
952 do { } while (0)
953 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
954 #define trace_rcu_torture_read(rcutorturename, rhp) do { } while (0)
955 #endif
956 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
957 #define trace_rcu_barrier(name, s, cpu, cnt, done) do { } while (0)
958 #endif
959 #endif /* #else #ifdef CONFIG_RCU_TRACE */
960
961 #endif /* LTTNG_TRACE_RCU_H */
962
963 /* This part must be outside protection */
964 #include <lttng/define_trace.h>
This page took 0.081055 seconds and 4 git commands to generate.