projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17d857b
)
m68knommu: show KiB rather than pages in "Freeing initrd memory:" message
author
Lennart Sorensen
<lsorense@csclub.uwaterloo.ca>
Thu, 17 Sep 2009 15:49:41 +0000
(11:49 -0400)
committer
Greg Ungerer
<gerg@uclinux.org>
Wed, 30 Sep 2009 00:05:59 +0000
(10:05 +1000)
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>
arch/m68knommu/mm/init.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/m68knommu/mm/init.c
b/arch/m68knommu/mm/init.c
index b1703c67a4f195f54203e8cbeed93c3441b8d9a8..f3236d0b522ddceaa39a9a468b7cc4f02d27b5d1 100644
(file)
--- 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