ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-x86_64 / topology.h
1 #ifndef _ASM_X86_64_TOPOLOGY_H
2 #define _ASM_X86_64_TOPOLOGY_H
3
4 #include <linux/config.h>
5
6 #ifdef CONFIG_DISCONTIGMEM
7
8 #include <asm/mpspec.h>
9 #include <asm/bitops.h>
10
11 /* Map the K8 CPU local memory controllers to a simple 1:1 CPU:NODE topology */
12
13 extern cpumask_t cpu_online_map;
14
15 extern unsigned char cpu_to_node[];
16 extern cpumask_t     node_to_cpumask[];
17
18 #define cpu_to_node(cpu)                (cpu_to_node[cpu])
19 #define parent_node(node)               (node)
20 #define node_to_first_cpu(node)         (__ffs(node_to_cpumask[node]))
21 #define node_to_cpumask(node)           (node_to_cpumask[node])
22
23 static inline unsigned long pcibus_to_cpumask(int bus)
24 {
25         return mp_bus_to_cpumask[bus] & cpu_online_map; 
26 }
27
28 #define NODE_BALANCE_RATE 30    /* CHECKME */ 
29
30 #endif
31
32 #include <asm-generic/topology.h>
33
34 #endif