mmzone.h 354 B

123456789101112131415161718
  1. #ifndef _SPARC64_MMZONE_H
  2. #define _SPARC64_MMZONE_H
  3. #ifdef CONFIG_NEED_MULTIPLE_NODES
  4. #include <linux/cpumask.h>
  5. extern struct pglist_data *node_data[];
  6. #define NODE_DATA(nid) (node_data[nid])
  7. extern int numa_cpu_lookup_table[];
  8. extern cpumask_t numa_cpumask_lookup_table[];
  9. #endif /* CONFIG_NEED_MULTIPLE_NODES */
  10. #endif /* _SPARC64_MMZONE_H */