Skip to content

Commit

Permalink
[PATCH] mm: wider use of for_each_*cpu()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
John Hawkes authored and Linus Torvalds committed Oct 30, 2005
1 parent 5fcbb23 commit 2f96996
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1331,12 +1331,9 @@ void show_free_areas(void)
} else
printk("\n");

for (cpu = 0; cpu < NR_CPUS; ++cpu) {
for_each_cpu(cpu) {
struct per_cpu_pageset *pageset;

if (!cpu_possible(cpu))
continue;

pageset = zone_pcp(zone, cpu);

for (temperature = 0; temperature < 2; temperature++)
Expand Down

0 comments on commit 2f96996

Please sign in to comment.