aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc64/mm
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2007-03-15 15:56:07 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:55:28 -0700
commit28256ca2e04c72eee1e83524d7f78ce5646030e2 (patch)
tree7d2d620312d6cdd1fbd1b39abc23b630006aa569 /arch/sparc64/mm
parent[SPARC64]: Kill kvaddr_to_phys() and friends. (diff)
downloadlinux-dev-28256ca2e04c72eee1e83524d7f78ce5646030e2.tar.xz
linux-dev-28256ca2e04c72eee1e83524d7f78ce5646030e2.zip
[SPARC64]: Mark show_mem() printk's with KERN_INFO.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/mm')
-rw-r--r--arch/sparc64/mm/init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c
index fca253989e5a..6fa78c5a30c4 100644
--- a/arch/sparc64/mm/init.c
+++ b/arch/sparc64/mm/init.c
@@ -421,12 +421,12 @@ void __kprobes flush_icache_range(unsigned long start, unsigned long end)
void show_mem(void)
{
- printk("Mem-info:\n");
+ printk(KERN_INFO "Mem-info:\n");
show_free_areas();
- printk("Free swap: %6ldkB\n",
+ printk(KERN_INFO "Free swap: %6ldkB\n",
nr_swap_pages << (PAGE_SHIFT-10));
- printk("%ld pages of RAM\n", num_physpages);
- printk("%lu free pages\n", nr_free_pages());
+ printk(KERN_INFO "%ld pages of RAM\n", num_physpages);
+ printk(KERN_INFO "%lu free pages\n", nr_free_pages());
}
void mmu_info(struct seq_file *m)