2 * Written by Kanoj Sarcar (kanoj@sgi.com) Aug 99
5 * Copyright (C) 2002 Anton Blanchard, IBM Corp.
13 * generic non-linear memory support:
15 * 1) we will not split memory into more chunks than will fit into the
16 * flags field of the struct page
19 #ifdef CONFIG_NEED_MULTIPLE_NODES
21 extern struct pglist_data
*node_data
[];
23 * Return a pointer to the node data for node n.
25 #define NODE_DATA(nid) (node_data[nid])
28 * Following are specific to this numa platform.
31 extern int numa_cpu_lookup_table
[];
32 extern cpumask_t numa_cpumask_lookup_table
[];
33 #ifdef CONFIG_MEMORY_HOTPLUG
34 extern unsigned long max_pfn
;
38 * Following are macros that each numa implmentation must define.
41 #define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
42 #define node_end_pfn(nid) (NODE_DATA(nid)->node_end_pfn)
44 #endif /* CONFIG_NEED_MULTIPLE_NODES */
46 #endif /* __KERNEL__ */
47 #endif /* _ASM_MMZONE_H_ */