dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] Don't print per-cpu vm stats for offline cpus.

I just hit a page allocation error on a kernel configured to support
64 CPUs.  It spewed 60 completely useless unnecessary lines of info.

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Dave Jones 2005-11-10 15:45:56 -05:00 committed by Linus Torvalds
parent 393b072587
commit 6b482c6779
1 changed files with 1 additions and 1 deletions

View File

@ -1330,7 +1330,7 @@ void show_free_areas(void)
} else
printk("\n");
for_each_cpu(cpu) {
for_each_online_cpu(cpu) {
struct per_cpu_pageset *pageset;
pageset = zone_pcp(zone, cpu);