From 027447c4913c8fd6f91092b92dfa07eec91f009d Mon Sep 17 00:00:00 2001 From: Thomas Gleixner Date: Sat, 27 Oct 2007 20:57:43 +0200 Subject: [PATCH] x86: export smp_ops to allow modular build of KVM KVM uses smp_call_function_mask and therefor need smp_ops to be exported. Signed-off-by: Thomas Gleixner Signed-off-by: Ingo Molnar --- arch/x86/kernel/smp_32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/kernel/smp_32.c b/arch/x86/kernel/smp_32.c index 22a6fa0cfb2a..fcaa026eb807 100644 --- a/arch/x86/kernel/smp_32.c +++ b/arch/x86/kernel/smp_32.c @@ -708,3 +708,4 @@ struct smp_ops smp_ops = { .smp_send_reschedule = native_smp_send_reschedule, .smp_call_function_mask = native_smp_call_function_mask, }; +EXPORT_SYMBOL_GPL(smp_ops);