diff options
author | Alex Nixon <alex.nixon@citrix.com> | 2008-08-22 06:52:11 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-25 04:59:18 -0400 |
commit | 93be71b672f167b1e8c23725114f86305354f0ac (patch) | |
tree | e443c353919877853fef4f26128b8747ef5a6908 /arch/x86/kernel/process_64.c | |
parent | e4f807c2b4d81636fc63993368646c5bfd42b22f (diff) |
x86: add cpu hotplug hooks into smp_ops
Signed-off-by: Alex Nixon <alex.nixon@citrix.com>
Acked-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/process_64.c')
-rw-r--r-- | arch/x86/kernel/process_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index 71553b664e2a..dfd3f5752085 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c | |||
@@ -90,7 +90,7 @@ DECLARE_PER_CPU(int, cpu_state); | |||
90 | 90 | ||
91 | #include <asm/nmi.h> | 91 | #include <asm/nmi.h> |
92 | /* We halt the CPU with physical CPU hotplug */ | 92 | /* We halt the CPU with physical CPU hotplug */ |
93 | static inline void play_dead(void) | 93 | void native_play_dead(void) |
94 | { | 94 | { |
95 | idle_task_exit(); | 95 | idle_task_exit(); |
96 | mb(); | 96 | mb(); |
@@ -102,7 +102,7 @@ static inline void play_dead(void) | |||
102 | wbinvd_halt(); | 102 | wbinvd_halt(); |
103 | } | 103 | } |
104 | #else | 104 | #else |
105 | static inline void play_dead(void) | 105 | void native_play_dead(void) |
106 | { | 106 | { |
107 | BUG(); | 107 | BUG(); |
108 | } | 108 | } |