diff options
author | Tejun Heo <tj@kernel.org> | 2011-02-16 11:11:08 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-02-16 11:11:08 -0500 |
commit | 43a662f04f731c331706456c9852ef7146ba5d85 (patch) | |
tree | 055e3433a69d35ad20ed405007220c28f8674f02 /arch/x86/include | |
parent | ef396ec96c1a8ffd2b0bc67f1f79c7274de02b95 (diff) |
x86-64, NUMA: Unify use of memblk in all init methods
Make both amd and dummy use numa_add_memblk() to describe the detected
memory blocks. This allows initmem_init() to call
numa_register_memblk() regardless of init method in use. Drop custom
memory registration codes from amd and dummy.
After this change, memblk merge/cleanup in numa_register_memblks() is
applied to all init methods.
As this makes compute_hash_shift() and numa_register_memblks() used
only inside numa_64.c, make them static.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: Shaohui Zheng <shaohui.zheng@intel.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/numa_64.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/x86/include/asm/numa_64.h b/arch/x86/include/asm/numa_64.h index 3306a2b99ece..e925605150a0 100644 --- a/arch/x86/include/asm/numa_64.h +++ b/arch/x86/include/asm/numa_64.h | |||
@@ -8,9 +8,6 @@ struct bootnode { | |||
8 | u64 end; | 8 | u64 end; |
9 | }; | 9 | }; |
10 | 10 | ||
11 | extern int compute_hash_shift(struct bootnode *nodes, int numblks, | ||
12 | int *nodeids); | ||
13 | |||
14 | #define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT)) | 11 | #define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT)) |
15 | 12 | ||
16 | extern int numa_off; | 13 | extern int numa_off; |
@@ -33,7 +30,6 @@ extern struct bootnode numa_nodes[MAX_NUMNODES] __initdata; | |||
33 | 30 | ||
34 | extern int __cpuinit numa_cpu_node(int cpu); | 31 | extern int __cpuinit numa_cpu_node(int cpu); |
35 | extern int __init numa_add_memblk(int nodeid, u64 start, u64 end); | 32 | extern int __init numa_add_memblk(int nodeid, u64 start, u64 end); |
36 | extern int __init numa_register_memblks(void); | ||
37 | 33 | ||
38 | #ifdef CONFIG_NUMA_EMU | 34 | #ifdef CONFIG_NUMA_EMU |
39 | #define FAKE_NODE_MIN_SIZE ((u64)32 << 20) | 35 | #define FAKE_NODE_MIN_SIZE ((u64)32 << 20) |