]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - arch/x86/include/asm/hypervisor.h
apic: Move hypervisor detection of x2apic to hypervisor.h
[karo-tx-linux.git] / arch / x86 / include / asm / hypervisor.h
index ff2546ce7178e83e105ca9eadc9ddfcc71b636cf..0c6f7af7fda8e5f8eb169c529dc92a7cfa973725 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef _ASM_X86_HYPERVISOR_H
 #define _ASM_X86_HYPERVISOR_H
 
+#include <asm/kvm_para.h>
+
 extern void init_hypervisor(struct cpuinfo_x86 *c);
 extern void init_hypervisor_platform(void);
 
@@ -47,4 +49,11 @@ extern const struct hypervisor_x86 x86_hyper_vmware;
 extern const struct hypervisor_x86 x86_hyper_ms_hyperv;
 extern const struct hypervisor_x86 x86_hyper_xen_hvm;
 
+static inline bool hypervisor_x2apic_available(void)
+{
+       if (kvm_para_available())
+               return true;
+       return false;
+}
+
 #endif