aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-10-28 23:21:14 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-28 23:21:14 -0700
commitcbf9589d708060593c253db889d6011a4a70816b (patch)
tree498e98120f8b7b33c6e12e46061c2c9754820b03 /mm
parent4d42378e456e33655f0fad1ab6d49c49d6ccebb3 (diff)
downloadhistory-cbf9589d708060593c253db889d6011a4a70816b.tar.gz
[PATCH] swapper_space warning suppression
Suppress page allocation warnings arising from radix_tree_node_alloc() allocations on behalf of swapper_space: these are expected under heavy load. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/swap_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/swap_state.c b/mm/swap_state.c
index 6e81f2d52edc6a..d61e19ab9d56de 100644
--- a/mm/swap_state.c
+++ b/mm/swap_state.c
@@ -34,7 +34,7 @@ static struct backing_dev_info swap_backing_dev_info = {
};
struct address_space swapper_space = {
- .page_tree = RADIX_TREE_INIT(GFP_ATOMIC),
+ .page_tree = RADIX_TREE_INIT(GFP_ATOMIC|__GFP_NOWARN),
.tree_lock = SPIN_LOCK_UNLOCKED,
.a_ops = &swap_aops,
.i_mmap_nonlinear = LIST_HEAD_INIT(swapper_space.i_mmap_nonlinear),