linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Nick Piggin <nickpiggin@yahoo.com.au>
To: Christoph Lameter <clameter@sgi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	ak@suse.de, Mel Gorman <mel@csn.ul.ie>,
	apw@shadowen.org,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	Rik van Riel <riel@redhat.com>,
	linux-mm@kvack.org
Subject: Re: [patch 8/8] Pageflags: Eliminate PG_xxx aliases
Date: Thu, 6 Mar 2008 13:40:22 +1100	[thread overview]
Message-ID: <200803061340.22990.nickpiggin@yahoo.com.au> (raw)
In-Reply-To: <20080305223846.780991734@sgi.com>

On Thursday 06 March 2008 09:38, Christoph Lameter wrote:
> Remove aliases of PG_xxx. We can easily drop those now and alias by
> specifying the PG_xxx flag in the macro that generates the functions.
>
> Signed-off-by: Christoph Lameter <clameter@sgi.com>
>
> ---
>  include/linux/page-flags.h |   10 +++-------
>  mm/page_alloc.c            |    2 +-
>  2 files changed, 4 insertions(+), 8 deletions(-)
>
> Index: linux-2.6.25-rc3-mm1/mm/page_alloc.c
> ===================================================================
> --- linux-2.6.25-rc3-mm1.orig/mm/page_alloc.c	2008-03-05 14:17:09.963838055
> -0800 +++ linux-2.6.25-rc3-mm1/mm/page_alloc.c	2008-03-05
> 14:21:45.372755277 -0800 @@ -650,7 +650,7 @@ static int
> prep_new_page(struct page *pa
>  	if (PageReserved(page))
>  		return 1;
>
> -	page->flags &= ~(1 << PG_uptodate | 1 << PG_error | 1 << PG_readahead |
> +	page->flags &= ~(1 << PG_uptodate | 1 << PG_error | 1 << PG_reclaim |
>  			1 << PG_referenced | 1 << PG_arch_1 |
>  			1 << PG_owner_priv_1 | 1 << PG_mappedtodisk);
>  	set_page_private(page, 0);
> Index: linux-2.6.25-rc3-mm1/include/linux/page-flags.h
> ===================================================================
> --- linux-2.6.25-rc3-mm1.orig/include/linux/page-flags.h	2008-03-05
> 14:21:29.689386158 -0800 +++
> linux-2.6.25-rc3-mm1/include/linux/page-flags.h	2008-03-05
> 14:21:45.372755277 -0800 @@ -77,8 +77,6 @@ enum pageflags {
>  	PG_active,
>  	PG_slab,
>  	PG_owner_priv_1,	/* Owner use. If pagecache, fs may use*/
> -	PG_checked = PG_owner_priv_1, /* Used by some filesystems */
> -	PG_pinned = PG_owner_priv_1, /* Xen pinned pagetable */
>  	PG_arch_1,
>  	PG_reserved,
>  	PG_private,		/* If pagecache, has fs-private data */
> @@ -87,8 +85,6 @@ enum pageflags {
>  	PG_swapcache,		/* Swap page: swp_entry_t in private */
>  	PG_mappedtodisk,	/* Has blocks allocated on-disk */
>  	PG_reclaim,		/* To be reclaimed asap */
> -	/* PG_readahead is only used for file reads; PG_reclaim is only for
> writes */ -	PG_readahead = PG_reclaim, /* Reminder to do async read-ahead
> */ PG_buddy,		/* Page is free, on buddy lists */

IMO it's nice to see these alias up front.

Otherwise the patchset looks pretty good, nice work. I actually hate
macros for generating things, but I try to pick my fights ;)

--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

       reply	other threads:[~2008-03-06  2:40 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20080305223815.574326323@sgi.com>
     [not found] ` <20080305223846.780991734@sgi.com>
2008-03-06  2:40   ` Nick Piggin [this message]
2008-03-06 22:51     ` Christoph Lameter
2008-03-07  0:48       ` Nick Piggin
2008-03-07  1:38         ` Christoph Lameter
2008-03-07  2:20           ` Nick Piggin
2008-03-07  3:53             ` Christoph Lameter
2008-03-07  4:16               ` Nick Piggin
     [not found] ` <20080305223845.436523065@sgi.com>
2008-03-06  4:08   ` [patch 2/8] Kbuild: Create a way to create preprocessor constants from C expressions Andrew Morton
2008-03-06 20:20     ` Christoph Lameter
2008-03-06 21:00       ` Sam Ravnborg
2008-03-06 21:49         ` Christoph Lameter
2008-03-06 22:43         ` Christoph Lameter
2008-03-06 22:55           ` Sam Ravnborg
2008-03-06 23:02             ` Christoph Lameter
2008-03-06 20:51   ` Sam Ravnborg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200803061340.22990.nickpiggin@yahoo.com.au \
    --to=nickpiggin@yahoo.com.au \
    --cc=ak@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=apw@shadowen.org \
    --cc=clameter@sgi.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --cc=linux-mm@kvack.org \
    --cc=mel@csn.ul.ie \
    --cc=riel@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox