aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/topology.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-powerpc/topology.h')
-rw-r--r--include/asm-powerpc/topology.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asm-powerpc/topology.h b/include/asm-powerpc/topology.h
index db8095cbe09b..1e19cd00af25 100644
--- a/include/asm-powerpc/topology.h
+++ b/include/asm-powerpc/topology.h
@@ -1,5 +1,6 @@
1#ifndef _ASM_POWERPC_TOPOLOGY_H 1#ifndef _ASM_POWERPC_TOPOLOGY_H
2#define _ASM_POWERPC_TOPOLOGY_H 2#define _ASM_POWERPC_TOPOLOGY_H
3#ifdef __KERNEL__
3 4
4#include <linux/config.h> 5#include <linux/config.h>
5 6
@@ -38,7 +39,6 @@ static inline int node_to_first_cpu(int node)
38 .max_interval = 32, \ 39 .max_interval = 32, \
39 .busy_factor = 32, \ 40 .busy_factor = 32, \
40 .imbalance_pct = 125, \ 41 .imbalance_pct = 125, \
41 .cache_hot_time = (10*1000000), \
42 .cache_nice_tries = 1, \ 42 .cache_nice_tries = 1, \
43 .per_cpu_gain = 100, \ 43 .per_cpu_gain = 100, \
44 .busy_idx = 3, \ 44 .busy_idx = 3, \
@@ -55,10 +55,15 @@ static inline int node_to_first_cpu(int node)
55 .nr_balance_failed = 0, \ 55 .nr_balance_failed = 0, \
56} 56}
57 57
58extern void __init dump_numa_cpu_topology(void);
59
58#else 60#else
59 61
62static inline void dump_numa_cpu_topology(void) {}
63
60#include <asm-generic/topology.h> 64#include <asm-generic/topology.h>
61 65
62#endif /* CONFIG_NUMA */ 66#endif /* CONFIG_NUMA */
63 67
68#endif /* __KERNEL__ */
64#endif /* _ASM_POWERPC_TOPOLOGY_H */ 69#endif /* _ASM_POWERPC_TOPOLOGY_H */