mmzone_64.h 430 B

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