diff options
author | Nick Piggin <nickpiggin@yahoo.com.au> | 2006-01-06 00:10:59 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 08:33:25 -0800 |
commit | 2d92c5c9150a2a9ca3dc25da58d5042e17a96b6a (patch) | |
tree | 7a559b29019f2391095f958d9546a4453839ec43 /include | |
parent | 13e7444b0ec59f96d81a4e8c379d5f38fc5f2cc1 (diff) | |
download | linux-3.10-2d92c5c9150a2a9ca3dc25da58d5042e17a96b6a.tar.gz linux-3.10-2d92c5c9150a2a9ca3dc25da58d5042e17a96b6a.tar.bz2 linux-3.10-2d92c5c9150a2a9ca3dc25da58d5042e17a96b6a.zip |
[PATCH] mm: remove pcp low
struct per_cpu_pages.low is useless. Remove it.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Cc: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mmzone.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 8cba76c6a28..0d1a5981bb9 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -46,7 +46,6 @@ struct zone_padding { struct per_cpu_pages { int count; /* number of pages in the list */ - int low; /* low watermark, refill needed */ int high; /* high watermark, emptying needed */ int batch; /* chunk size for buddy add/remove */ struct list_head list; /* the list of pages */ |