[PATCH] PCI: Convert megaraid to use pci_driver shutdown method
[linux-2.6/kvm.git] / include / asm-x86_64 / topology.h
blob1c603cd7e4d096389d7cf92f11b79afcc338b288
1 #ifndef _ASM_X86_64_TOPOLOGY_H
2 #define _ASM_X86_64_TOPOLOGY_H
4 #include <linux/config.h>
6 #ifdef CONFIG_NUMA
8 #include <asm/mpspec.h>
9 #include <asm/bitops.h>
11 /* Map the K8 CPU local memory controllers to a simple 1:1 CPU:NODE topology */
13 extern cpumask_t cpu_online_map;
15 extern unsigned char cpu_to_node[];
16 extern cpumask_t node_to_cpumask[];
18 #ifdef CONFIG_ACPI_NUMA
19 extern int __node_distance(int, int);
20 #define node_distance(a,b) __node_distance(a,b)
21 /* #else fallback version */
22 #endif
24 #define cpu_to_node(cpu) (cpu_to_node[cpu])
25 #define parent_node(node) (node)
26 #define node_to_first_cpu(node) (__ffs(node_to_cpumask[node]))
27 #define node_to_cpumask(node) (node_to_cpumask[node])
28 #define pcibus_to_node(bus) ((long)(bus->sysdata))
29 #define pcibus_to_cpumask(bus) node_to_cpumask(pcibus_to_node(bus));
31 /* sched_domains SD_NODE_INIT for x86_64 machines */
32 #define SD_NODE_INIT (struct sched_domain) { \
33 .span = CPU_MASK_NONE, \
34 .parent = NULL, \
35 .groups = NULL, \
36 .min_interval = 8, \
37 .max_interval = 32, \
38 .busy_factor = 32, \
39 .imbalance_pct = 125, \
40 .cache_hot_time = (10*1000000), \
41 .cache_nice_tries = 2, \
42 .busy_idx = 3, \
43 .idle_idx = 2, \
44 .newidle_idx = 0, \
45 .wake_idx = 1, \
46 .forkexec_idx = 1, \
47 .per_cpu_gain = 100, \
48 .flags = SD_LOAD_BALANCE \
49 | SD_BALANCE_FORK \
50 | SD_BALANCE_EXEC \
51 | SD_WAKE_BALANCE, \
52 .last_balance = jiffies, \
53 .balance_interval = 1, \
54 .nr_balance_failed = 0, \
57 #endif
59 #include <asm-generic/topology.h>
61 #endif