Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932743AbWEXNd6 (ORCPT ); Wed, 24 May 2006 09:33:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932744AbWEXNd6 (ORCPT ); Wed, 24 May 2006 09:33:58 -0400 Received: from smtp.ustc.edu.cn ([202.38.64.16]:61603 "HELO ustc.edu.cn") by vger.kernel.org with SMTP id S932743AbWEXNd5 (ORCPT ); Wed, 24 May 2006 09:33:57 -0400 Message-ID: <348477632.00893@ustc.edu.cn> X-EYOUMAIL-SMTPAUTH: wfg@mail.ustc.edu.cn Date: Wed, 24 May 2006 21:33:54 +0800 From: Wu Fengguang To: Peter Zijlstra Cc: Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: [PATCH 17/33] readahead: context based method Message-ID: <20060524133353.GA16508@mail.ustc.edu.cn> Mail-Followup-To: Wu Fengguang , Peter Zijlstra , Andrew Morton , linux-kernel@vger.kernel.org References: <20060524111246.420010595@localhost.localdomain> <20060524111905.586110688@localhost.localdomain> <1148474268.10561.53.camel@lappy> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1148474268.10561.53.camel@lappy> User-Agent: Mutt/1.5.11+cvs20060126 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2169 Lines: 69 On Wed, May 24, 2006 at 02:37:48PM +0200, Peter Zijlstra wrote: > On Wed, 2006-05-24 at 19:13 +0800, Wu Fengguang wrote: > > > +#define PAGE_REFCNT_0 0 > > +#define PAGE_REFCNT_1 (1 << PG_referenced) > > +#define PAGE_REFCNT_2 (1 << PG_active) > > +#define PAGE_REFCNT_3 ((1 << PG_active) | (1 << PG_referenced)) > > +#define PAGE_REFCNT_MASK PAGE_REFCNT_3 > > + > > +/* > > + * STATUS REFERENCE COUNT > > + * __ 0 > > + * _R PAGE_REFCNT_1 > > + * A_ PAGE_REFCNT_2 > > + * AR PAGE_REFCNT_3 > > + * > > + * A/R: Active / Referenced > > + */ > > +static inline unsigned long page_refcnt(struct page *page) > > +{ > > + return page->flags & PAGE_REFCNT_MASK; > > +} > > + > > +/* > > + * STATUS REFERENCE COUNT TYPE > > + * __ 0 fresh > > + * _R PAGE_REFCNT_1 stale > > + * A_ PAGE_REFCNT_2 disturbed once > > + * AR PAGE_REFCNT_3 disturbed twice > > + * > > + * A/R: Active / Referenced > > + */ > > +static inline unsigned long cold_page_refcnt(struct page *page) > > +{ > > + if (!page || PageActive(page)) > > + return 0; > > + > > + return page_refcnt(page); > > +} > > + > > Why all of this if all you're ever going to use is cold_page_refcnt. Well, the two functions have a long history... There has been a PG_activate which makes the two functions quite different. It was later removed for fear of the behavior changes it introduced. However, there's still possibility that someone reintroduce similar flags in the future :) > What about something like this: > > static inline int cold_page_referenced(struct page *page) > { > if (!page || PageActive(page)) > return 0; > return !!PageReferenced(page); > } Ah, here's another theory: the algorithm uses reference count conceptually, so it may be better to retain the current form. Thanks, Wu - 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/