Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 28670
b: refs/heads/master
c: e110b28
h: refs/heads/master
v: v3
  • Loading branch information
Olof Johansson authored and Paul Mackerras committed Apr 22, 2006
1 parent e4a3f0f commit af7783e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4baaf0cfda7279e1adaedc203d7a09e8e44597ab
refs/heads/master: e110b281dc93e3b4587a3d0440bb7ae38daddfde
6 changes: 3 additions & 3 deletions trunk/arch/powerpc/mm/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,9 @@ void __init paging_init(void)
kmap_prot = PAGE_KERNEL;
#endif /* CONFIG_HIGHMEM */

printk(KERN_INFO "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
printk(KERN_DEBUG "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
top_of_ram, total_ram);
printk(KERN_INFO "Memory hole size: %ldMB\n",
printk(KERN_DEBUG "Memory hole size: %ldMB\n",
(top_of_ram - total_ram) >> 20);
/*
* All pages are DMA-able so we put them all in the DMA zone.
Expand Down Expand Up @@ -380,7 +380,7 @@ void __init mem_init(void)
totalhigh_pages++;
}
totalram_pages += totalhigh_pages;
printk(KERN_INFO "High memory: %luk\n",
printk(KERN_DEBUG "High memory: %luk\n",
totalhigh_pages << (PAGE_SHIFT-10));
}
#endif /* CONFIG_HIGHMEM */
Expand Down
8 changes: 4 additions & 4 deletions trunk/arch/powerpc/mm/numa.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,9 +465,9 @@ static void __init setup_nonnuma(void)
unsigned long total_ram = lmb_phys_mem_size();
unsigned int i;

printk(KERN_INFO "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
printk(KERN_DEBUG "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
top_of_ram, total_ram);
printk(KERN_INFO "Memory hole size: %ldMB\n",
printk(KERN_DEBUG "Memory hole size: %ldMB\n",
(top_of_ram - total_ram) >> 20);

for (i = 0; i < lmb.memory.cnt; ++i)
Expand All @@ -485,7 +485,7 @@ void __init dump_numa_cpu_topology(void)
return;

for_each_online_node(node) {
printk(KERN_INFO "Node %d CPUs:", node);
printk(KERN_DEBUG "Node %d CPUs:", node);

count = 0;
/*
Expand Down Expand Up @@ -521,7 +521,7 @@ static void __init dump_numa_memory_topology(void)
for_each_online_node(node) {
unsigned long i;

printk(KERN_INFO "Node %d Memory:", node);
printk(KERN_DEBUG "Node %d Memory:", node);

count = 0;

Expand Down

0 comments on commit af7783e

Please sign in to comment.