Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 28896
b: refs/heads/master
c: f886ed4
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jun 23, 2006
1 parent 2d4ae56 commit 25185a6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 729bd0b74ce9ac6c829109052fcd565f5c366ca5
refs/heads/master: f886ed443fedb109e2062988bf120a531f0ec80a
14 changes: 13 additions & 1 deletion trunk/include/linux/page-flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

#include <linux/percpu.h>
#include <linux/cache.h>
#include <linux/types.h>

#include <asm/pgtable.h>

/*
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 25185a6

Please sign in to comment.