Commit e2683181 authored by Christoph Lameter's avatar Christoph Lameter Committed by Linus Torvalds

pageflags: use an enum for the flags

Use an enum to ease the maintenance of page flags.  This is going to change
the numbering from 0 to 18.
Signed-off-by: default avatarChristoph Lameter <clameter@sgi.com>
Cc: Andy Whitcroft <apw@shadowen.org>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent bf2ae2b3
...@@ -67,35 +67,29 @@ ...@@ -67,35 +67,29 @@
* FLAGS_RESERVED which defines the width of the fields section * FLAGS_RESERVED which defines the width of the fields section
* (see linux/mmzone.h). New flags must _not_ overlap with this area. * (see linux/mmzone.h). New flags must _not_ overlap with this area.
*/ */
#define PG_locked 0 /* Page is locked. Don't touch. */ enum pageflags {
#define PG_error 1 PG_locked, /* Page is locked. Don't touch. */
#define PG_referenced 2 PG_error,
#define PG_uptodate 3 PG_referenced,
PG_uptodate,
#define PG_dirty 4 PG_dirty,
#define PG_lru 5 PG_lru,
#define PG_active 6 PG_active,
#define PG_slab 7 /* slab debug (Suparna wants this) */ PG_slab,
PG_owner_priv_1, /* Owner use. If pagecache, fs may use*/
#define PG_owner_priv_1 8 /* Owner use. If pagecache, fs may use*/ PG_checked = PG_owner_priv_1, /* Used by some filesystems */
#define PG_arch_1 9 PG_pinned = PG_owner_priv_1, /* Xen pinned pagetable */
#define PG_reserved 10 PG_arch_1,
#define PG_private 11 /* If pagecache, has fs-private data */ PG_reserved,
PG_private, /* If pagecache, has fs-private data */
#define PG_writeback 12 /* Page is under writeback */ PG_writeback, /* Page is under writeback */
#define PG_compound 14 /* Part of a compound page */ PG_compound, /* A compound page */
#define PG_swapcache 15 /* Swap page: swp_entry_t in private */ PG_swapcache, /* Swap page: swp_entry_t in private */
PG_mappedtodisk, /* Has blocks allocated on-disk */
#define PG_mappedtodisk 16 /* Has blocks allocated on-disk */ PG_reclaim, /* To be reclaimed asap */
#define PG_reclaim 17 /* To be reclaimed asap */ /* PG_readahead is only used for file reads; PG_reclaim is only for writes */
#define PG_buddy 19 /* Page is free, on buddy lists */ PG_readahead = PG_reclaim, /* Reminder to do async read-ahead */
PG_buddy, /* Page is free, on buddy lists */
/* PG_readahead is only used for file reads; PG_reclaim is only for writes */
#define PG_readahead PG_reclaim /* Reminder to do async read-ahead */
/* PG_owner_priv_1 users should have descriptive aliases */
#define PG_checked PG_owner_priv_1 /* Used by some filesystems */
#define PG_pinned PG_owner_priv_1 /* Xen pinned pagetable */
#if (BITS_PER_LONG > 32) #if (BITS_PER_LONG > 32)
/* /*
...@@ -105,8 +99,10 @@ ...@@ -105,8 +99,10 @@
* 64 bit | FIELDS | ?????? FLAGS | * 64 bit | FIELDS | ?????? FLAGS |
* 63 32 0 * 63 32 0
*/ */
#define PG_uncached 31 /* Page has been mapped as uncached */ PG_uncached = 31, /* Page has been mapped as uncached */
#endif #endif
NR_PAGEFLAGS
};
/* /*
* Manipulation of page state flags * Manipulation of page state flags
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment