diff options
author | Horms <horms@verge.net.au> | 2007-02-05 13:49:10 -0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-02-05 13:49:10 -0800 |
commit | c237508afa5d47282d3047784864013eebdc68ab (patch) | |
tree | 8fb1cfe0928995cb81a6d6456366f77fe9a5fc06 /arch/ia64/kernel/machine_kexec.c | |
parent | 9473252f20e8482464415d9030b3957b5593796d (diff) | |
download | linux-c237508afa5d47282d3047784864013eebdc68ab.tar.bz2 |
[IA64] kexec: Move machine_shutdown from machine_kexec.c to process.c
This moves the ia64 implementation of machine_shutdown() from
machine_kexec.c to process.c, which is in keeping with the implelmentation
on other architectures, and seems like a much more appropriate home for it.
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/machine_kexec.c')
-rw-r--r-- | arch/ia64/kernel/machine_kexec.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/ia64/kernel/machine_kexec.c b/arch/ia64/kernel/machine_kexec.c index 655195d483df..e51cd904a23e 100644 --- a/arch/ia64/kernel/machine_kexec.c +++ b/arch/ia64/kernel/machine_kexec.c @@ -69,19 +69,6 @@ void machine_kexec_cleanup(struct kimage *image) { } -void machine_shutdown(void) -{ -#ifdef CONFIG_HOTPLUG_CPU - int cpu; - - for_each_online_cpu(cpu) { - if (cpu != smp_processor_id()) - cpu_down(cpu); - } -#endif - kexec_disable_iosapic(); -} - /* * Do not allocate memory (or fail in any way) in machine_kexec(). * We are past the point of no return, committed to rebooting now. |