diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-27 18:57:43 (GMT) |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-27 18:57:43 (GMT) |
commit | 027447c4913c8fd6f91092b92dfa07eec91f009d (patch) | |
tree | d72ef40cb1446e35bd1ae71486ff6d08e3c85a63 | |
parent | ceff8d859c77981147c320da4074dcf8a06501a4 (diff) | |
download | linux-027447c4913c8fd6f91092b92dfa07eec91f009d.tar.xz |
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 <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/smp_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/smp_32.c b/arch/x86/kernel/smp_32.c index 22a6fa0..fcaa026 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); |