From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xiao Guangrong Subject: Re: [PATCH v3 11/19] KVM: MMU: filter out the mmio pfn from the fault pfn Date: Thu, 07 Jul 2011 03:13:23 +0800 Message-ID: <4E14B3D3.60301@cn.fujitsu.com> References: <4E0C3178.2080603@cn.fujitsu.com> <4E0C32A6.6080607@cn.fujitsu.com> <20110706171734.GD24417@amt.cnet> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Avi Kivity , LKML , KVM To: Marcelo Tosatti Return-path: In-Reply-To: <20110706171734.GD24417@amt.cnet> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On 07/07/2011 01:17 AM, Marcelo Tosatti wrote: >> +int is_mmio_pfn(pfn_t pfn) >> +{ >> + return pfn == bad_pfn; >> +} >> +EXPORT_SYMBOL_GPL(is_mmio_pfn); > > Please use another name this conflicts with real mmio pfn, > see kvm_is_mmio_pfn. "noslot_pfn" is meaningful to me. > OK, will fix, thanks!