aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/ia64/kernel/machine_kexec.c5
-rw-r--r--arch/x86/kernel/machine_kexec_32.c2
-rw-r--r--arch/x86/kernel/machine_kexec_64.c5
3 files changed, 9 insertions, 3 deletions
diff --git a/arch/ia64/kernel/machine_kexec.c b/arch/ia64/kernel/machine_kexec.c
index 6e725eff271b..0823de1f6ebe 100644
--- a/arch/ia64/kernel/machine_kexec.c
+++ b/arch/ia64/kernel/machine_kexec.c
@@ -129,10 +129,11 @@ void machine_kexec(struct kimage *image)
129 129
130void arch_crash_save_vmcoreinfo(void) 130void arch_crash_save_vmcoreinfo(void)
131{ 131{
132#if defined(CONFIG_ARCH_DISCONTIGMEM_ENABLE) && defined(CONFIG_NUMA) 132#if defined(CONFIG_DISCONTIGMEM) || defined(CONFIG_SPARSEMEM)
133 VMCOREINFO_SYMBOL(pgdat_list); 133 VMCOREINFO_SYMBOL(pgdat_list);
134 VMCOREINFO_LENGTH(pgdat_list, MAX_NUMNODES); 134 VMCOREINFO_LENGTH(pgdat_list, MAX_NUMNODES);
135 135#endif
136#ifdef CONFIG_NUMA
136 VMCOREINFO_SYMBOL(node_memblk); 137 VMCOREINFO_SYMBOL(node_memblk);
137 VMCOREINFO_LENGTH(node_memblk, NR_NODE_MEMBLKS); 138 VMCOREINFO_LENGTH(node_memblk, NR_NODE_MEMBLKS);
138 VMCOREINFO_STRUCT_SIZE(node_memblk_s); 139 VMCOREINFO_STRUCT_SIZE(node_memblk_s);
diff --git a/arch/x86/kernel/machine_kexec_32.c b/arch/x86/kernel/machine_kexec_32.c
index c1cfd60639d4..d0b234c9fc31 100644
--- a/arch/x86/kernel/machine_kexec_32.c
+++ b/arch/x86/kernel/machine_kexec_32.c
@@ -151,7 +151,7 @@ NORET_TYPE void machine_kexec(struct kimage *image)
151 151
152void arch_crash_save_vmcoreinfo(void) 152void arch_crash_save_vmcoreinfo(void)
153{ 153{
154#ifdef CONFIG_ARCH_DISCONTIGMEM_ENABLE 154#ifdef CONFIG_NUMA
155 VMCOREINFO_SYMBOL(node_data); 155 VMCOREINFO_SYMBOL(node_data);
156 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES); 156 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
157#endif 157#endif
diff --git a/arch/x86/kernel/machine_kexec_64.c b/arch/x86/kernel/machine_kexec_64.c
index a1fef42f8cdb..236d2f8f7ddc 100644
--- a/arch/x86/kernel/machine_kexec_64.c
+++ b/arch/x86/kernel/machine_kexec_64.c
@@ -234,5 +234,10 @@ NORET_TYPE void machine_kexec(struct kimage *image)
234void arch_crash_save_vmcoreinfo(void) 234void arch_crash_save_vmcoreinfo(void)
235{ 235{
236 VMCOREINFO_SYMBOL(init_level4_pgt); 236 VMCOREINFO_SYMBOL(init_level4_pgt);
237
238#ifdef CONFIG_NUMA
239 VMCOREINFO_SYMBOL(node_data);
240 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
241#endif
237} 242}
238 243