diff options
author | Andi Kleen <ak@suse.de> | 2006-01-11 16:44:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:04:55 -0500 |
commit | 6b050f8075823b0d9ec4fad38f4f552b74e5c5af (patch) | |
tree | f2e6f95f7140b06ee8dae4bb03d4d4e78df69e54 /arch/x86_64/mm/numa.c | |
parent | d18ff47068154de8b4c1506be60a30a961846d18 (diff) |
[PATCH] x86_64: Clean up some printks in NUMA code
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/mm/numa.c')
-rw-r--r-- | arch/x86_64/mm/numa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86_64/mm/numa.c b/arch/x86_64/mm/numa.c index 47044ab1f667..42ec1f4f491a 100644 --- a/arch/x86_64/mm/numa.c +++ b/arch/x86_64/mm/numa.c | |||
@@ -81,7 +81,7 @@ int __init compute_hash_shift(struct node *nodes, int numnodes) | |||
81 | while (populate_memnodemap(nodes, numnodes, shift + 1) >= 0) | 81 | while (populate_memnodemap(nodes, numnodes, shift + 1) >= 0) |
82 | shift++; | 82 | shift++; |
83 | 83 | ||
84 | printk(KERN_DEBUG "Using %d for the hash shift.\n", | 84 | printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n", |
85 | shift); | 85 | shift); |
86 | 86 | ||
87 | if (populate_memnodemap(nodes, numnodes, shift) != 1) { | 87 | if (populate_memnodemap(nodes, numnodes, shift) != 1) { |
@@ -110,7 +110,7 @@ void __init setup_node_bootmem(int nodeid, unsigned long start, unsigned long en | |||
110 | 110 | ||
111 | start = round_up(start, ZONE_ALIGN); | 111 | start = round_up(start, ZONE_ALIGN); |
112 | 112 | ||
113 | printk("Bootmem setup node %d %016lx-%016lx\n", nodeid, start, end); | 113 | printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid, start, end); |
114 | 114 | ||
115 | start_pfn = start >> PAGE_SHIFT; | 115 | start_pfn = start >> PAGE_SHIFT; |
116 | end_pfn = end >> PAGE_SHIFT; | 116 | end_pfn = end >> PAGE_SHIFT; |
@@ -156,7 +156,7 @@ void __init setup_node_zones(int nodeid) | |||
156 | start_pfn = node_start_pfn(nodeid); | 156 | start_pfn = node_start_pfn(nodeid); |
157 | end_pfn = node_end_pfn(nodeid); | 157 | end_pfn = node_end_pfn(nodeid); |
158 | 158 | ||
159 | Dprintk(KERN_INFO "setting up node %d %lx-%lx\n", | 159 | Dprintk(KERN_INFO "Setting up node %d %lx-%lx\n", |
160 | nodeid, start_pfn, end_pfn); | 160 | nodeid, start_pfn, end_pfn); |
161 | 161 | ||
162 | size_zones(zones, holes, start_pfn, end_pfn); | 162 | size_zones(zones, holes, start_pfn, end_pfn); |
@@ -200,7 +200,7 @@ static int numa_emulation(unsigned long start_pfn, unsigned long end_pfn) | |||
200 | while ((x << 1) < sz) | 200 | while ((x << 1) < sz) |
201 | x <<= 1; | 201 | x <<= 1; |
202 | if (x < sz/2) | 202 | if (x < sz/2) |
203 | printk("Numa emulation unbalanced. Complain to maintainer\n"); | 203 | printk(KERN_ERR "Numa emulation unbalanced. Complain to maintainer\n"); |
204 | sz = x; | 204 | sz = x; |
205 | } | 205 | } |
206 | 206 | ||