aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/x86.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2010-01-06 12:10:22 -0500
committerMarcelo Tosatti <mtosatti@redhat.com>2010-03-01 10:35:51 -0500
commitf9a48e6a18c210c4bf34769fa05ede250575c6a1 (patch)
treed823a5cd545b5056f6ac6b563070da7d3f2a4b37 /arch/x86/kvm/x86.c
parentedcafe3c5a06f46407c3f60145a36f269e56ff7f (diff)
KVM: Set cr0.et when the guest writes cr0
Follow the hardware. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r--arch/x86/kvm/x86.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 1de2ad7a004d..1ad34d185da9 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -428,6 +428,8 @@ out:
428 428
429void kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) 429void kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
430{ 430{
431 cr0 |= X86_CR0_ET;
432
431 if (cr0 & CR0_RESERVED_BITS) { 433 if (cr0 & CR0_RESERVED_BITS) {
432 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n", 434 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n",
433 cr0, kvm_read_cr0(vcpu)); 435 cr0, kvm_read_cr0(vcpu));