diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-02-10 04:43:02 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 13:51:17 -0500 |
commit | d23ad42324cc4378132e51f2fc5c9ba6cbe75182 (patch) | |
tree | 6844416befb3988e432e8f422f3a369e2f760d39 /include | |
parent | c878538598d1e7ab41ecc0de8894e34e2fdef630 (diff) |
[PATCH] Use ZVC for free_pages
This is again simplifies some of the VM counter calculations through the use
of the ZVC consolidated counters.
[michal.k.k.piotrowski@gmail.com: build fix]
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Michal Piotrowski <michal.k.k.piotrowski@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mmzone.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 9137d1b9735c..824279c7884d 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -47,6 +47,7 @@ struct zone_padding { | |||
47 | #endif | 47 | #endif |
48 | 48 | ||
49 | enum zone_stat_item { | 49 | enum zone_stat_item { |
50 | NR_FREE_PAGES, | ||
50 | NR_INACTIVE, | 51 | NR_INACTIVE, |
51 | NR_ACTIVE, | 52 | NR_ACTIVE, |
52 | NR_ANON_PAGES, /* Mapped anonymous pages */ | 53 | NR_ANON_PAGES, /* Mapped anonymous pages */ |
@@ -157,7 +158,6 @@ enum zone_type { | |||
157 | 158 | ||
158 | struct zone { | 159 | struct zone { |
159 | /* Fields commonly accessed by the page allocator */ | 160 | /* Fields commonly accessed by the page allocator */ |
160 | unsigned long free_pages; | ||
161 | unsigned long pages_min, pages_low, pages_high; | 161 | unsigned long pages_min, pages_low, pages_high; |
162 | /* | 162 | /* |
163 | * We don't know if the memory that we're going to allocate will be freeable | 163 | * We don't know if the memory that we're going to allocate will be freeable |