diff options
author | Hemmo Nieminen <hemmo.nieminen@iki.fi> | 2015-01-15 23:01:59 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-01-29 23:54:07 +0100 |
commit | c7754e75100ed5e3068ac5085747f2bfc386c8d6 (patch) | |
tree | efafb43133dd499625f9055aa3b586603f086c68 | |
parent | 63a87fe0d0de2ce126a8cec9a299a133cfd5658e (diff) | |
download | talos-op-linux-c7754e75100ed5e3068ac5085747f2bfc386c8d6.tar.gz talos-op-linux-c7754e75100ed5e3068ac5085747f2bfc386c8d6.zip |
MIPS: Fix kernel lockup or crash after CPU offline/online
As printk() invocation can cause e.g. a TLB miss, printk() cannot be
called before the exception handlers have been properly initialized.
This can happen e.g. when netconsole has been loaded as a kernel module
and the TLB table has been cleared when a CPU was offline.
Call cpu_report() in start_secondary() only after the exception handlers
have been initialized to fix this.
Without the patch the kernel will randomly either lockup or crash
after a CPU is onlined and the console driver is a module.
Signed-off-by: Hemmo Nieminen <hemmo.nieminen@iki.fi>
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Cc: stable@vger.kernel.org
Cc: David Daney <david.daney@cavium.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/8953/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index c94c4e92e17d..1c0d8c50b7e1 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c @@ -123,10 +123,10 @@ asmlinkage void start_secondary(void) unsigned int cpu; cpu_probe(); - cpu_report(); per_cpu_trap_init(false); mips_clockevent_init(); mp_ops->init_secondary(); + cpu_report(); /* * XXX parity protection should be folded in here when it's converted |