aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel/machine_kexec.c
diff options
context:
space:
mode:
authorKen'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>2008-02-07 03:15:23 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-07 11:42:25 -0500
commit92df5c3e38c0a0a66a456926039548275dfb3328 (patch)
treece77e06c476e341e4ba2c624c0d9e0dc6d4c3975 /arch/ia64/kernel/machine_kexec.c
parentbba1f603b88f30945ae4c5eccf2a6f5a12b877c5 (diff)
vmcoreinfo: fix the configuration dependencies
This patch fixes the configuration dependencies in the vmcoreinfo data. i386's "node_data" is defined in arch/x86/mm/discontig_32.c, and x86_64's one is defined in arch/x86/mm/numa_64.c. They depend on CONFIG_NUMA: arch/x86/mm/Makefile_32:7 obj-$(CONFIG_NUMA) += discontig_32.o arch/x86/mm/Makefile_64:7 obj-$(CONFIG_NUMA) += numa_64.o ia64's "pgdat_list" is defined in arch/ia64/mm/discontig.c, and it depends on CONFIG_DISCONTIGMEM and CONFIG_SPARSEMEM: arch/ia64/mm/Makefile:9-10 obj-$(CONFIG_DISCONTIGMEM) += discontig.o obj-$(CONFIG_SPARSEMEM) += discontig.o ia64's "node_memblk" is defined in arch/ia64/mm/numa.c, and it depends on CONFIG_NUMA: arch/ia64/mm/Makefile:8 obj-$(CONFIG_NUMA) += numa.o Signed-off-by: Ken'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp> Acked-by: Simon Horman <horms@verge.net.au> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/ia64/kernel/machine_kexec.c')
-rw-r--r--arch/ia64/kernel/machine_kexec.c5
1 files changed, 3 insertions, 2 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);