summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/x86.c
diff options
context:
space:
mode:
authorLai Jiangshan2011-02-21 04:21:30 +0100
committerMarcelo Tosatti2011-03-17 17:08:31 +0100
commitd170c4190630bcbeb5db266e79ad7a174902e5de (patch)
tree29f190084b646b11b401ecdbf355679e356d67d5 /arch/x86/kvm/x86.c
parentKVM: VMX: Initialize vm86 TSS only once. (diff)
downloadkernel-qcow2-linux-d170c4190630bcbeb5db266e79ad7a174902e5de.tar.gz
kernel-qcow2-linux-d170c4190630bcbeb5db266e79ad7a174902e5de.tar.xz
kernel-qcow2-linux-d170c4190630bcbeb5db266e79ad7a174902e5de.zip
KVM: Clear async page fault hash after switching to real mode
The hash array of async gfns may still contain some left gfns after kvm_clear_async_pf_completion_queue() called, need to clear them. Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> Acked-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r--arch/x86/kvm/x86.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 17af71da63ad..dae2d15c49eb 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -525,8 +525,10 @@ int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
kvm_x86_ops->set_cr0(vcpu, cr0);
- if ((cr0 ^ old_cr0) & X86_CR0_PG)
+ if ((cr0 ^ old_cr0) & X86_CR0_PG) {
kvm_clear_async_pf_completion_queue(vcpu);
+ kvm_async_pf_hash_reset(vcpu);
+ }
if ((cr0 ^ old_cr0) & update_bits)
kvm_mmu_reset_context(vcpu);