From: Xiao Guangrong Date: Wed, 30 Jun 2010 08:04:06 +0000 (+0800) Subject: KVM: MMU: flush remote tlbs when overwriting spte with different pfn X-Git-Tag: upstream/snapshot3+hdmi~13898^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91546356d0e550fa23abf7f4b04a903c2855761f;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git KVM: MMU: flush remote tlbs when overwriting spte with different pfn After remove a rmap, we should flush all vcpu's tlb Signed-off-by: Xiao Guangrong Signed-off-by: Marcelo Tosatti --- diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index a6f695d..3699613 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -1879,6 +1879,8 @@ static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, pgprintk("hfn old %lx new %lx\n", spte_to_pfn(*sptep), pfn); rmap_remove(vcpu->kvm, sptep); + __set_spte(sptep, shadow_trap_nonpresent_pte); + kvm_flush_remote_tlbs(vcpu->kvm); } else was_rmapped = 1; }