Re: [PATCH tip/core/rcu 3/4] rcu: stop spurious warnings fromsynchronize_sched_expedited

From: Paul E. McKenney
Date: Tue Feb 21 2012 - 13:28:28 EST


On Tue, Feb 21, 2012 at 07:00:17PM +0100, Peter Zijlstra wrote:
> On Tue, 2012-02-21 at 09:58 -0800, Paul E. McKenney wrote:
> > From: Hugh Dickins <hughd@xxxxxxxxxx>
> >
> > synchronize_sched_expedited() is spamming CONFIG_DEBUG_PREEMPT=y
> > users with an unintended warning from the cpu_is_offline() check:
> > use raw_smp_processor_id() instead of smp_processor_id() there.
>
> This fails to mention why it makes sense to test a random cpu for
> offline-ness..

The check was already there, Hugh simply fixed it to use raw_. The check
itself was added in c0d6d01bf (Check for illegal use of RCU from offlined
CPUs). The purpose is to catch improper use of RCU from CPU_DYING
notifiers and on the path from the CPU_DYING notifiers to the idle loop.

Thanx, Paul

> > Signed-off-by: Hugh Dickins <hughd@xxxxxxxxxx>
> > Signed-off-by: Paul E. McKenney <paulmck@xxxxxxxxxxxxxxxxxx>
> > ---
> > kernel/rcutree.c | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/kernel/rcutree.c b/kernel/rcutree.c
> > index eacc10b..1050d6d 100644
> > --- a/kernel/rcutree.c
> > +++ b/kernel/rcutree.c
> > @@ -2014,7 +2014,7 @@ void synchronize_sched_expedited(void)
> > /* Note that atomic_inc_return() implies full memory barrier. */
> > firstsnap = snap = atomic_inc_return(&sync_sched_expedited_started);
> > get_online_cpus();
> > - WARN_ON_ONCE(cpu_is_offline(smp_processor_id()));
> > + WARN_ON_ONCE(cpu_is_offline(raw_smp_processor_id()));
> >
> > /*
> > * Each pass through the following loop attempts to force a
>

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/