Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic VM initialization for x86-64 NUMA setups. |
| 3 | * Copyright 2002,2003 Andi Kleen, SuSE Labs. |
| 4 | */ |
| 5 | #include <linux/kernel.h> |
| 6 | #include <linux/mm.h> |
| 7 | #include <linux/string.h> |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/bootmem.h> |
| 10 | #include <linux/mmzone.h> |
| 11 | #include <linux/ctype.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/nodemask.h> |
| 14 | |
| 15 | #include <asm/e820.h> |
| 16 | #include <asm/proto.h> |
| 17 | #include <asm/dma.h> |
| 18 | #include <asm/numa.h> |
| 19 | #include <asm/acpi.h> |
| 20 | |
| 21 | #ifndef Dprintk |
| 22 | #define Dprintk(x...) |
| 23 | #endif |
| 24 | |
Ravikiran G Thirumalai | 6c231b7 | 2005-09-06 15:17:45 -0700 | [diff] [blame] | 25 | struct pglist_data *node_data[MAX_NUMNODES] __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | bootmem_data_t plat_node_bdata[MAX_NUMNODES]; |
| 27 | |
| 28 | int memnode_shift; |
| 29 | u8 memnodemap[NODEMAPSIZE]; |
| 30 | |
Andi Kleen | 3f098c2 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 31 | unsigned char cpu_to_node[NR_CPUS] __read_mostly = { |
| 32 | [0 ... NR_CPUS-1] = NUMA_NO_NODE |
Andi Kleen | 0b07e98 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 33 | }; |
Andi Kleen | 3f098c2 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 34 | unsigned char apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = { |
| 35 | [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE |
| 36 | }; |
| 37 | cpumask_t node_to_cpumask[MAX_NUMNODES] __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | int numa_off __initdata; |
| 40 | |
Eric Dumazet | 529a340 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * Given a shift value, try to populate memnodemap[] |
| 44 | * Returns : |
| 45 | * 1 if OK |
| 46 | * 0 if memnodmap[] too small (of shift too small) |
| 47 | * -1 if node overlap or lost ram (shift too big) |
| 48 | */ |
Andi Kleen | d18ff47 | 2006-01-11 22:44:30 +0100 | [diff] [blame] | 49 | static int __init |
| 50 | populate_memnodemap(const struct node *nodes, int numnodes, int shift) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
| 52 | int i; |
Eric Dumazet | 529a340 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 53 | int res = -1; |
| 54 | unsigned long addr, end; |
Keith Mannthey | b684664 | 2005-07-28 21:15:38 -0700 | [diff] [blame] | 55 | |
Eric Dumazet | 8309cf6 | 2005-12-12 22:17:14 -0800 | [diff] [blame] | 56 | if (shift >= 64) |
| 57 | return -1; |
Eric Dumazet | 529a340 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 58 | memset(memnodemap, 0xff, sizeof(memnodemap)); |
| 59 | for (i = 0; i < numnodes; i++) { |
| 60 | addr = nodes[i].start; |
| 61 | end = nodes[i].end; |
| 62 | if (addr >= end) |
| 63 | continue; |
| 64 | if ((end >> shift) >= NODEMAPSIZE) |
| 65 | return 0; |
| 66 | do { |
| 67 | if (memnodemap[addr >> shift] != 0xff) |
| 68 | return -1; |
| 69 | memnodemap[addr >> shift] = i; |
Eric Dumazet | 8309cf6 | 2005-12-12 22:17:14 -0800 | [diff] [blame] | 70 | addr += (1UL << shift); |
Eric Dumazet | 529a340 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 71 | } while (addr < end); |
| 72 | res = 1; |
| 73 | } |
| 74 | return res; |
| 75 | } |
| 76 | |
| 77 | int __init compute_hash_shift(struct node *nodes, int numnodes) |
| 78 | { |
| 79 | int shift = 20; |
| 80 | |
| 81 | while (populate_memnodemap(nodes, numnodes, shift + 1) >= 0) |
Keith Mannthey | b684664 | 2005-07-28 21:15:38 -0700 | [diff] [blame] | 82 | shift++; |
| 83 | |
Andi Kleen | 6b050f8 | 2006-01-11 22:44:33 +0100 | [diff] [blame] | 84 | printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n", |
Eric Dumazet | 529a340 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 85 | shift); |
| 86 | |
| 87 | if (populate_memnodemap(nodes, numnodes, shift) != 1) { |
| 88 | printk(KERN_INFO |
Keith Mannthey | b684664 | 2005-07-28 21:15:38 -0700 | [diff] [blame] | 89 | "Your memory is not aligned you need to rebuild your kernel " |
Eric Dumazet | 529a340 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 90 | "with a bigger NODEMAPSIZE shift=%d\n", |
| 91 | shift); |
| 92 | return -1; |
| 93 | } |
Keith Mannthey | b684664 | 2005-07-28 21:15:38 -0700 | [diff] [blame] | 94 | return shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Matt Tolentino | bbfceef | 2005-06-23 00:08:07 -0700 | [diff] [blame] | 97 | #ifdef CONFIG_SPARSEMEM |
| 98 | int early_pfn_to_nid(unsigned long pfn) |
| 99 | { |
| 100 | return phys_to_nid(pfn << PAGE_SHIFT); |
| 101 | } |
| 102 | #endif |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | /* Initialize bootmem allocator for a node */ |
| 105 | void __init setup_node_bootmem(int nodeid, unsigned long start, unsigned long end) |
| 106 | { |
| 107 | unsigned long start_pfn, end_pfn, bootmap_pages, bootmap_size, bootmap_start; |
| 108 | unsigned long nodedata_phys; |
| 109 | const int pgdat_size = round_up(sizeof(pg_data_t), PAGE_SIZE); |
| 110 | |
| 111 | start = round_up(start, ZONE_ALIGN); |
| 112 | |
Andi Kleen | 6b050f8 | 2006-01-11 22:44:33 +0100 | [diff] [blame] | 113 | printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid, start, end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | start_pfn = start >> PAGE_SHIFT; |
| 116 | end_pfn = end >> PAGE_SHIFT; |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | nodedata_phys = find_e820_area(start, end, pgdat_size); |
| 119 | if (nodedata_phys == -1L) |
| 120 | panic("Cannot find memory pgdat in node %d\n", nodeid); |
| 121 | |
| 122 | Dprintk("nodedata_phys %lx\n", nodedata_phys); |
| 123 | |
| 124 | node_data[nodeid] = phys_to_virt(nodedata_phys); |
| 125 | memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t)); |
| 126 | NODE_DATA(nodeid)->bdata = &plat_node_bdata[nodeid]; |
| 127 | NODE_DATA(nodeid)->node_start_pfn = start_pfn; |
| 128 | NODE_DATA(nodeid)->node_spanned_pages = end_pfn - start_pfn; |
| 129 | |
| 130 | /* Find a place for the bootmem map */ |
| 131 | bootmap_pages = bootmem_bootmap_pages(end_pfn - start_pfn); |
| 132 | bootmap_start = round_up(nodedata_phys + pgdat_size, PAGE_SIZE); |
| 133 | bootmap_start = find_e820_area(bootmap_start, end, bootmap_pages<<PAGE_SHIFT); |
| 134 | if (bootmap_start == -1L) |
| 135 | panic("Not enough continuous space for bootmap on node %d", nodeid); |
| 136 | Dprintk("bootmap start %lu pages %lu\n", bootmap_start, bootmap_pages); |
| 137 | |
| 138 | bootmap_size = init_bootmem_node(NODE_DATA(nodeid), |
| 139 | bootmap_start >> PAGE_SHIFT, |
| 140 | start_pfn, end_pfn); |
| 141 | |
| 142 | e820_bootmem_free(NODE_DATA(nodeid), start, end); |
| 143 | |
| 144 | reserve_bootmem_node(NODE_DATA(nodeid), nodedata_phys, pgdat_size); |
| 145 | reserve_bootmem_node(NODE_DATA(nodeid), bootmap_start, bootmap_pages<<PAGE_SHIFT); |
| 146 | node_set_online(nodeid); |
| 147 | } |
| 148 | |
| 149 | /* Initialize final allocator for a zone */ |
| 150 | void __init setup_node_zones(int nodeid) |
| 151 | { |
| 152 | unsigned long start_pfn, end_pfn; |
| 153 | unsigned long zones[MAX_NR_ZONES]; |
Andi Kleen | 485761b | 2005-08-26 18:34:10 -0700 | [diff] [blame] | 154 | unsigned long holes[MAX_NR_ZONES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Andi Kleen | a2f1b42 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 156 | start_pfn = node_start_pfn(nodeid); |
| 157 | end_pfn = node_end_pfn(nodeid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Andi Kleen | 6b050f8 | 2006-01-11 22:44:33 +0100 | [diff] [blame] | 159 | Dprintk(KERN_INFO "Setting up node %d %lx-%lx\n", |
Andi Kleen | a2f1b42 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 160 | nodeid, start_pfn, end_pfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Andi Kleen | a2f1b42 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 162 | size_zones(zones, holes, start_pfn, end_pfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | free_area_init_node(nodeid, NODE_DATA(nodeid), zones, |
Andi Kleen | 485761b | 2005-08-26 18:34:10 -0700 | [diff] [blame] | 164 | start_pfn, holes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | void __init numa_init_array(void) |
| 168 | { |
| 169 | int rr, i; |
| 170 | /* There are unfortunately some poorly designed mainboards around |
| 171 | that only connect memory to a single CPU. This breaks the 1:1 cpu->node |
| 172 | mapping. To avoid this fill in the mapping for all possible |
| 173 | CPUs, as the number of CPUs is not known yet. |
| 174 | We round robin the existing nodes. */ |
Ravikiran G Thirumalai | 85cc513 | 2005-09-30 11:59:22 -0700 | [diff] [blame] | 175 | rr = first_node(node_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | for (i = 0; i < NR_CPUS; i++) { |
| 177 | if (cpu_to_node[i] != NUMA_NO_NODE) |
| 178 | continue; |
Andi Kleen | 69d81fc | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 179 | numa_set_node(i, rr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | rr = next_node(rr, node_online_map); |
| 181 | if (rr == MAX_NUMNODES) |
| 182 | rr = first_node(node_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | #ifdef CONFIG_NUMA_EMU |
| 188 | int numa_fake __initdata = 0; |
| 189 | |
| 190 | /* Numa emulation */ |
| 191 | static int numa_emulation(unsigned long start_pfn, unsigned long end_pfn) |
| 192 | { |
| 193 | int i; |
| 194 | struct node nodes[MAX_NUMNODES]; |
| 195 | unsigned long sz = ((end_pfn - start_pfn)<<PAGE_SHIFT) / numa_fake; |
| 196 | |
| 197 | /* Kludge needed for the hash function */ |
| 198 | if (hweight64(sz) > 1) { |
| 199 | unsigned long x = 1; |
| 200 | while ((x << 1) < sz) |
| 201 | x <<= 1; |
| 202 | if (x < sz/2) |
Andi Kleen | 6b050f8 | 2006-01-11 22:44:33 +0100 | [diff] [blame] | 203 | printk(KERN_ERR "Numa emulation unbalanced. Complain to maintainer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | sz = x; |
| 205 | } |
| 206 | |
| 207 | memset(&nodes,0,sizeof(nodes)); |
| 208 | for (i = 0; i < numa_fake; i++) { |
| 209 | nodes[i].start = (start_pfn<<PAGE_SHIFT) + i*sz; |
| 210 | if (i == numa_fake-1) |
| 211 | sz = (end_pfn<<PAGE_SHIFT) - nodes[i].start; |
| 212 | nodes[i].end = nodes[i].start + sz; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", |
| 214 | i, |
| 215 | nodes[i].start, nodes[i].end, |
| 216 | (nodes[i].end - nodes[i].start) >> 20); |
| 217 | node_set_online(i); |
| 218 | } |
| 219 | memnode_shift = compute_hash_shift(nodes, numa_fake); |
| 220 | if (memnode_shift < 0) { |
| 221 | memnode_shift = 0; |
| 222 | printk(KERN_ERR "No NUMA hash function found. Emulation disabled.\n"); |
| 223 | return -1; |
| 224 | } |
| 225 | for_each_online_node(i) |
| 226 | setup_node_bootmem(i, nodes[i].start, nodes[i].end); |
| 227 | numa_init_array(); |
| 228 | return 0; |
| 229 | } |
| 230 | #endif |
| 231 | |
| 232 | void __init numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn) |
| 233 | { |
| 234 | int i; |
| 235 | |
| 236 | #ifdef CONFIG_NUMA_EMU |
| 237 | if (numa_fake && !numa_emulation(start_pfn, end_pfn)) |
| 238 | return; |
| 239 | #endif |
| 240 | |
| 241 | #ifdef CONFIG_ACPI_NUMA |
| 242 | if (!numa_off && !acpi_scan_nodes(start_pfn << PAGE_SHIFT, |
| 243 | end_pfn << PAGE_SHIFT)) |
| 244 | return; |
| 245 | #endif |
| 246 | |
| 247 | #ifdef CONFIG_K8_NUMA |
| 248 | if (!numa_off && !k8_scan_nodes(start_pfn<<PAGE_SHIFT, end_pfn<<PAGE_SHIFT)) |
| 249 | return; |
| 250 | #endif |
| 251 | printk(KERN_INFO "%s\n", |
| 252 | numa_off ? "NUMA turned off" : "No NUMA configuration found"); |
| 253 | |
| 254 | printk(KERN_INFO "Faking a node at %016lx-%016lx\n", |
| 255 | start_pfn << PAGE_SHIFT, |
| 256 | end_pfn << PAGE_SHIFT); |
| 257 | /* setup dummy node covering all memory */ |
| 258 | memnode_shift = 63; |
| 259 | memnodemap[0] = 0; |
| 260 | nodes_clear(node_online_map); |
| 261 | node_set_online(0); |
| 262 | for (i = 0; i < NR_CPUS; i++) |
Andi Kleen | 69d81fc | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 263 | numa_set_node(i, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | node_to_cpumask[0] = cpumask_of_cpu(0); |
| 265 | setup_node_bootmem(0, start_pfn << PAGE_SHIFT, end_pfn << PAGE_SHIFT); |
| 266 | } |
| 267 | |
Ashok Raj | e6982c6 | 2005-06-25 14:54:58 -0700 | [diff] [blame] | 268 | __cpuinit void numa_add_cpu(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | { |
Ravikiran G Thirumalai | e6a045a | 2005-09-30 11:59:21 -0700 | [diff] [blame] | 270 | set_bit(cpu, &node_to_cpumask[cpu_to_node(cpu)]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Andi Kleen | 69d81fc | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 273 | void __cpuinit numa_set_node(int cpu, int node) |
| 274 | { |
Ravikiran G Thirumalai | df79efd | 2006-01-11 22:45:39 +0100 | [diff] [blame] | 275 | cpu_pda(cpu)->nodenumber = node; |
Andi Kleen | 69d81fc | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 276 | cpu_to_node[cpu] = node; |
| 277 | } |
| 278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | unsigned long __init numa_free_all_bootmem(void) |
| 280 | { |
| 281 | int i; |
| 282 | unsigned long pages = 0; |
| 283 | for_each_online_node(i) { |
| 284 | pages += free_all_bootmem_node(NODE_DATA(i)); |
| 285 | } |
| 286 | return pages; |
| 287 | } |
| 288 | |
Bob Picco | d3ee871 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 289 | #ifdef CONFIG_SPARSEMEM |
| 290 | static void __init arch_sparse_init(void) |
| 291 | { |
| 292 | int i; |
| 293 | |
| 294 | for_each_online_node(i) |
| 295 | memory_present(i, node_start_pfn(i), node_end_pfn(i)); |
| 296 | |
| 297 | sparse_init(); |
| 298 | } |
| 299 | #else |
| 300 | #define arch_sparse_init() do {} while (0) |
| 301 | #endif |
| 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | void __init paging_init(void) |
| 304 | { |
| 305 | int i; |
Bob Picco | d3ee871 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 306 | |
| 307 | arch_sparse_init(); |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | for_each_online_node(i) { |
| 310 | setup_node_zones(i); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | /* [numa=off] */ |
| 315 | __init int numa_setup(char *opt) |
| 316 | { |
| 317 | if (!strncmp(opt,"off",3)) |
| 318 | numa_off = 1; |
| 319 | #ifdef CONFIG_NUMA_EMU |
| 320 | if(!strncmp(opt, "fake=", 5)) { |
| 321 | numa_fake = simple_strtoul(opt+5,NULL,0); ; |
| 322 | if (numa_fake >= MAX_NUMNODES) |
| 323 | numa_fake = MAX_NUMNODES; |
| 324 | } |
| 325 | #endif |
| 326 | #ifdef CONFIG_ACPI_NUMA |
| 327 | if (!strncmp(opt,"noacpi",6)) |
| 328 | acpi_numa = -1; |
| 329 | #endif |
| 330 | return 1; |
| 331 | } |
| 332 | |
Ravikiran Thirumalai | 05b3cbd | 2006-01-11 22:45:36 +0100 | [diff] [blame] | 333 | /* |
| 334 | * Setup early cpu_to_node. |
| 335 | * |
| 336 | * Populate cpu_to_node[] only if x86_cpu_to_apicid[], |
| 337 | * and apicid_to_node[] tables have valid entries for a CPU. |
| 338 | * This means we skip cpu_to_node[] initialisation for NUMA |
| 339 | * emulation and faking node case (when running a kernel compiled |
| 340 | * for NUMA on a non NUMA box), which is OK as cpu_to_node[] |
| 341 | * is already initialized in a round robin manner at numa_init_array, |
| 342 | * prior to this call, and this initialization is good enough |
| 343 | * for the fake NUMA cases. |
| 344 | */ |
| 345 | void __init init_cpu_to_node(void) |
| 346 | { |
| 347 | int i; |
| 348 | for (i = 0; i < NR_CPUS; i++) { |
| 349 | u8 apicid = x86_cpu_to_apicid[i]; |
| 350 | if (apicid == BAD_APICID) |
| 351 | continue; |
| 352 | if (apicid_to_node[apicid] == NUMA_NO_NODE) |
| 353 | continue; |
Daniel Yeisley | d1db4ec | 2006-02-15 15:17:41 -0800 | [diff] [blame] | 354 | numa_set_node(i,apicid_to_node[apicid]); |
Ravikiran Thirumalai | 05b3cbd | 2006-01-11 22:45:36 +0100 | [diff] [blame] | 355 | } |
| 356 | } |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | EXPORT_SYMBOL(cpu_to_node); |
| 359 | EXPORT_SYMBOL(node_to_cpumask); |
| 360 | EXPORT_SYMBOL(memnode_shift); |
| 361 | EXPORT_SYMBOL(memnodemap); |
| 362 | EXPORT_SYMBOL(node_data); |
Andi Kleen | cf05013 | 2006-01-11 22:46:27 +0100 | [diff] [blame] | 363 | |
| 364 | #ifdef CONFIG_DISCONTIGMEM |
| 365 | /* |
| 366 | * Functions to convert PFNs from/to per node page addresses. |
| 367 | * These are out of line because they are quite big. |
| 368 | * They could be all tuned by pre caching more state. |
| 369 | * Should do that. |
| 370 | */ |
| 371 | |
| 372 | /* Requires pfn_valid(pfn) to be true */ |
| 373 | struct page *pfn_to_page(unsigned long pfn) |
| 374 | { |
| 375 | int nid = phys_to_nid(((unsigned long)(pfn)) << PAGE_SHIFT); |
| 376 | return (pfn - node_start_pfn(nid)) + NODE_DATA(nid)->node_mem_map; |
| 377 | } |
| 378 | EXPORT_SYMBOL(pfn_to_page); |
| 379 | |
| 380 | unsigned long page_to_pfn(struct page *page) |
| 381 | { |
| 382 | return (long)(((page) - page_zone(page)->zone_mem_map) + |
| 383 | page_zone(page)->zone_start_pfn); |
| 384 | } |
| 385 | EXPORT_SYMBOL(page_to_pfn); |
| 386 | |
| 387 | int pfn_valid(unsigned long pfn) |
| 388 | { |
| 389 | unsigned nid; |
| 390 | if (pfn >= num_physpages) |
| 391 | return 0; |
| 392 | nid = pfn_to_nid(pfn); |
| 393 | if (nid == 0xff) |
| 394 | return 0; |
| 395 | return pfn >= node_start_pfn(nid) && (pfn) < node_end_pfn(nid); |
| 396 | } |
| 397 | EXPORT_SYMBOL(pfn_valid); |
| 398 | #endif |