summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/Kbuild2
-rw-r--r--arch/x86/include/asm/mshyperv.h7
2 files changed, 7 insertions, 2 deletions
diff --git a/arch/x86/Kbuild b/arch/x86/Kbuild
index 586b786b3edf..3e6f64073005 100644
--- a/arch/x86/Kbuild
+++ b/arch/x86/Kbuild
@@ -8,7 +8,7 @@ obj-$(CONFIG_KVM) += kvm/
8obj-$(CONFIG_XEN) += xen/ 8obj-$(CONFIG_XEN) += xen/
9 9
10# Hyper-V paravirtualization support 10# Hyper-V paravirtualization support
11obj-$(CONFIG_HYPERVISOR_GUEST) += hyperv/ 11obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/
12 12
13# lguest paravirtualization support 13# lguest paravirtualization support
14obj-$(CONFIG_LGUEST_GUEST) += lguest/ 14obj-$(CONFIG_LGUEST_GUEST) += lguest/
diff --git a/arch/x86/include/asm/mshyperv.h b/arch/x86/include/asm/mshyperv.h
index 2b58c8c1eeaa..baea2679a0aa 100644
--- a/arch/x86/include/asm/mshyperv.h
+++ b/arch/x86/include/asm/mshyperv.h
@@ -173,7 +173,12 @@ void hyperv_init(void);
173void hyperv_report_panic(struct pt_regs *regs); 173void hyperv_report_panic(struct pt_regs *regs);
174bool hv_is_hypercall_page_setup(void); 174bool hv_is_hypercall_page_setup(void);
175void hyperv_cleanup(void); 175void hyperv_cleanup(void);
176#endif 176#else /* CONFIG_HYPERV */
177static inline void hyperv_init(void) {}
178static inline bool hv_is_hypercall_page_setup(void) { return false; }
179static inline void hyperv_cleanup(void) {}
180#endif /* CONFIG_HYPERV */
181
177#ifdef CONFIG_HYPERV_TSCPAGE 182#ifdef CONFIG_HYPERV_TSCPAGE
178struct ms_hyperv_tsc_page *hv_get_tsc_page(void); 183struct ms_hyperv_tsc_page *hv_get_tsc_page(void);
179static inline u64 hv_read_tsc_page(const struct ms_hyperv_tsc_page *tsc_pg) 184static inline u64 hv_read_tsc_page(const struct ms_hyperv_tsc_page *tsc_pg)