Cleanup: Remove toplevel directory from include search path
[lttng-modules.git] / include / instrumentation / events / lttng-module / rcu.h
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: GPL-2.0-only */
b87700e3
AG
2#undef TRACE_SYSTEM
3#define TRACE_SYSTEM rcu
4
3bc29f0a
MD
5#if !defined(LTTNG_TRACE_RCU_H) || defined(TRACE_HEADER_MULTI_READ)
6#define LTTNG_TRACE_RCU_H
b87700e3 7
3b4aafcb 8#include <lttng/tracepoint-event.h>
b87700e3
AG
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 */
3bc29f0a 22LTTNG_TRACEPOINT_EVENT(rcu_utilization,
b87700e3 23
8e621312
MD
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)) */
b87700e3 27 TP_PROTO(char *s),
8e621312 28#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
b87700e3
AG
29
30 TP_ARGS(s),
31
f127e61e
MD
32 TP_FIELDS(
33 ctf_string(s, s)
34 )
b87700e3
AG
35)
36
37#ifdef CONFIG_RCU_TRACE
38
12318fb8
MD
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)
b87700e3
AG
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 */
aa2608d1
MJ
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))
248211c9
MJ
55LTTNG_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))
3bc29f0a 68LTTNG_TRACEPOINT_EVENT(rcu_grace_period,
b87700e3 69
01adf18e 70 TP_PROTO(const char *rcuname, unsigned long gpnum, const char *gpevent),
248211c9
MJ
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
81LTTNG_TRACEPOINT_EVENT(rcu_grace_period,
82
b87700e3
AG
83 TP_PROTO(char *rcuname, unsigned long gpnum, char *gpevent),
84
85 TP_ARGS(rcuname, gpnum, gpevent),
86
f127e61e
MD
87 TP_FIELDS(
88 ctf_string(rcuname, rcuname)
89 ctf_integer(unsigned long, gpnum, gpnum)
90 ctf_string(gpevent, gpevent)
91 )
b87700e3 92)
248211c9 93#endif
b87700e3
AG
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 */
aa2608d1
MJ
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))
248211c9
MJ
104LTTNG_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))
3bc29f0a 121LTTNG_TRACEPOINT_EVENT(rcu_grace_period_init,
b87700e3 122
01adf18e
MD
123 TP_PROTO(const char *rcuname, unsigned long gpnum, u8 level,
124 int grplo, int grphi, unsigned long qsmask),
248211c9
MJ
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
138LTTNG_TRACEPOINT_EVENT(rcu_grace_period_init,
139
b87700e3
AG
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
f127e61e
MD
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 )
b87700e3 153)
248211c9 154#endif
b87700e3
AG
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 */
aa2608d1
MJ
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))
248211c9
MJ
164LTTNG_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))
3bc29f0a 177LTTNG_TRACEPOINT_EVENT(rcu_preempt_task,
b87700e3 178
01adf18e 179 TP_PROTO(const char *rcuname, int pid, unsigned long gpnum),
248211c9
MJ
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
190LTTNG_TRACEPOINT_EVENT(rcu_preempt_task,
191
b87700e3
AG
192 TP_PROTO(char *rcuname, int pid, unsigned long gpnum),
193
194 TP_ARGS(rcuname, pid, gpnum),
195
f127e61e
MD
196 TP_FIELDS(
197 ctf_string(rcuname, rcuname)
198 ctf_integer(unsigned long, gpnum, gpnum)
199 ctf_integer(int, pid, pid)
200 )
b87700e3 201)
248211c9 202#endif
b87700e3
AG
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 */
aa2608d1
MJ
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))
248211c9
MJ
211LTTNG_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))
3bc29f0a 224LTTNG_TRACEPOINT_EVENT(rcu_unlock_preempted_task,
b87700e3 225
01adf18e 226 TP_PROTO(const char *rcuname, unsigned long gpnum, int pid),
248211c9
MJ
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
237LTTNG_TRACEPOINT_EVENT(rcu_unlock_preempted_task,
238
b87700e3
AG
239 TP_PROTO(char *rcuname, unsigned long gpnum, int pid),
240
241 TP_ARGS(rcuname, gpnum, pid),
242
f127e61e
MD
243 TP_FIELDS(
244 ctf_string(rcuname, rcuname)
245 ctf_integer(unsigned long, gpnum, gpnum)
246 ctf_integer(int, pid, pid)
247 )
b87700e3 248)
248211c9 249#endif
b87700e3
AG
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 */
aa2608d1
MJ
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))
248211c9
MJ
261LTTNG_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))
3bc29f0a 281LTTNG_TRACEPOINT_EVENT(rcu_quiescent_state_report,
b87700e3 282
01adf18e
MD
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),
248211c9
MJ
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
301LTTNG_TRACEPOINT_EVENT(rcu_quiescent_state_report,
302
b87700e3
AG
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
f127e61e
MD
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 )
b87700e3 319)
248211c9 320#endif
b87700e3
AG
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 */
aa2608d1
MJ
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))
248211c9
MJ
332LTTNG_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))
3bc29f0a 346LTTNG_TRACEPOINT_EVENT(rcu_fqs,
b87700e3 347
01adf18e 348 TP_PROTO(const char *rcuname, unsigned long gpnum, int cpu, const char *qsevent),
248211c9
MJ
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
360LTTNG_TRACEPOINT_EVENT(rcu_fqs,
361
b87700e3
AG
362 TP_PROTO(char *rcuname, unsigned long gpnum, int cpu, char *qsevent),
363
364 TP_ARGS(rcuname, gpnum, cpu, qsevent),
365
f127e61e
MD
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 )
b87700e3 372)
248211c9 373#endif
b87700e3 374
12318fb8
MD
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 */
b87700e3
AG
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 */
8c7190e0
MD
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)
6334822c
MJ
398LTTNG_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))
3bc29f0a 413LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
b87700e3 414
760a1cae
MJ
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))
428LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
01adf18e 429
01adf18e
MD
430 TP_PROTO(const char *polarity, long long oldnesting, long long newnesting),
431
432 TP_ARGS(polarity, oldnesting, newnesting),
760a1cae
MJ
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)
01adf18e 440#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
760a1cae
MJ
441LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
442
b87700e3
AG
443 TP_PROTO(char *polarity, long long oldnesting, long long newnesting),
444
445 TP_ARGS(polarity, oldnesting, newnesting),
760a1cae
MJ
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)
b87700e3 453#else
760a1cae
MJ
454LTTNG_TRACEPOINT_EVENT(rcu_dyntick,
455
b87700e3
AG
456 TP_PROTO(char *polarity),
457
458 TP_ARGS(polarity),
b87700e3 459
f127e61e
MD
460 TP_FIELDS(
461 ctf_string(polarity, polarity)
f127e61e 462 )
b87700e3 463)
760a1cae
MJ
464#endif
465
b87700e3
AG
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 */
3bc29f0a 490LTTNG_TRACEPOINT_EVENT(rcu_prep_idle,
b87700e3 491
01adf18e
MD
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)) */
b87700e3 495 TP_PROTO(char *reason),
01adf18e 496#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
b87700e3
AG
497
498 TP_ARGS(reason),
499
f127e61e
MD
500 TP_FIELDS(
501 ctf_string(reason, reason)
502 )
b87700e3
AG
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 */
3e22913e
MJ
513#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
514LTTNG_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))
3bc29f0a 528LTTNG_TRACEPOINT_EVENT(rcu_callback,
b87700e3 529
01adf18e
MD
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),
3e22913e
MJ
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)
01adf18e 543#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
3e22913e
MJ
544LTTNG_TRACEPOINT_EVENT(rcu_callback,
545
b87700e3
AG
546 TP_PROTO(char *rcuname, struct rcu_head *rhp, long qlen_lazy,
547 long qlen),
548
549 TP_ARGS(rcuname, rhp, qlen_lazy, qlen),
3e22913e
MJ
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)
b87700e3 559#else
3e22913e
MJ
560LTTNG_TRACEPOINT_EVENT(rcu_callback,
561
b87700e3
AG
562 TP_PROTO(char *rcuname, struct rcu_head *rhp, long qlen),
563
564 TP_ARGS(rcuname, rhp, qlen),
b87700e3 565
f127e61e
MD
566 TP_FIELDS(
567 ctf_string(rcuname, rcuname)
fa91fcac
MD
568 ctf_integer_hex(void *, rhp, rhp)
569 ctf_integer_hex(void *, func, rhp->func)
f127e61e
MD
570 ctf_integer(long, qlen, qlen)
571 )
b87700e3 572)
3e22913e
MJ
573#endif
574
b87700e3
AG
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 */
3e22913e 584#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
3bc29f0a 585LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
b87700e3 586
3e22913e
MJ
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))
600LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
01adf18e 601
01adf18e
MD
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),
3e22913e
MJ
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)
01adf18e 615#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
3e22913e
MJ
616LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
617
b87700e3
AG
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),
3e22913e
MJ
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)
b87700e3 631#else
3e22913e
MJ
632LTTNG_TRACEPOINT_EVENT(rcu_kfree_callback,
633
b87700e3
AG
634 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset,
635 long qlen),
636
637 TP_ARGS(rcuname, rhp, offset, qlen),
b87700e3 638
f127e61e
MD
639 TP_FIELDS(
640 ctf_string(rcuname, rcuname)
fa91fcac
MD
641 ctf_integer_hex(void *, rhp, rhp)
642 ctf_integer_hex(unsigned long, offset, offset)
f127e61e
MD
643 ctf_integer(long, qlen, qlen)
644 )
b87700e3 645)
3e22913e 646#endif
b87700e3
AG
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 */
3e22913e
MJ
655#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
656LTTNG_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))
3bc29f0a 669LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
b87700e3 670
01adf18e
MD
671 TP_PROTO(const char *rcuname, long qlen_lazy, long qlen, long blimit),
672
673 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
3e22913e
MJ
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)
01adf18e 682#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
3e22913e
MJ
683LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
684
4b4111c9
MD
685 TP_PROTO(char *rcuname, long qlen_lazy, long qlen, long blimit),
686
687 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
3e22913e
MJ
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)
4b4111c9 696#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
3e22913e
MJ
697LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
698
b87700e3
AG
699 TP_PROTO(char *rcuname, long qlen_lazy, long qlen, int blimit),
700
701 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
3e22913e
MJ
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)
b87700e3 710#else
3e22913e
MJ
711LTTNG_TRACEPOINT_EVENT(rcu_batch_start,
712
b87700e3
AG
713 TP_PROTO(char *rcuname, long qlen, int blimit),
714
715 TP_ARGS(rcuname, qlen, blimit),
b87700e3 716
f127e61e
MD
717 TP_FIELDS(
718 ctf_string(rcuname, rcuname)
f127e61e 719 ctf_integer(long, qlen, qlen)
f127e61e 720 ctf_integer(int, blimit, blimit)
f127e61e 721 )
b87700e3 722)
3e22913e 723#endif
b87700e3
AG
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 */
3bc29f0a 730LTTNG_TRACEPOINT_EVENT(rcu_invoke_callback,
b87700e3 731
01adf18e
MD
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)) */
b87700e3 735 TP_PROTO(char *rcuname, struct rcu_head *rhp),
01adf18e 736#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
b87700e3
AG
737
738 TP_ARGS(rcuname, rhp),
739
f127e61e
MD
740 TP_FIELDS(
741 ctf_string(rcuname, rcuname)
fa91fcac
MD
742 ctf_integer_hex(void *, rhp, rhp)
743 ctf_integer_hex(void *, func, rhp->func)
f127e61e 744 )
b87700e3
AG
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 */
3bc29f0a 754LTTNG_TRACEPOINT_EVENT(rcu_invoke_kfree_callback,
b87700e3 755
01adf18e
MD
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)) */
b87700e3 759 TP_PROTO(char *rcuname, struct rcu_head *rhp, unsigned long offset),
01adf18e 760#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
b87700e3
AG
761
762 TP_ARGS(rcuname, rhp, offset),
763
f127e61e
MD
764 TP_FIELDS(
765 ctf_string(rcuname, rcuname)
fa91fcac 766 ctf_integer_hex(void *, rhp, rhp)
f127e61e
MD
767 ctf_integer(unsigned long, offset, offset)
768 )
b87700e3
AG
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 */
3bc29f0a 782LTTNG_TRACEPOINT_EVENT(rcu_batch_end,
b87700e3 783
01adf18e
MD
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))
b87700e3
AG
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
f127e61e
MD
805 TP_FIELDS(
806 ctf_string(rcuname, rcuname)
807 ctf_integer(int, callbacks_invoked, callbacks_invoked)
01adf18e 808#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,13,0))
f127e61e
MD
809 ctf_integer(char, cb, cb)
810 ctf_integer(char, nr, nr)
811 ctf_integer(char, iit, iit)
812 ctf_integer(char, risk, risk)
01adf18e 813#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
f127e61e
MD
814 ctf_integer(bool, cb, cb)
815 ctf_integer(bool, nr, nr)
816 ctf_integer(bool, iit, iit)
817 ctf_integer(bool, risk, risk)
b87700e3 818#endif
f127e61e 819 )
b87700e3
AG
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 */
3bc29f0a 828LTTNG_TRACEPOINT_EVENT(rcu_torture_read,
b87700e3 829
01adf18e
MD
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))
a828b9d5
MD
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
b87700e3
AG
841 TP_PROTO(char *rcutorturename, struct rcu_head *rhp),
842
843 TP_ARGS(rcutorturename, rhp),
a828b9d5 844#endif
b87700e3 845
f127e61e
MD
846 TP_FIELDS(
847 ctf_string(rcutorturename, rcutorturename)
fa91fcac 848 ctf_integer_hex(struct rcu_head *, rhp, rhp)
a828b9d5 849#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
f127e61e
MD
850 ctf_integer(unsigned long, secs, secs)
851 ctf_integer(unsigned long, c_old, c_old)
852 ctf_integer(unsigned long, c, c)
a828b9d5 853#endif
f127e61e 854 )
b87700e3
AG
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 */
3bc29f0a 876LTTNG_TRACEPOINT_EVENT(rcu_barrier,
b87700e3 877
01adf18e
MD
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)) */
b87700e3 881 TP_PROTO(char *rcuname, char *s, int cpu, int cnt, unsigned long done),
01adf18e 882#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0)) */
b87700e3
AG
883
884 TP_ARGS(rcuname, s, cpu, cnt, done),
885
f127e61e
MD
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 )
b87700e3
AG
893)
894#endif
895
896#else /* #ifdef CONFIG_RCU_TRACE */
897
aa2608d1
MJ
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))
248211c9
MJ
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
b87700e3
AG
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)
248211c9
MJ
919#endif
920
7621c267 921#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,16,0))
f442e68c
MD
922#define trace_rcu_dyntick(polarity, oldnesting, newnesting, dyntick) do { } while (0)
923#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
b87700e3
AG
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
a828b9d5
MD
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))
b87700e3
AG
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
3bc29f0a 961#endif /* LTTNG_TRACE_RCU_H */
b87700e3
AG
962
963/* This part must be outside protection */
3b4aafcb 964#include <lttng/define_trace.h>
This page took 0.077723 seconds and 4 git commands to generate.