mmzone.h 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. /*
  11. * generic non-linear memory support:
  12. *
  13. * 1) we will not split memory into more chunks than will fit into the
  14. * flags field of the struct page
  15. */
  16. #ifdef CONFIG_NEED_MULTIPLE_NODES
  17. extern struct pglist_data *node_data[];
  18. /*
  19. * Return a pointer to the node data for node n.
  20. */
  21. #define NODE_DATA(nid) (node_data[nid])
  22. /*
  23. * Following are specific to this numa platform.
  24. */
  25. extern int numa_cpu_lookup_table[];
  26. extern cpumask_t numa_cpumask_lookup_table[];
  27. #ifdef CONFIG_MEMORY_HOTPLUG
  28. extern unsigned long max_pfn;
  29. #endif
  30. /*
  31. * Following are macros that each numa implmentation must define.
  32. */
  33. #define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
  34. #define node_end_pfn(nid) (NODE_DATA(nid)->node_end_pfn)
  35. #endif /* CONFIG_NEED_MULTIPLE_NODES */
  36. #endif /* __KERNEL__ */
  37. #endif /* _ASM_MMZONE_H_ */