diff options
author | Vijaya Kumar K <vijay.kilari@gmail.com> | 2013-08-14 08:28:28 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-08-19 19:14:46 -0400 |
commit | 4f9b4fb7a2091eec339413a460b1665758401828 (patch) | |
tree | 56755a6a8234cfa647a621bec35b9019def3edc3 | |
parent | 2a2822475d0e734adffab72644329d9c042ce2e1 (diff) |
ARM: 7815/1: kexec: offline non panic CPUs on Kdump panic
In case of normal kexec kernel load, all cpu's are offlined
before calling machine_kexec().But in case crash panic cpus
are relaxed in machine_crash_nonpanic_core() SMP function
but not offlined.
When crash kernel is loaded with kexec and on panic trigger
machine_kexec() checks for number of cpus online.
If more than one cpu is online machine_kexec() fails to load
with below error
kexec: error: multiple CPUs still online
In machine_crash_nonpanic_core() SMP function, offline CPU
before cpu_relax
Signed-off-by: Vijaya Kumar K <Vijaya.Kumar@caviumnetworks.com>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/kernel/machine_kexec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kernel/machine_kexec.c b/arch/arm/kernel/machine_kexec.c index d7c82df69243..57221e349a7c 100644 --- a/arch/arm/kernel/machine_kexec.c +++ b/arch/arm/kernel/machine_kexec.c | |||
@@ -82,6 +82,7 @@ void machine_crash_nonpanic_core(void *unused) | |||
82 | crash_save_cpu(®s, smp_processor_id()); | 82 | crash_save_cpu(®s, smp_processor_id()); |
83 | flush_cache_all(); | 83 | flush_cache_all(); |
84 | 84 | ||
85 | set_cpu_online(smp_processor_id(), false); | ||
85 | atomic_dec(&waiting_for_crash_ipi); | 86 | atomic_dec(&waiting_for_crash_ipi); |
86 | while (1) | 87 | while (1) |
87 | cpu_relax(); | 88 | cpu_relax(); |