Blame view

kernel/linux-rt-4.4.41/arch/s390/include/asm/numa.h 691 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  /*
   * NUMA support for s390
   *
   * Declare the NUMA core code structures and functions.
   *
   * Copyright IBM Corp. 2015
   */
  
  #ifndef _ASM_S390_NUMA_H
  #define _ASM_S390_NUMA_H
  
  #ifdef CONFIG_NUMA
  
  #include <linux/numa.h>
  #include <linux/cpumask.h>
  
  void numa_setup(void);
  int numa_pfn_to_nid(unsigned long pfn);
  int __node_distance(int a, int b);
  void numa_update_cpu_topology(void);
  
  extern cpumask_t node_to_cpumask_map[MAX_NUMNODES];
  extern int numa_debug_enabled;
  
  #else
  
  static inline void numa_setup(void) { }
  static inline void numa_update_cpu_topology(void) { }
  static inline int numa_pfn_to_nid(unsigned long pfn)
  {
  	return 0;
  }
  
  #endif /* CONFIG_NUMA */
  #endif /* _ASM_S390_NUMA_H */