aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@engr.sgi.com>2004-08-01 20:12:21 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-01 20:12:21 -0700
commit460afa83eefbd70df3be8c9b5123f742c6086fd3 (patch)
tree88df0dfe88d75aef19aec1d9ae289af1b1450eb2 /mm
parent1768a3ac17e06f3d6e2883929a35ef6a63749192 (diff)
downloadhistory-460afa83eefbd70df3be8c9b5123f742c6086fd3.tar.gz
[PATCH] quieten down per-zone memory stats
On a system with a lot of nodes, 4 lines of output per node is a lot to have to sit through as the system comes up, especially if you're on the other end of a slow serial link. The information is valuable though, so keep it around for the system logger. This patch makes the printks for the memory stats use KERN_DEBUG instead of the default loglevel. Signed-off-by: Jesse Barnes <jbarnes@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/page_alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index ea75a79010fb3b..60522982ad3f92 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1370,7 +1370,7 @@ static void __init calculate_zone_totalpages(struct pglist_data *pgdat,
for (i = 0; i < MAX_NR_ZONES; i++)
realtotalpages -= zholes_size[i];
pgdat->node_present_pages = realtotalpages;
- printk("On node %d totalpages: %lu\n", pgdat->node_id, realtotalpages);
+ printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id, realtotalpages);
}
@@ -1476,7 +1476,7 @@ static void __init free_area_init_core(struct pglist_data *pgdat,
pcp->batch = 1 * batch;
INIT_LIST_HEAD(&pcp->list);
}
- printk(" %s zone: %lu pages, LIFO batch:%lu\n",
+ printk(KERN_DEBUG " %s zone: %lu pages, LIFO batch:%lu\n",
zone_names[j], realsize, batch);
INIT_LIST_HEAD(&zone->active_list);
INIT_LIST_HEAD(&zone->inactive_list);