瀏覽代碼

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 <lsorense@csclub.uwaterloo.ca>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Lennart Sorensen 15 年之前
父節點
當前提交
cd15e8c331
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/m68knommu/mm/init.c

+ 1 - 1
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