aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/page.c
diff options
context:
space:
mode:
authorKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>2009-06-16 18:32:51 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-16 22:47:42 -0400
commit6837765963f1723e80ca97b1fae660f3a60d77df (patch)
treea9a6ed4b7e3bf188966da78b04bf39298f24375a /fs/proc/page.c
parentbce7394a3ef82b8477952fbab838e4a6e8cb47d2 (diff)
mm: remove CONFIG_UNEVICTABLE_LRU config option
Currently, nobody wants to turn UNEVICTABLE_LRU off. Thus this configurability is unnecessary. Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: Andi Kleen <andi@firstfloor.org> Acked-by: Minchan Kim <minchan.kim@gmail.com> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Matt Mackall <mpm@selenic.com> Cc: Rik van Riel <riel@redhat.com> Cc: Lee Schermerhorn <lee.schermerhorn@hp.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/page.c')
-rw-r--r--fs/proc/page.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/proc/page.c b/fs/proc/page.c
index 9d926bd279a4..2707c6c7a20f 100644
--- a/fs/proc/page.c
+++ b/fs/proc/page.c
@@ -172,10 +172,8 @@ static u64 get_uflags(struct page *page)
172 u |= kpf_copy_bit(k, KPF_SWAPCACHE, PG_swapcache); 172 u |= kpf_copy_bit(k, KPF_SWAPCACHE, PG_swapcache);
173 u |= kpf_copy_bit(k, KPF_SWAPBACKED, PG_swapbacked); 173 u |= kpf_copy_bit(k, KPF_SWAPBACKED, PG_swapbacked);
174 174
175#ifdef CONFIG_UNEVICTABLE_LRU
176 u |= kpf_copy_bit(k, KPF_UNEVICTABLE, PG_unevictable); 175 u |= kpf_copy_bit(k, KPF_UNEVICTABLE, PG_unevictable);
177 u |= kpf_copy_bit(k, KPF_MLOCKED, PG_mlocked); 176 u |= kpf_copy_bit(k, KPF_MLOCKED, PG_mlocked);
178#endif
179 177
180#ifdef CONFIG_IA64_UNCACHED_ALLOCATOR 178#ifdef CONFIG_IA64_UNCACHED_ALLOCATOR
181 u |= kpf_copy_bit(k, KPF_UNCACHED, PG_uncached); 179 u |= kpf_copy_bit(k, KPF_UNCACHED, PG_uncached);