提交 2f96996d 编写于 作者: J John Hawkes 提交者: Linus Torvalds

[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: NJohn Hawkes <hawkes@sgi.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 5fcbb230
......@@ -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++)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册