diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-12-19 05:49:13 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-12-19 05:49:13 -0500 |
commit | 0fa85119cd480c1ded7a81ed64f723fe16a15355 (patch) | |
tree | 8648434601c5112a1d9ab091ab11507fe88e0962 /arch/x86/xen/enlighten.c | |
parent | d6ccc3ec95251d8d3276f2900b59cbc468dd74f4 (diff) | |
parent | 1eab0e42450c6038e2bb17da438370fe639973f3 (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.c | 15 |
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 | }; |
1894 | EXPORT_SYMBOL(x86_hyper_xen); | 1895 | EXPORT_SYMBOL(x86_hyper_xen); |
1896 | |||
1897 | #ifdef CONFIG_HOTPLUG_CPU | ||
1898 | void xen_arch_register_cpu(int num) | ||
1899 | { | ||
1900 | arch_register_cpu(num); | ||
1901 | } | ||
1902 | EXPORT_SYMBOL(xen_arch_register_cpu); | ||
1903 | |||
1904 | void xen_arch_unregister_cpu(int num) | ||
1905 | { | ||
1906 | arch_unregister_cpu(num); | ||
1907 | } | ||
1908 | EXPORT_SYMBOL(xen_arch_unregister_cpu); | ||
1909 | #endif | ||