From: Andrew Morton As Nick points out, only ia64 uses PG_uncached. So we can push it up into the higher bits of the lower half of page->flags and make room for another flag on 32-bit machines. Cc: "Luck, Tony" Cc: Jesse Barnes Cc: Jes Sorensen Cc: Nick Piggin Cc: Andy Whitcroft Signed-off-by: Andrew Morton --- include/linux/page-flags.h | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletion(-) diff -puN include/linux/page-flags.h~pg_uncached-is-ia64-only include/linux/page-flags.h --- 25/include/linux/page-flags.h~pg_uncached-is-ia64-only Fri May 26 14:03:52 2006 +++ 25-akpm/include/linux/page-flags.h Fri May 26 14:03:52 2006 @@ -7,6 +7,8 @@ #include #include +#include + #include /* @@ -88,7 +90,17 @@ #define PG_nosave_free 18 /* Free, should not be written */ #define PG_buddy 19 /* Page is free, on buddy lists */ -#define PG_uncached 20 /* Page has been mapped as uncached */ + +#if (BITS_PER_LONG > 32) +/* + * 64-bit-only flags build down from bit 31 + * + * 32 bit -------------------------------| FIELDS | FLAGS | + * 64 bit | FIELDS | ?????? FLAGS | + * 63 32 0 + */ +#define PG_uncached 31 /* Page has been mapped as uncached */ +#endif /* * Global page accounting. One instance per CPU. Only unsigned longs are _