From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail144.messagelabs.com (mail144.messagelabs.com [216.82.254.51]) by kanga.kvack.org (Postfix) with SMTP id 0DCBD60021B for ; Mon, 28 Dec 2009 05:24:03 -0500 (EST) Received: by ywh5 with SMTP id 5so14531696ywh.11 for ; Mon, 28 Dec 2009 02:24:01 -0800 (PST) Message-ID: <4B38873B.8090704@gmail.com> Date: Mon, 28 Dec 2009 19:23:55 +0900 From: Minchan Kim MIME-Version: 1.0 Subject: Re: [PATCH 1/3 -mmotm-2009-12-10-17-19] Move functions related to zero page References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: Andrew Morton , LKML , linux-mm Cc: KAMEZAWA Hiroyuki , Hugh Dickins List-ID: I missed Hugh. Minchan Kim wrote: > This patch moves is_zero_pfn and my_zero_pfn to mm.h > for other use case. > > This patch has no side effect and helps following patches. > > Signed-off-by: Minchan Kim > --- > include/linux/mm.h | 15 +++++++++++++++ > mm/memory.c | 14 -------------- > 2 files changed, 15 insertions(+), 14 deletions(-) > > diff --git a/include/linux/mm.h b/include/linux/mm.h > index be7f851..71bacd1 100644 > --- a/include/linux/mm.h > +++ b/include/linux/mm.h > @@ -751,6 +751,21 @@ struct zap_details { > unsigned long truncate_count; /* Compare vm_truncate_count */ > }; > > +#ifndef is_zero_pfn > +extern unsigned long zero_pfn; > +static inline int is_zero_pfn(unsigned long pfn) > +{ > + return pfn == zero_pfn; > +} > +#endif > + > +#ifndef my_zero_pfn > +static inline unsigned long my_zero_pfn(unsigned long addr) > +{ > + return zero_pfn; > +} > +#endif > + > struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, > pte_t pte); > > diff --git a/mm/memory.c b/mm/memory.c > index 09e4b1b..3743fb5 100644 > --- a/mm/memory.c > +++ b/mm/memory.c > @@ -457,20 +457,6 @@ static inline int is_cow_mapping(unsigned int flags) > return (flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE; > } > > -#ifndef is_zero_pfn > -static inline int is_zero_pfn(unsigned long pfn) > -{ > - return pfn == zero_pfn; > -} > -#endif > - > -#ifndef my_zero_pfn > -static inline unsigned long my_zero_pfn(unsigned long addr) > -{ > - return zero_pfn; > -} > -#endif > - > /* > * vm_normal_page -- This function gets the "struct page" associated with a pte. > * -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org