Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
[deliverable/linux.git] / arch / sh / include / asm / topology.h
CommitLineData
1da177e4
LT
1#ifndef _ASM_SH_TOPOLOGY_H
2#define _ASM_SH_TOPOLOGY_H
3
b241cb0c
PM
4#ifdef CONFIG_NUMA
5
1e0f50ae
PM
6#define cpu_to_node(cpu) ((void)(cpu),0)
7#define parent_node(node) ((void)(node),0)
8
7479a293 9#define cpumask_of_node(node) ((void)node, cpu_online_mask)
1e0f50ae
PM
10
11#define pcibus_to_node(bus) ((void)(bus), -1)
b35346fd 12#define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
94316cda 13 cpu_all_mask : \
b35346fd
PM
14 cpumask_of_node(pcibus_to_node(bus)))
15
b241cb0c
PM
16#endif
17
896f0c0e
PM
18#define mc_capable() (1)
19
ccc7d5a1 20const struct cpumask *cpu_coregroup_mask(int cpu);
896f0c0e
PM
21
22extern cpumask_t cpu_core_map[NR_CPUS];
23
24#define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
25
1da177e4
LT
26#include <asm-generic/topology.h>
27
28#endif /* _ASM_SH_TOPOLOGY_H */
This page took 0.707723 seconds and 5 git commands to generate.