summaryrefslogtreecommitdiff
path: root/xen/arch/x86/numa.c
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2015-11-30 11:57:34 +0100
committerJan Beulich <jbeulich@suse.com>2015-11-30 11:57:34 +0100
commitdb62aaa1b9658031a5a6b3ecf67237275041d3c2 (patch)
tree208efddef0e2fdb593d88b2e94a565d5c704324e /xen/arch/x86/numa.c
parent0249250f5f5ba2f781643a15fa4056bf1bd8b30d (diff)
drop empty __cpuinitdata annotation
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Reviewed-by: Jan Beulich <jbeulich@suse.com>
Diffstat (limited to 'xen/arch/x86/numa.c')
-rw-r--r--xen/arch/x86/numa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c
index 7e492d4f5e..6a8880fd7d 100644
--- a/xen/arch/x86/numa.c
+++ b/xen/arch/x86/numa.c
@@ -42,7 +42,7 @@ nodeid_t cpu_to_node[NR_CPUS] __read_mostly = {
/*
* Keep BIOS's CPU2node information, should not be used for memory allocaion
*/
-nodeid_t apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = {
+nodeid_t apicid_to_node[MAX_LOCAL_APIC] = {
[0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
};
cpumask_t node_to_cpumask[MAX_NUMNODES] __read_mostly;