| .. | .. |
|---|
| 13 | 13 | #ifdef CONFIG_NUMA |
|---|
| 14 | 14 | |
|---|
| 15 | 15 | #include <linux/numa.h> |
|---|
| 16 | | -#include <linux/cpumask.h> |
|---|
| 17 | 16 | |
|---|
| 18 | 17 | void numa_setup(void); |
|---|
| 19 | | -int numa_pfn_to_nid(unsigned long pfn); |
|---|
| 20 | | -int __node_distance(int a, int b); |
|---|
| 21 | | -void numa_update_cpu_topology(void); |
|---|
| 22 | | - |
|---|
| 23 | | -extern cpumask_t node_to_cpumask_map[MAX_NUMNODES]; |
|---|
| 24 | | -extern int numa_debug_enabled; |
|---|
| 25 | 18 | |
|---|
| 26 | 19 | #else |
|---|
| 27 | 20 | |
|---|
| 28 | 21 | static inline void numa_setup(void) { } |
|---|
| 29 | | -static inline void numa_update_cpu_topology(void) { } |
|---|
| 30 | | -static inline int numa_pfn_to_nid(unsigned long pfn) |
|---|
| 31 | | -{ |
|---|
| 32 | | - return 0; |
|---|
| 33 | | -} |
|---|
| 34 | 22 | |
|---|
| 35 | 23 | #endif /* CONFIG_NUMA */ |
|---|
| 24 | + |
|---|
| 36 | 25 | #endif /* _ASM_S390_NUMA_H */ |
|---|