powerpc: Secondary CPUs must set cpu_callin_map after setting active and online
authorAnton Blanchard <anton@samba.org>
Mon, 8 Dec 2014 23:58:19 +0000 (10:58 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 9 Dec 2014 05:36:11 +0000 (16:36 +1100)
commit7c5c92ed56d932b2c19c3f8aea86369509407d33
tree242767f52471da20317cd85b4f6a6057f02e1aac
parent56548fc0e86cb9156af7a7e1f15ba78f251dafaf
powerpc: Secondary CPUs must set cpu_callin_map after setting active and online

I have a busy ppc64le KVM box where guests sometimes hit the infamous
"kernel BUG at kernel/smpboot.c:134!" issue during boot:

  BUG_ON(td->cpu != smp_processor_id());

Basically a per CPU hotplug thread scheduled on the wrong CPU. The oops
output confirms it:

  CPU: 0
  Comm: watchdog/130

The problem is that we aren't ensuring the CPU active and online bits are set
before allowing the master to continue on. The master unparks the secondary
CPUs kthreads and the scheduler looks for a CPU to run on. It calls
select_task_rq and realises the suggested CPU is not in the cpus_allowed
mask. It then ends up in select_fallback_rq, and since the active and
online bits aren't set we choose some other CPU to run on.

Cc: stable@vger.kernel.org
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/kernel/smp.c