diff options
Diffstat (limited to 'arch/ia64/kernel/machine_kexec.c')
-rw-r--r-- | arch/ia64/kernel/machine_kexec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/ia64/kernel/machine_kexec.c b/arch/ia64/kernel/machine_kexec.c index e2ccc9f660c5..714179587a7a 100644 --- a/arch/ia64/kernel/machine_kexec.c +++ b/arch/ia64/kernel/machine_kexec.c | |||
@@ -70,12 +70,14 @@ void machine_kexec_cleanup(struct kimage *image) | |||
70 | 70 | ||
71 | void machine_shutdown(void) | 71 | void machine_shutdown(void) |
72 | { | 72 | { |
73 | #ifdef CONFIG_HOTPLUG_CPU | ||
73 | int cpu; | 74 | int cpu; |
74 | 75 | ||
75 | for_each_online_cpu(cpu) { | 76 | for_each_online_cpu(cpu) { |
76 | if (cpu != smp_processor_id()) | 77 | if (cpu != smp_processor_id()) |
77 | cpu_down(cpu); | 78 | cpu_down(cpu); |
78 | } | 79 | } |
80 | #endif | ||
79 | kexec_disable_iosapic(); | 81 | kexec_disable_iosapic(); |
80 | } | 82 | } |
81 | 83 | ||