Prev: [PATCH RFC tip/core/rcu 11/30] radix-tree: __rcu annotations
Next: [PATCH RFC tip/core/rcu 23/30] rcu head remove init
From: Paul E. McKenney on 14 Jul 2010 16:20 The print_rcu_pendings() function used the ->rda[] array, so this commit makes it instead use per_cpu_ptr(). Signed-off-by: Paul E. McKenney <paulmck(a)linux.vnet.ibm.com> --- kernel/rcutree_trace.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/rcutree_trace.c b/kernel/rcutree_trace.c index 36c95b4..458e032 100644 --- a/kernel/rcutree_trace.c +++ b/kernel/rcutree_trace.c @@ -262,7 +262,7 @@ static void print_rcu_pendings(struct seq_file *m, struct rcu_state *rsp) struct rcu_data *rdp; for_each_possible_cpu(cpu) { - rdp = rsp->rda[cpu]; + rdp = per_cpu_ptr(rsp->rda, cpu); if (rdp->beenonline) print_one_rcu_pending(m, rdp); } -- 1.7.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |