mmzone.h 266 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_MMZONE_H
  3. #define __ASM_MMZONE_H
  4. #ifdef CONFIG_NUMA
  5. #include <asm/numa.h>
  6. extern struct pglist_data *node_data[];
  7. #define NODE_DATA(nid) (node_data[(nid)])
  8. #endif /* CONFIG_NUMA */
  9. #endif /* __ASM_MMZONE_H */