remove size of apicid_to_node from header From: David Rientjes The size of apicid_to_node[] is declared in arch/x86_64/mm/numa.c to be MAX_LOCAL_APIC. No need to declare its size in a header file. Signed-off-by: David Rientjes Signed-off-by: Andi Kleen --- include/asm-x86_64/numa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux/include/asm-x86_64/numa.h =================================================================== --- linux.orig/include/asm-x86_64/numa.h +++ linux/include/asm-x86_64/numa.h @@ -19,7 +19,7 @@ extern void numa_set_node(int cpu, int n extern void srat_reserve_add_area(int nodeid); extern int hotadd_percent; -extern unsigned char apicid_to_node[256]; +extern unsigned char apicid_to_node[]; #ifdef CONFIG_NUMA extern void __init init_cpu_to_node(void);