aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/machine_kexec_32.c6
-rw-r--r--arch/x86/kernel/machine_kexec_64.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/kernel/machine_kexec_32.c b/arch/x86/kernel/machine_kexec_32.c
index ae20fa5afa..8459ca64bc 100644
--- a/arch/x86/kernel/machine_kexec_32.c
+++ b/arch/x86/kernel/machine_kexec_32.c
@@ -174,11 +174,11 @@ early_param("crashkernel", parse_crashkernel);
174void arch_crash_save_vmcoreinfo(void) 174void arch_crash_save_vmcoreinfo(void)
175{ 175{
176#ifdef CONFIG_ARCH_DISCONTIGMEM_ENABLE 176#ifdef CONFIG_ARCH_DISCONTIGMEM_ENABLE
177 SYMBOL(node_data); 177 VMCOREINFO_SYMBOL(node_data);
178 LENGTH(node_data, MAX_NUMNODES); 178 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
179#endif 179#endif
180#ifdef CONFIG_X86_PAE 180#ifdef CONFIG_X86_PAE
181 CONFIG(X86_PAE); 181 VMCOREINFO_CONFIG(X86_PAE);
182#endif 182#endif
183} 183}
184 184
diff --git a/arch/x86/kernel/machine_kexec_64.c b/arch/x86/kernel/machine_kexec_64.c
index e333ea110a..7450b69710 100644
--- a/arch/x86/kernel/machine_kexec_64.c
+++ b/arch/x86/kernel/machine_kexec_64.c
@@ -261,8 +261,8 @@ early_param("crashkernel", setup_crashkernel);
261void arch_crash_save_vmcoreinfo(void) 261void arch_crash_save_vmcoreinfo(void)
262{ 262{
263#ifdef CONFIG_ARCH_DISCONTIGMEM_ENABLE 263#ifdef CONFIG_ARCH_DISCONTIGMEM_ENABLE
264 SYMBOL(node_data); 264 VMCOREINFO_SYMBOL(node_data);
265 LENGTH(node_data, MAX_NUMNODES); 265 VMCOREINFO_LENGTH(node_data, MAX_NUMNODES);
266#endif 266#endif
267} 267}
268 268