aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/enlighten.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2015-12-19 05:49:13 -0500
committerThomas Gleixner <tglx@linutronix.de>2015-12-19 05:49:13 -0500
commit0fa85119cd480c1ded7a81ed64f723fe16a15355 (patch)
tree8648434601c5112a1d9ab091ab11507fe88e0962 /arch/x86/xen/enlighten.c
parentd6ccc3ec95251d8d3276f2900b59cbc468dd74f4 (diff)
parent1eab0e42450c6038e2bb17da438370fe639973f3 (diff)
Merge branch 'linus' into x86/cleanups
Pull in upstream changes so we can apply depending patches.
Diffstat (limited to 'arch/x86/xen/enlighten.c')
-rw-r--r--arch/x86/xen/enlighten.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 2745e8ae93f3..4334e511cfc8 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -75,6 +75,7 @@
75#include <asm/mwait.h> 75#include <asm/mwait.h>
76#include <asm/pci_x86.h> 76#include <asm/pci_x86.h>
77#include <asm/pat.h> 77#include <asm/pat.h>
78#include <asm/cpu.h>
78 79
79#ifdef CONFIG_ACPI 80#ifdef CONFIG_ACPI
80#include <linux/acpi.h> 81#include <linux/acpi.h>
@@ -1892,3 +1893,17 @@ const struct hypervisor_x86 x86_hyper_xen = {
1892 .set_cpu_features = xen_set_cpu_features, 1893 .set_cpu_features = xen_set_cpu_features,
1893}; 1894};
1894EXPORT_SYMBOL(x86_hyper_xen); 1895EXPORT_SYMBOL(x86_hyper_xen);
1896
1897#ifdef CONFIG_HOTPLUG_CPU
1898void xen_arch_register_cpu(int num)
1899{
1900 arch_register_cpu(num);
1901}
1902EXPORT_SYMBOL(xen_arch_register_cpu);
1903
1904void xen_arch_unregister_cpu(int num)
1905{
1906 arch_unregister_cpu(num);
1907}
1908EXPORT_SYMBOL(xen_arch_unregister_cpu);
1909#endif