diff options
author | Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp> | 2007-10-17 02:27:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:54 -0400 |
commit | bcbba6c10ef6b14b0542d7ed7380e95168175818 (patch) | |
tree | 052c7c8062d7348a7caf8c4780d2a65aa81a9ca7 /arch/x86/kernel/machine_kexec_32.c | |
parent | 00cab92f9e91c0feeaca11a485b15175304779d5 (diff) |
add-vmcore: add a prefix "VMCOREINFO_" to the vmcoreinfo macros
Add a prefix "VMCOREINFO_" to the vmcoreinfo macros. Old vmcoreinfo macros
were defined as generic names SYMBOL/SIZE/OFFSET /LENGTH/CONFIG, and it is
impossible to grep for them. So these names should be changed. This
discussion is the following:
http://www.ussg.iu.edu/hypermail/linux/kernel/0709.1/0415.html
Signed-off-by: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/kernel/machine_kexec_32.c')
-rw-r--r-- | arch/x86/kernel/machine_kexec_32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/machine_kexec_32.c b/arch/x86/kernel/machine_kexec_32.c index ae20fa5afa62..8459ca64bc2f 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); | |||
174 | void arch_crash_save_vmcoreinfo(void) | 174 | void 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 | ||