numa.h 391 B

123456789101112131415161718192021
  1. #ifndef _ASM_X8664_NUMA_H
  2. #define _ASM_X8664_NUMA_H 1
  3. #include <linux/nodemask.h>
  4. #include <asm/numnodes.h>
  5. struct node {
  6. u64 start,end;
  7. };
  8. extern int compute_hash_shift(struct node *nodes, int numnodes);
  9. #define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT))
  10. extern void numa_add_cpu(int cpu);
  11. extern void numa_init_array(void);
  12. extern int numa_off;
  13. #define NUMA_NO_NODE 0xff
  14. #endif