aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLai Jiangshan <laijs@cn.fujitsu.com>2011-02-20 22:21:30 -0500
committerMarcelo Tosatti <mtosatti@redhat.com>2011-03-17 12:08:31 -0400
commitd170c4190630bcbeb5db266e79ad7a174902e5de (patch)
tree29f190084b646b11b401ecdbf355679e356d67d5
parent93ea5388ead5d7b87f54b8de53e35231acec8bbe (diff)
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>
-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)
525 525
526 kvm_x86_ops->set_cr0(vcpu, cr0); 526 kvm_x86_ops->set_cr0(vcpu, cr0);
527 527
528 if ((cr0 ^ old_cr0) & X86_CR0_PG) 528 if ((cr0 ^ old_cr0) & X86_CR0_PG) {
529 kvm_clear_async_pf_completion_queue(vcpu); 529 kvm_clear_async_pf_completion_queue(vcpu);
530 kvm_async_pf_hash_reset(vcpu);
531 }
530 532
531 if ((cr0 ^ old_cr0) & update_bits) 533 if ((cr0 ^ old_cr0) & update_bits)
532 kvm_mmu_reset_context(vcpu); 534 kvm_mmu_reset_context(vcpu);