From: Li Zhong Date: Tue, 27 Nov 2012 05:58:27 +0000 (+0800) Subject: rcu: Use new nesting value for rcu_dyntick trace in rcu_eqs_enter_common X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=1bdc2b7d243dc8b9aadfc8002a69cf911e9e3e72;p=linux-edison.git rcu: Use new nesting value for rcu_dyntick trace in rcu_eqs_enter_common This patch uses the real new value of dynticks_nesting instead of 0 in rcu_eqs_enter_common(). Signed-off-by: Li Zhong Signed-off-by: Paul E. McKenney Reviewed-by: Josh Triplett --- diff --git a/kernel/rcutree.c b/kernel/rcutree.c index cceda7602df..d145796bd61 100644 --- a/kernel/rcutree.c +++ b/kernel/rcutree.c @@ -336,7 +336,7 @@ static struct rcu_node *rcu_get_root(struct rcu_state *rsp) static void rcu_eqs_enter_common(struct rcu_dynticks *rdtp, long long oldval, bool user) { - trace_rcu_dyntick("Start", oldval, 0); + trace_rcu_dyntick("Start", oldval, rdtp->dynticks_nesting); if (!user && !is_idle_task(current)) { struct task_struct *idle = idle_task(smp_processor_id());