diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-24 08:41:41 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-06-24 13:07:53 -0400 |
commit | 816724e65c72a90a44fbad0ef0b59b186c85fa90 (patch) | |
tree | 421fa29aedff988e392f92780637553e275d37a0 /include/linux/page-flags.h | |
parent | 70ac4385a13f78bc478f26d317511893741b05bd (diff) | |
parent | d384ea691fe4ea8c2dd5b9b8d9042eb181776f18 (diff) |
Merge branch 'master' of /home/trondmy/kernel/linux-2.6/
Conflicts:
fs/nfs/inode.c
fs/super.c
Fix conflicts between patch 'NFS: Split fs/nfs/inode.c' and patch
'VFS: Permit filesystem to override root dentry on mount'
Diffstat (limited to 'include/linux/page-flags.h')
-rw-r--r-- | include/linux/page-flags.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index d276a4e2f825..0c076d58c676 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
@@ -7,6 +7,8 @@ | |||
7 | 7 | ||
8 | #include <linux/percpu.h> | 8 | #include <linux/percpu.h> |
9 | #include <linux/cache.h> | 9 | #include <linux/cache.h> |
10 | #include <linux/types.h> | ||
11 | |||
10 | #include <asm/pgtable.h> | 12 | #include <asm/pgtable.h> |
11 | 13 | ||
12 | /* | 14 | /* |
@@ -88,7 +90,17 @@ | |||
88 | #define PG_nosave_free 18 /* Free, should not be written */ | 90 | #define PG_nosave_free 18 /* Free, should not be written */ |
89 | #define PG_buddy 19 /* Page is free, on buddy lists */ | 91 | #define PG_buddy 19 /* Page is free, on buddy lists */ |
90 | 92 | ||
91 | #define PG_uncached 20 /* Page has been mapped as uncached */ | 93 | |
94 | #if (BITS_PER_LONG > 32) | ||
95 | /* | ||
96 | * 64-bit-only flags build down from bit 31 | ||
97 | * | ||
98 | * 32 bit -------------------------------| FIELDS | FLAGS | | ||
99 | * 64 bit | FIELDS | ?????? FLAGS | | ||
100 | * 63 32 0 | ||
101 | */ | ||
102 | #define PG_uncached 31 /* Page has been mapped as uncached */ | ||
103 | #endif | ||
92 | 104 | ||
93 | /* | 105 | /* |
94 | * Global page accounting. One instance per CPU. Only unsigned longs are | 106 | * Global page accounting. One instance per CPU. Only unsigned longs are |