diff options
author | Avi Kivity <avi@qumranet.com> | 2008-04-14 13:10:21 +0300 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-04-27 18:21:32 +0300 |
commit | a79d2f1805da02d7837ec2240f0093c53272fb3a (patch) | |
tree | 351da350fd28c3fe31c1b527876ee6603a8436cf /arch | |
parent | e9571ed54b2a290d61b98ad6f369f963159fe6da (diff) | |
download | linux-3.10-a79d2f1805da02d7837ec2240f0093c53272fb3a.tar.gz linux-3.10-a79d2f1805da02d7837ec2240f0093c53272fb3a.tar.bz2 linux-3.10-a79d2f1805da02d7837ec2240f0093c53272fb3a.zip |
KVM: SVM: force a new asid when initializing the vmcb
Shutdown interception clears the vmcb, leaving the asid at zero (which is
illegal. so force a new asid on vmcb initialization.
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/svm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 8d04aed72f3..3379e13d9b2 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -603,7 +603,7 @@ static void init_vmcb(struct vcpu_svm *svm) save->cr3 = 0; save->cr4 = 0; } - + force_new_asid(&svm->vcpu); } static int svm_vcpu_reset(struct kvm_vcpu *vcpu) |