numa.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #ifndef _ASM_X86_NUMA_H
  2. #define _ASM_X86_NUMA_H
  3. #include <linux/nodemask.h>
  4. #include <asm/topology.h>
  5. #include <asm/apicdef.h>
  6. #ifdef CONFIG_NUMA
  7. #define NR_NODE_MEMBLKS (MAX_NUMNODES*2)
  8. /*
  9. * Too small node sizes may confuse the VM badly. Usually they
  10. * result from BIOS bugs. So dont recognize nodes as standalone
  11. * NUMA entities that have less than this amount of RAM listed:
  12. */
  13. #define NODE_MIN_SIZE (4*1024*1024)
  14. extern int numa_off;
  15. /*
  16. * __apicid_to_node[] stores the raw mapping between physical apicid and
  17. * node and is used to initialize cpu_to_node mapping.
  18. *
  19. * The mapping may be overridden by apic->numa_cpu_node() on 32bit and thus
  20. * should be accessed by the accessors - set_apicid_to_node() and
  21. * numa_cpu_node().
  22. */
  23. extern s16 __apicid_to_node[MAX_LOCAL_APIC];
  24. extern nodemask_t numa_nodes_parsed __initdata;
  25. extern int __init numa_add_memblk(int nodeid, u64 start, u64 end);
  26. extern void __init numa_set_distance(int from, int to, int distance);
  27. static inline void set_apicid_to_node(int apicid, s16 node)
  28. {
  29. __apicid_to_node[apicid] = node;
  30. }
  31. extern int numa_cpu_node(int cpu);
  32. #else /* CONFIG_NUMA */
  33. static inline void set_apicid_to_node(int apicid, s16 node)
  34. {
  35. }
  36. static inline int numa_cpu_node(int cpu)
  37. {
  38. return NUMA_NO_NODE;
  39. }
  40. #endif /* CONFIG_NUMA */
  41. #ifdef CONFIG_X86_32
  42. # include <asm/numa_32.h>
  43. #endif
  44. #ifdef CONFIG_NUMA
  45. extern void numa_set_node(int cpu, int node);
  46. extern void numa_clear_node(int cpu);
  47. extern void __init init_cpu_to_node(void);
  48. extern void numa_add_cpu(int cpu);
  49. extern void numa_remove_cpu(int cpu);
  50. #else /* CONFIG_NUMA */
  51. static inline void numa_set_node(int cpu, int node) { }
  52. static inline void numa_clear_node(int cpu) { }
  53. static inline void init_cpu_to_node(void) { }
  54. static inline void numa_add_cpu(int cpu) { }
  55. static inline void numa_remove_cpu(int cpu) { }
  56. #endif /* CONFIG_NUMA */
  57. #ifdef CONFIG_DEBUG_PER_CPU_MAPS
  58. void debug_cpumask_set_cpu(int cpu, int node, bool enable);
  59. #endif
  60. #ifdef CONFIG_NUMA_EMU
  61. #define FAKE_NODE_MIN_SIZE ((u64)32 << 20)
  62. #define FAKE_NODE_MIN_HASH_MASK (~(FAKE_NODE_MIN_SIZE - 1UL))
  63. void numa_emu_cmdline(char *);
  64. #endif /* CONFIG_NUMA_EMU */
  65. #endif /* _ASM_X86_NUMA_H */