summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2010-11-17 03:40:17 (GMT)
committerAvi Kivity <avi@redhat.com>2011-01-12 09:29:31 (GMT)
commitf9335afea5d649693aee1ec8af2cc8ccf376f5a9 (patch)
treef6826340ff751557c68713374d158c2fb3cf4d74 /arch
parent75b7127c3858261fc080dd52a022424a7e7f6ae5 (diff)
downloadlinux-f9335afea5d649693aee1ec8af2cc8ccf376f5a9.tar.xz
KVM: VMX: Inform user about INTEL_TXT dependency
Inform user to either disable TXT in the BIOS or do TXT launch with tboot before enabling KVM since some BIOSes do not set FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX bit when TXT is enabled. Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kvm/vmx.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 8087c4d..92612fb 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -1305,8 +1305,11 @@ static __init int vmx_disabled_by_bios(void)
&& tboot_enabled())
return 1;
if (!(msr & FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX)
- && !tboot_enabled())
+ && !tboot_enabled()) {
+ printk(KERN_WARNING "kvm: disable TXT in the BIOS or "
+ " activate TXT before enabling KVM\n");
return 1;
+ }
}
return 0;