aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorJohn Hawkes <hawkes@sgi.com>2005-10-29 21:17:01 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-10-30 00:40:45 -0400
commit2f96996de0eda378df2a5f857ee1ef615ae10a4f (patch)
treeee3075c48a99369c9748ee17d3bb8396e9f38372 /mm/page_alloc.c
parent5fcbb23050936d69de8087d4b311eaf55cb42740 (diff)
[PATCH] mm: wider use of for_each_*cpu()
In 'mm' change the explicit use of a for-loop using NR_CPUS into the general for_each_cpu() constructs. This widens the scope of potential future optimizations of the general constructs, as well as takes advantage of the existing optimizations of first_cpu() and next_cpu(), which is advantageous when the true CPU count is much smaller than NR_CPUS. Signed-off-by: John Hawkes <hawkes@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 183abf39b445..2dbdd98426fd 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1331,12 +1331,9 @@ void show_free_areas(void)
1331 } else 1331 } else
1332 printk("\n"); 1332 printk("\n");
1333 1333
1334 for (cpu = 0; cpu < NR_CPUS; ++cpu) { 1334 for_each_cpu(cpu) {
1335 struct per_cpu_pageset *pageset; 1335 struct per_cpu_pageset *pageset;
1336 1336
1337 if (!cpu_possible(cpu))
1338 continue;
1339
1340 pageset = zone_pcp(zone, cpu); 1337 pageset = zone_pcp(zone, cpu);
1341 1338
1342 for (temperature = 0; temperature < 2; temperature++) 1339 for (temperature = 0; temperature < 2; temperature++)