mmzone.h 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Written by Kanoj Sarcar (kanoj@sgi.com) Aug 99
  3. *
  4. * PowerPC64 port:
  5. * Copyright (C) 2002 Anton Blanchard, IBM Corp.
  6. */
  7. #ifndef _ASM_MMZONE_H_
  8. #define _ASM_MMZONE_H_
  9. #ifdef __KERNEL__
  10. #include <linux/cpumask.h>
  11. /*
  12. * generic non-linear memory support:
  13. *
  14. * 1) we will not split memory into more chunks than will fit into the
  15. * flags field of the struct page
  16. */
  17. #ifdef CONFIG_NEED_MULTIPLE_NODES
  18. extern struct pglist_data *node_data[];
  19. /*
  20. * Return a pointer to the node data for node n.
  21. */
  22. #define NODE_DATA(nid) (node_data[nid])
  23. /*
  24. * Following are specific to this numa platform.
  25. */
  26. extern int numa_cpu_lookup_table[];
  27. extern cpumask_var_t node_to_cpumask_map[];
  28. #ifdef CONFIG_MEMORY_HOTPLUG
  29. extern unsigned long max_pfn;
  30. u64 memory_hotplug_max(void);
  31. #else
  32. #define memory_hotplug_max() memblock_end_of_DRAM()
  33. #endif
  34. #else
  35. #define memory_hotplug_max() memblock_end_of_DRAM()
  36. #endif /* CONFIG_NEED_MULTIPLE_NODES */
  37. #endif /* __KERNEL__ */
  38. #endif /* _ASM_MMZONE_H_ */