| To: | "Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com> |
|---|---|
| Subject: | Re: [PATCH 4/12] arch/mips: remove references to cpu_*_map. |
| From: | Rusty Russell <rusty@rustcorp.com.au> |
| Date: | Thu, 16 Feb 2012 10:29:24 +1030 |
| Cc: | Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Venkatesh Pallipadi <venki@google.com>, "akpm\@linux-foundation.org" <akpm@linux-foundation.org> |
| In-reply-to: | <4F3B78C2.7040709@linux.vnet.ibm.com> |
| References: | <1329281884.26321.rusty@rustcorp.com.au> <4F3B78C2.7040709@linux.vnet.ibm.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Notmuch/0.6.1-1 (http://notmuchmail.org) Emacs/23.3.1 (i686-pc-linux-gnu) |
On Wed, 15 Feb 2012 14:50:02 +0530, "Srivatsa S. Bhat"
<srivatsa.bhat@linux.vnet.ibm.com> wrote:
> > - cpu_clear(smp_processor_id(), mask);
> > - for_each_cpu_mask(cpu, mask)
> > - if (cpu_context(cpu, mm))
> > + for_each_online_cpu(cpu) {
> > + if (cpu != smp_processor_id() && cpu_context(cpu, mm))
> > cpu_context(cpu, mm) = 0;
> > + }
>
>
> Strictly speaking, this one is not a mere cleanup. It causes a subtle change
> in
> behaviour: earlier, it used to iterate over a local copy of cpu_online_mask,
> which
> wouldn't change. However, with this patch, it will iterate directly over
> cpu_online_mask, which can change underneath. (The preempt_disable() won't
> stop
> new CPUs from coming in.. it only prevents CPUs from going offline, that too
> provided that we use stop_machine stuff for CPU offline, which we do
> currently.)
There's a preempt_disable() around this whole function, so online_mask
can't change.
Same with the others.
> > + mask = *cpu_online_mask;
> > + cpumask_clear(&mask, cpu);
>
>
> This should be cpumask_clear_cpu(cpu, &mask);
Good catch. I copied the bitmask ops, and continually regret it.
I've rolled all these together with your fixes, added your ia64 patch,
and am rebasing to -next now, so I can hand this all across to akpm.
Thanks,
Rusty.
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] arch/mips/kernel/smp-bmips.c included linux/init.h twice, Danny Kukawka |
|---|---|
| Next by Date: | [PATCH 4/5] documentation: remove references to cpu_*_map., Rusty Russell |
| Previous by Thread: | Re: [PATCH 4/12] arch/mips: remove references to cpu_*_map., Srivatsa S. Bhat |
| Next by Thread: | [PATCH] arch/mips/kernel/smp-bmips.c included linux/init.h twice, Danny Kukawka |
| Indexes: | [Date] [Thread] [Top] [All Lists] |