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