diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-28 10:49:09 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-29 17:41:06 -0400 |
commit | 425a6b5043bcc2142804107c853f978ac2fe3040 (patch) | |
tree | 2125fedf8529d0991132e9d42913d2b42185a697 | |
parent | f85625ccf28d1bffd4dac916babb76b910ebef31 (diff) |
Export shared_cpu_map
The cpumap of CPUs that share the same cache level is not normally
available outside intel_cacheinfo.c. This commit allows to export such
map.
-rw-r--r-- | arch/x86/include/asm/processor.h | 2 | ||||
-rw-r--r-- | arch/x86/kernel/cpu/intel_cacheinfo.c | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index c9786480f0fe..e75daac64962 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
@@ -172,6 +172,8 @@ extern void print_cpu_info(struct cpuinfo_x86 *); | |||
172 | extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); | 172 | extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c); |
173 | extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); | 173 | extern unsigned int init_intel_cacheinfo(struct cpuinfo_x86 *c); |
174 | extern unsigned short num_cache_leaves; | 174 | extern unsigned short num_cache_leaves; |
175 | extern int get_shared_cpu_map(cpumask_var_t mask, | ||
176 | unsigned int cpu, int index); | ||
175 | 177 | ||
176 | extern void detect_extended_topology(struct cpuinfo_x86 *c); | 178 | extern void detect_extended_topology(struct cpuinfo_x86 *c); |
177 | extern void detect_ht(struct cpuinfo_x86 *c); | 179 | extern void detect_ht(struct cpuinfo_x86 *c); |
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c index 804c40e2bc3e..3167c3d72596 100644 --- a/arch/x86/kernel/cpu/intel_cacheinfo.c +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c | |||
@@ -515,6 +515,23 @@ unsigned int __cpuinit init_intel_cacheinfo(struct cpuinfo_x86 *c) | |||
515 | static DEFINE_PER_CPU(struct _cpuid4_info *, cpuid4_info); | 515 | static DEFINE_PER_CPU(struct _cpuid4_info *, cpuid4_info); |
516 | #define CPUID4_INFO_IDX(x, y) (&((per_cpu(cpuid4_info, x))[y])) | 516 | #define CPUID4_INFO_IDX(x, y) (&((per_cpu(cpuid4_info, x))[y])) |
517 | 517 | ||
518 | /* returns CPUs that share the index cache with cpu */ | ||
519 | int get_shared_cpu_map(cpumask_var_t mask, unsigned int cpu, int index) | ||
520 | { | ||
521 | int ret = 0; | ||
522 | struct _cpuid4_info *this_leaf; | ||
523 | |||
524 | if (index >= num_cache_leaves) { | ||
525 | index = num_cache_leaves - 1; | ||
526 | ret = index; | ||
527 | } | ||
528 | |||
529 | this_leaf = CPUID4_INFO_IDX(cpu,index); | ||
530 | cpumask_copy(mask, to_cpumask(this_leaf->shared_cpu_map)); | ||
531 | |||
532 | return ret; | ||
533 | } | ||
534 | |||
518 | #ifdef CONFIG_SMP | 535 | #ifdef CONFIG_SMP |
519 | static void __cpuinit cache_shared_cpu_map_setup(unsigned int cpu, int index) | 536 | static void __cpuinit cache_shared_cpu_map_setup(unsigned int cpu, int index) |
520 | { | 537 | { |