summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2010-02-24 18:59:17 +0100
committerAvi Kivity <avi@redhat.com>2010-04-25 13:53:20 +0300
commitb44ea385d8cb187e04ec8d901d4c320c8b07c40b (patch)
treedcfa3bc8526ec7eef962d86f4a9ac966aaec6a1f
parent82494028dff648c29e3a40915f1fceca51b4490a (diff)
downloadlinux-3.10-b44ea385d8cb187e04ec8d901d4c320c8b07c40b.tar.gz
linux-3.10-b44ea385d8cb187e04ec8d901d4c320c8b07c40b.tar.bz2
linux-3.10-b44ea385d8cb187e04ec8d901d4c320c8b07c40b.zip
KVM: x86: Don't set arch.cr0 in kvm_set_cr0
The vcpu->arch.cr0 variable is already set in the architecture specific set_cr0 callbacks. There is no need to set it in the common code. This allows the architecture code to keep the old arch.cr0 value if it wants. This is required for nested svm to decide if a selective_cr0 exit needs to be injected. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--arch/x86/kvm/x86.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 81b7af5558f..d0b184b5c24 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -475,7 +475,6 @@ void kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
}
kvm_x86_ops->set_cr0(vcpu, cr0);
- vcpu->arch.cr0 = cr0;
kvm_mmu_reset_context(vcpu);
return;