aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/trace/events/rcu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trace/events/rcu.h b/include/trace/events/rcu.h
index d4f559b1ec34..f91949850fce 100644
--- a/include/trace/events/rcu.h
+++ b/include/trace/events/rcu.h
@@ -393,7 +393,7 @@ TRACE_EVENT(rcu_kfree_callback,
393 */ 393 */
394TRACE_EVENT(rcu_batch_start, 394TRACE_EVENT(rcu_batch_start,
395 395
396 TP_PROTO(char *rcuname, long qlen_lazy, long qlen, int blimit), 396 TP_PROTO(char *rcuname, long qlen_lazy, long qlen, long blimit),
397 397
398 TP_ARGS(rcuname, qlen_lazy, qlen, blimit), 398 TP_ARGS(rcuname, qlen_lazy, qlen, blimit),
399 399
@@ -401,7 +401,7 @@ TRACE_EVENT(rcu_batch_start,
401 __field(char *, rcuname) 401 __field(char *, rcuname)
402 __field(long, qlen_lazy) 402 __field(long, qlen_lazy)
403 __field(long, qlen) 403 __field(long, qlen)
404 __field(int, blimit) 404 __field(long, blimit)
405 ), 405 ),
406 406
407 TP_fast_assign( 407 TP_fast_assign(
@@ -411,7 +411,7 @@ TRACE_EVENT(rcu_batch_start,
411 __entry->blimit = blimit; 411 __entry->blimit = blimit;
412 ), 412 ),
413 413
414 TP_printk("%s CBs=%ld/%ld bl=%d", 414 TP_printk("%s CBs=%ld/%ld bl=%ld",
415 __entry->rcuname, __entry->qlen_lazy, __entry->qlen, 415 __entry->rcuname, __entry->qlen_lazy, __entry->qlen,
416 __entry->blimit) 416 __entry->blimit)
417); 417);