diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-03-03 12:12:34 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:53 -0400 |
commit | 8678969e60d80527d96d2af0011e72c87c9c1fe5 (patch) | |
tree | 4be2bc2caabfb76dbb7a3b09a2774bcc52e9ff53 /include/asm-x86/smp.h | |
parent | c76cb36846da6d5d6fb2951968869faa4fd1001d (diff) |
x86: merge smp_send_reschedule
function definition is moved to common header, x86_64 version is now called
native_smp_send_reschedule
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/smp.h')
-rw-r--r-- | include/asm-x86/smp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-x86/smp.h b/include/asm-x86/smp.h index ee98beeb7511..28f33c03d793 100644 --- a/include/asm-x86/smp.h +++ b/include/asm-x86/smp.h | |||
@@ -23,6 +23,11 @@ struct smp_ops { | |||
23 | 23 | ||
24 | #ifdef CONFIG_SMP | 24 | #ifdef CONFIG_SMP |
25 | extern struct smp_ops smp_ops; | 25 | extern struct smp_ops smp_ops; |
26 | |||
27 | static inline void smp_send_reschedule(int cpu) | ||
28 | { | ||
29 | smp_ops.smp_send_reschedule(cpu); | ||
30 | } | ||
26 | #endif | 31 | #endif |
27 | 32 | ||
28 | #ifdef CONFIG_X86_32 | 33 | #ifdef CONFIG_X86_32 |