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:
4df2046
)
[PATCH] powerpc: Consistent printing of node id
author
Anton Blanchard
<anton@samba.org>
Sat, 25 Mar 2006 06:27:09 +0000
(17:27 +1100)
committer
Paul Mackerras
<paulus@samba.org>
Mon, 27 Mar 2006 03:48:50 +0000
(14:48 +1100)
We were printing node ids in hex in one spot. Lets be consistent and
always print them in decimal.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/mm/mem.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/powerpc/mm/mem.c
b/arch/powerpc/mm/mem.c
index badac10d700c2949de742b8d1544a9793f5cac86..4737f84bb19ef2e10773409c9012dedf992e9f5c 100644
(file)
--- a/
arch/powerpc/mm/mem.c
+++ b/
arch/powerpc/mm/mem.c
@@
-342,7
+342,7
@@
void __init mem_init(void)
#ifdef CONFIG_NEED_MULTIPLE_NODES
for_each_online_node(nid) {
if (NODE_DATA(nid)->node_spanned_pages != 0) {
- printk("freeing bootmem node %
x
\n", nid);
+ printk("freeing bootmem node %
d
\n", nid);
totalram_pages +=
free_all_bootmem_node(NODE_DATA(nid));
}