From: Lennart Sorensen Date: Thu, 17 Sep 2009 15:49:41 +0000 (-0400) Subject: m68knommu: show KiB rather than pages in "Freeing initrd memory:" message X-Git-Tag: v2.6.32-rc4~63^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cd15e8c3313f2831d2d6c7951a93eb5de9621e5a;p=karo-tx-linux.git m68knommu: show KiB rather than pages in "Freeing initrd memory:" message Fix "Freeing initrd memory:" message m68knommu to show kilobytes as claimed rather than number of pages. Signed-off-by: Lennart Sorensen Signed-off-by: Greg Ungerer --- diff --git a/arch/m68knommu/mm/init.c b/arch/m68knommu/mm/init.c index b1703c67a4f1..f3236d0b522d 100644 --- a/arch/m68knommu/mm/init.c +++ b/arch/m68knommu/mm/init.c @@ -162,7 +162,7 @@ void free_initrd_mem(unsigned long start, unsigned long end) totalram_pages++; pages++; } - printk (KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages); + printk (KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages * (PAGE_SIZE / 1024)); } #endif