aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2009-03-13 00:19:48 -0400
committerRusty Russell <rusty@rustcorp.com.au>2009-03-13 00:19:48 -0400
commitd3d2e7f24384cccedd29a0582ad4b014ac646abc (patch)
tree5febec2b823a430fd99e25daee34b09af118ed78 /arch
parent23c5c9c66263311de1295b42382e5bc1e7c36c47 (diff)
cpumask: remove obsolete topology_core_siblings and topology_thread_siblings: x86
Impact: cleanup There were replaced by topology_core_cpumask and topology_thread_cpumask. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/topology.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h
index 6b954fbd7872..f7c20d031422 100644
--- a/arch/x86/include/asm/topology.h
+++ b/arch/x86/include/asm/topology.h
@@ -249,8 +249,6 @@ extern const struct cpumask *cpu_coregroup_mask(int cpu);
249#ifdef ENABLE_TOPO_DEFINES 249#ifdef ENABLE_TOPO_DEFINES
250#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id) 250#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
251#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id) 251#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
252#define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu))
253#define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
254#define topology_core_cpumask(cpu) (&per_cpu(cpu_core_map, cpu)) 252#define topology_core_cpumask(cpu) (&per_cpu(cpu_core_map, cpu))
255#define topology_thread_cpumask(cpu) (&per_cpu(cpu_sibling_map, cpu)) 253#define topology_thread_cpumask(cpu) (&per_cpu(cpu_sibling_map, cpu))
256 254