aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace
diff options
context:
space:
mode:
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/rcu.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/trace/events/rcu.h b/include/trace/events/rcu.h
index 38dbd97d65a3..95b7491196aa 100644
--- a/include/trace/events/rcu.h
+++ b/include/trace/events/rcu.h
@@ -325,23 +325,23 @@ TRACE_EVENT(rcu_preempt_task,
325 */ 325 */
326TRACE_EVENT(rcu_unlock_preempted_task, 326TRACE_EVENT(rcu_unlock_preempted_task,
327 327
328 TP_PROTO(const char *rcuname, unsigned long gpnum, int pid), 328 TP_PROTO(const char *rcuname, unsigned long gp_seq, int pid),
329 329
330 TP_ARGS(rcuname, gpnum, pid), 330 TP_ARGS(rcuname, gp_seq, pid),
331 331
332 TP_STRUCT__entry( 332 TP_STRUCT__entry(
333 __field(const char *, rcuname) 333 __field(const char *, rcuname)
334 __field(unsigned long, gpnum) 334 __field(unsigned long, gp_seq)
335 __field(int, pid) 335 __field(int, pid)
336 ), 336 ),
337 337
338 TP_fast_assign( 338 TP_fast_assign(
339 __entry->rcuname = rcuname; 339 __entry->rcuname = rcuname;
340 __entry->gpnum = gpnum; 340 __entry->gp_seq = gp_seq;
341 __entry->pid = pid; 341 __entry->pid = pid;
342 ), 342 ),
343 343
344 TP_printk("%s %lu %d", __entry->rcuname, __entry->gpnum, __entry->pid) 344 TP_printk("%s %lu %d", __entry->rcuname, __entry->gp_seq, __entry->pid)
345); 345);
346 346
347/* 347/*
@@ -762,7 +762,7 @@ TRACE_EVENT(rcu_barrier,
762 do { } while (0) 762 do { } while (0)
763#define trace_rcu_nocb_wake(rcuname, cpu, reason) do { } while (0) 763#define trace_rcu_nocb_wake(rcuname, cpu, reason) do { } while (0)
764#define trace_rcu_preempt_task(rcuname, pid, gp_seq) do { } while (0) 764#define trace_rcu_preempt_task(rcuname, pid, gp_seq) do { } while (0)
765#define trace_rcu_unlock_preempted_task(rcuname, gpnum, pid) do { } while (0) 765#define trace_rcu_unlock_preempted_task(rcuname, gp_seq, pid) do { } while (0)
766#define trace_rcu_quiescent_state_report(rcuname, gpnum, mask, qsmask, level, \ 766#define trace_rcu_quiescent_state_report(rcuname, gpnum, mask, qsmask, level, \
767 grplo, grphi, gp_tasks) do { } \ 767 grplo, grphi, gp_tasks) do { } \
768 while (0) 768 while (0)