mmzone.h 363 B

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