aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel/smpboot.c
diff options
context:
space:
mode:
authorRobin Holt <holt@sgi.com>2008-07-28 20:36:50 -0500
committerTony Luck <tony.luck@intel.com>2008-08-25 11:10:11 -0700
commit42aca483ddee8888926d913b660e1dd38d748ba9 (patch)
treed4cb7748ebe3019d966976ca647020990ea37a2d /arch/ia64/kernel/smpboot.c
parent83097aca8567a0bd593534853b71fe0fa9a75d69 (diff)
downloadkernel_samsung_smdk4412-42aca483ddee8888926d913b660e1dd38d748ba9.zip
kernel_samsung_smdk4412-42aca483ddee8888926d913b660e1dd38d748ba9.tar.gz
kernel_samsung_smdk4412-42aca483ddee8888926d913b660e1dd38d748ba9.tar.bz2
[IA64] Fix ia64 build failure when CONFIG_SFC=m
CONFIG_SFC=m uses topology_core_siblings() which, for ia64, expects cpu_core_map to be exported. It is not. This patch exports the needed symbol. Maintainers note: This really looks like the wrong thing to do ... it would be much better for the kernel to export an API to provide drivers like this with data they need (which in the case of this driver seems to be an estimate of the effective parallelism available on the platform). But x86 has exported this forever ... so go with the flow until such an API is defined. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Signed-off-by: Robin Holt <holt@sgi.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/smpboot.c')
-rw-r--r--arch/ia64/kernel/smpboot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/ia64/kernel/smpboot.c b/arch/ia64/kernel/smpboot.c
index b39853a..bcea81e 100644
--- a/arch/ia64/kernel/smpboot.c
+++ b/arch/ia64/kernel/smpboot.c
@@ -138,6 +138,7 @@ cpumask_t cpu_possible_map = CPU_MASK_NONE;
EXPORT_SYMBOL(cpu_possible_map);
cpumask_t cpu_core_map[NR_CPUS] __cacheline_aligned;
+EXPORT_SYMBOL(cpu_core_map);
DEFINE_PER_CPU_SHARED_ALIGNED(cpumask_t, cpu_sibling_map);
EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);