diff options
Diffstat (limited to 'arch/x86/kernel/cpu/hypervisor.c')
| -rw-r--r-- | arch/x86/kernel/cpu/hypervisor.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/hypervisor.c b/arch/x86/kernel/cpu/hypervisor.c index bea8d3e24f50..479ca4728de0 100644 --- a/arch/x86/kernel/cpu/hypervisor.c +++ b/arch/x86/kernel/cpu/hypervisor.c @@ -31,6 +31,7 @@ extern const struct hypervisor_x86 x86_hyper_ms_hyperv;  extern const struct hypervisor_x86 x86_hyper_xen_pv;  extern const struct hypervisor_x86 x86_hyper_xen_hvm;  extern const struct hypervisor_x86 x86_hyper_kvm; +extern const struct hypervisor_x86 x86_hyper_jailhouse;  static const __initconst struct hypervisor_x86 * const hypervisors[] =  { @@ -45,6 +46,9 @@ static const __initconst struct hypervisor_x86 * const hypervisors[] =  #ifdef CONFIG_KVM_GUEST  	&x86_hyper_kvm,  #endif +#ifdef CONFIG_JAILHOUSE_GUEST +	&x86_hyper_jailhouse, +#endif  };  enum x86_hypervisor_type x86_hyper_type;  |