From 16c385e46b63c06964a8d4e73654d255be1133bf Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 9 May 2010 01:10:34 -0700 Subject: [PATCH] --- yaml --- r: 191495 b: refs/heads/master c: 96f6e775b58687d85ee33004d414419b5ec34106 h: refs/heads/master i: 191493: 7836c0fbd588afe8472b1e8652c8347805d18c10 191491: 7390b27759db00f33bd87e2e79576a28aabc839e 191487: 07350f18ae3a56e2165648f8a750da09e202769b v: v3 --- [refs] | 2 +- trunk/arch/x86/kernel/cpu/hypervisor.c | 1 + trunk/arch/x86/kernel/cpu/mshyperv.c | 1 + trunk/arch/x86/kernel/cpu/vmware.c | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index 69b63e0b030d..335e3eee8e61 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d7be0ce6afb1df60bc786f57410407ceae92b994 +refs/heads/master: 96f6e775b58687d85ee33004d414419b5ec34106 diff --git a/trunk/arch/x86/kernel/cpu/hypervisor.c b/trunk/arch/x86/kernel/cpu/hypervisor.c index 87381759d3cb..4afb5a2130ed 100644 --- a/trunk/arch/x86/kernel/cpu/hypervisor.c +++ b/trunk/arch/x86/kernel/cpu/hypervisor.c @@ -36,6 +36,7 @@ static const __initconst struct hypervisor_x86 * const hypervisors[] = }; const struct hypervisor_x86 *x86_hyper; +EXPORT_SYMBOL(x86_hyper); static inline void __init detect_hypervisor_vendor(void) diff --git a/trunk/arch/x86/kernel/cpu/mshyperv.c b/trunk/arch/x86/kernel/cpu/mshyperv.c index 5969c3ee3186..0f1371724c86 100644 --- a/trunk/arch/x86/kernel/cpu/mshyperv.c +++ b/trunk/arch/x86/kernel/cpu/mshyperv.c @@ -51,3 +51,4 @@ const __refconst struct hypervisor_x86 x86_hyper_ms_hyperv = { .detect = ms_hyperv_platform, .init_platform = ms_hyperv_init_platform, }; +EXPORT_SYMBOL(x86_hyper_ms_hyperv); diff --git a/trunk/arch/x86/kernel/cpu/vmware.c b/trunk/arch/x86/kernel/cpu/vmware.c index 265b432f6e64..b9d1ff588445 100644 --- a/trunk/arch/x86/kernel/cpu/vmware.c +++ b/trunk/arch/x86/kernel/cpu/vmware.c @@ -99,7 +99,6 @@ static bool __init vmware_platform(void) return false; } -EXPORT_SYMBOL(vmware_platform); /* * VMware hypervisor takes care of exporting a reliable TSC to the guest. @@ -125,3 +124,4 @@ const __refconst struct hypervisor_x86 x86_hyper_vmware = { .set_cpu_features = vmware_set_cpu_features, .init_platform = vmware_platform_setup, }; +EXPORT_SYMBOL(x86_hyper_vmware);