From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo Tosatti Subject: Re: [PATCH 7/9] KVM: define kvm_bad_page statically Date: Thu, 2 Aug 2012 09:54:29 -0300 Message-ID: <20120802125429.GC25344@amt.cnet> References: <5014F053.8020305@linux.vnet.ibm.com> <5014F15C.60400@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Avi Kivity , LKML , KVM To: Xiao Guangrong Return-path: Content-Disposition: inline In-Reply-To: <5014F15C.60400@linux.vnet.ibm.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On Sun, Jul 29, 2012 at 04:16:28PM +0800, Xiao Guangrong wrote: > It is used to eliminate the overload of function call and cleanup > the code > > Signed-off-by: Xiao Guangrong > --- > include/linux/kvm_host.h | 9 +++++++-- > virt/kvm/async_pf.c | 2 +- > virt/kvm/kvm_main.c | 13 +------------ > 3 files changed, 9 insertions(+), 15 deletions(-) > > diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h > index 387ecc5..08a9da9 100644 > --- a/include/linux/kvm_host.h > +++ b/include/linux/kvm_host.h > @@ -68,6 +68,13 @@ static inline int is_invalid_pfn(pfn_t pfn) > return !is_noslot_pfn(pfn) && is_error_pfn(pfn); > } > > +#define kvm_bad_page (ERR_PTR(-ENOENT)) KVM_ERR_PTR_BAD_PAGE ...