aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMel Gorman <mel@csn.ul.ie>2009-06-16 18:32:09 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-06-16 22:47:34 -0400
commitd395b73428d9748fb70b33477c9b2acae62f360a (patch)
tree942bcfe36894ca8e13e6773c4713442a58a44a6d
parentda456f14d2f2d7350f2b9440af79c85a34c7eed5 (diff)
page allocator: do not setup zonelist cache when there is only one node
There is a zonelist cache which is used to track zones that are not in the allowed cpuset or found to be recently full. This is to reduce cache footprint on large machines. On smaller machines, it just incurs cost for no gain. This patch only uses the zonelist cache when there are NUMA nodes. Signed-off-by: Mel Gorman <mel@csn.ul.ie> Reviewed-by: Christoph Lameter <cl@linux-foundation.org> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Pekka Enberg <penberg@cs.helsinki.fi> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Cc: Dave Hansen <dave@linux.vnet.ibm.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>
-rw-r--r--mm/page_alloc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 03a386d24ef..fd8e3ca0cf3 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1464,8 +1464,11 @@ this_zone_full:
1464 if (NUMA_BUILD) 1464 if (NUMA_BUILD)
1465 zlc_mark_zone_full(zonelist, z); 1465 zlc_mark_zone_full(zonelist, z);
1466try_next_zone: 1466try_next_zone:
1467 if (NUMA_BUILD && !did_zlc_setup) { 1467 if (NUMA_BUILD && !did_zlc_setup && num_online_nodes() > 1) {
1468 /* we do zlc_setup after the first zone is tried */ 1468 /*
1469 * we do zlc_setup after the first zone is tried but only
1470 * if there are multiple nodes make it worthwhile
1471 */
1469 allowednodes = zlc_setup(zonelist, alloc_flags); 1472 allowednodes = zlc_setup(zonelist, alloc_flags);
1470 zlc_active = 1; 1473 zlc_active = 1;
1471 did_zlc_setup = 1; 1474 did_zlc_setup = 1;