mmzone_64.h 391 B

123456789101112131415161718
  1. /* K8 NUMA support */
  2. /* Copyright 2002,2003 by Andi Kleen, SuSE Labs */
  3. /* 2.5 Version loosely based on the NUMAQ Code by Pat Gaughen. */
  4. #ifndef _ASM_X86_MMZONE_64_H
  5. #define _ASM_X86_MMZONE_64_H
  6. #ifdef CONFIG_NUMA
  7. #include <linux/mmdebug.h>
  8. #include <asm/smp.h>
  9. extern struct pglist_data *node_data[];
  10. #define NODE_DATA(nid) (node_data[nid])
  11. #endif
  12. #endif /* _ASM_X86_MMZONE_64_H */