Re: nohz_cpu_mask question (was: Re: [PATCH tip/core/rcu] classicRCU locking and memory-barrier cleanups)

From: Paul E. McKenney
Date: Tue Aug 19 2008 - 13:41:43 EST


On Tue, Aug 19, 2008 at 07:16:32PM +0200, Manfred Spraul wrote:
> Hi all,
>
> can someone explain me nohz_cpu_mask?
>
> If I understand it correctly, it merely means that this cpu does not take
> timer interrupts, correct?
> The cpu can still take "real" interupts, e.g. a nic interrupt. The cpu
> could also do softirq processing.

Yep, that is correct.

> Is that correct? Ingo?
>
> If nohz cpus can take normal interrupts, then it would be wrong to exclude
> these cpus from the mask of cpus that must pass a quiescent cycle - a
> softirq could hold on a pointers.

That is indeed the approach that preemptable RCU takes, and
I am considering making classic RCU also take this approach.
The main advantage is that sleeping CPUs need not be awakened
unless it is participating directly in the RCU grace period (as in
it has some callbacks). See rcu_irq_enter() and rcu_irq_exit() in
kernel/rcupreempt.c as well as rcu_enter_nohz() and rcu_exit_nohz()
in include/linux/rcupreempt.h. And http://lwn.net/Articles/279077/
for the proof of correctness. ;-)

Instead, classic RCU prevents any CPU from going into nohz mode in the
first place if RCU is waiting on it. I am not completely confident
in this algorithm, which is one reason that I am looking to switch to
the preemptable RCU approach. The other reason is power efficiency --
after all, why bother waking up a CPU just to have it tell RCU that it
is sitting idle?

Thanx, Paul
--
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/