summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smp_32.c
diff options
context:
space:
mode:
authorLaurent Vivier2007-10-17 18:04:33 +0200
committerThomas Gleixner2007-10-17 20:15:21 +0200
commit6442eea937ef797d4b66733f49c82e2fdc2aca6f (patch)
tree95e73cf7eaa9e4c69475e1f9fc4b6359a4a86fa3 /arch/x86/kernel/smp_32.c
parentx86: Install unstripped copy of 64bit vdso to disk (diff)
downloadkernel-qcow2-linux-6442eea937ef797d4b66733f49c82e2fdc2aca6f.tar.gz
kernel-qcow2-linux-6442eea937ef797d4b66733f49c82e2fdc2aca6f.tar.xz
kernel-qcow2-linux-6442eea937ef797d4b66733f49c82e2fdc2aca6f.zip
i386: export i386 smp_call_function_mask() to modules
This patch export i386 smp_call_function_mask() with EXPORT_SYMBOL(). This function is needed by KVM to call a function on a set of CPUs. [ tglx: arch/x86 adaptation ] Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net> Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/smp_32.c')
-rw-r--r--arch/x86/kernel/smp_32.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/smp_32.c b/arch/x86/kernel/smp_32.c
index 2d35d8502029..eebc6e82576c 100644
--- a/arch/x86/kernel/smp_32.c
+++ b/arch/x86/kernel/smp_32.c
@@ -705,3 +705,10 @@ struct smp_ops smp_ops = {
.smp_send_reschedule = native_smp_send_reschedule,
.smp_call_function_mask = native_smp_call_function_mask,
};
+
+int smp_call_function_mask(cpumask_t mask, void (*func) (void *info),
+ void *info, int wait)
+{
+ return smp_ops.smp_call_function_mask(mask, func, info, wait);
+}
+EXPORT_SYMBOL(smp_call_function_mask);