aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2012-11-14 17:37:29 -0500
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2013-01-08 17:15:25 -0500
commit3aac7a8d574285be855450d103a421b8f8ec89d4 (patch)
tree49e734939e3514c05b93d92428c73f88e86f1f0d /include/trace
parent1b0048a44c502c5ab850203e6e0a6498d7d8676d (diff)
rcu: Fix blimit type for trace_rcu_batch_start()
When the type of global variable blimit changed from int to long, the type of the blimit argument of trace_rcu_batch_start() needed to have changed. This commit fixes this issue. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'include/trace')
-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);