Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753125Ab0KZBce (ORCPT ); Thu, 25 Nov 2010 20:32:34 -0500 Received: from cn.fujitsu.com ([222.73.24.84]:62886 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1752470Ab0KZBcd (ORCPT ); Thu, 25 Nov 2010 20:32:33 -0500 Message-ID: <4CEF0F48.8000202@cn.fujitsu.com> Date: Fri, 26 Nov 2010 09:37:12 +0800 From: Xiao Guangrong User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.11) Gecko/20100713 Thunderbird/3.0.6 MIME-Version: 1.0 To: Avi Kivity CC: Marcelo Tosatti , KVM , LKML Subject: Re: [PATCH v3 1/6] KVM: MMU: fix forgot flush tlbs on sync_page path References: <4CE63CF4.80502@cn.fujitsu.com> In-Reply-To: <4CE63CF4.80502@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.1FP4|July 25, 2010) at 2010-11-26 09:32:47, Serialize by Router on mailserver/fnst(Release 8.5.1FP4|July 25, 2010) at 2010-11-26 09:32:47, Serialize complete at 2010-11-26 09:32:47 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1279 Lines: 41 Hi Avi, Marcelo, What do you think of this patchset? Could you give me some comments please? Thanks! On 11/19/2010 05:01 PM, Xiao Guangrong wrote: > We should flush all tlbs after drop spte on sync_page path since: > > Quote from Avi: > | sync_page > | drop_spte > | kvm_mmu_notifier_invalidate_page > | kvm_unmap_rmapp > | spte doesn't exist -> no flush > | page is freed > | guest can write into freed page? > > Signed-off-by: Xiao Guangrong > --- > arch/x86/kvm/paging_tmpl.h | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h > index 590bf12..ca0e5e8 100644 > --- a/arch/x86/kvm/paging_tmpl.h > +++ b/arch/x86/kvm/paging_tmpl.h > @@ -786,6 +786,7 @@ static int FNAME(sync_page)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, > else > nonpresent = shadow_notrap_nonpresent_pte; > drop_spte(vcpu->kvm, &sp->spt[i], nonpresent); > + kvm_flush_remote_tlbs(vcpu->kvm); > continue; > } > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/