blob: 3307ea8bd43a3d8a98a9fe49ead8453894f95229 [file] [log] [blame]
Thomas Gleixnere3cfe522008-01-30 13:30:37 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Generic VM initialization for x86-64 NUMA setups.
3 * Copyright 2002,2003 Andi Kleen, SuSE Labs.
Thomas Gleixnere3cfe522008-01-30 13:30:37 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#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>
travis@sgi.com3cc87e32008-01-30 13:33:11 +010014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <asm/e820.h>
17#include <asm/proto.h>
18#include <asm/dma.h>
19#include <asm/numa.h>
20#include <asm/acpi.h>
Thomas Gleixnerc9ff0342008-01-30 13:30:16 +010021#include <asm/k8.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070023struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010024EXPORT_SYMBOL(node_data);
25
Eric Dumazetdcf36bf2006-03-25 16:31:46 +010026struct memnode memnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
travis@sgi.com43238382008-01-30 13:33:25 +010028s16 apicid_to_node[MAX_LOCAL_APIC] __cpuinitdata = {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010029 [0 ... MAX_LOCAL_APIC-1] = NUMA_NO_NODE
Andi Kleen3f098c22005-09-12 18:49:24 +020030};
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032int numa_off __initdata;
Thomas Gleixner864fc312008-05-12 15:43:36 +020033static unsigned long __initdata nodemap_addr;
34static unsigned long __initdata nodemap_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Brian Gerst6470aff2009-01-27 12:56:47 +090036DEFINE_PER_CPU(int, node_number) = 0;
37EXPORT_PER_CPU_SYMBOL(node_number);
38
39/*
40 * Map cpu index to node index
41 */
42DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
43EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
44
45/*
Eric Dumazet529a3402005-11-05 17:25:54 +010046 * Given a shift value, try to populate memnodemap[]
47 * Returns :
48 * 1 if OK
49 * 0 if memnodmap[] too small (of shift too small)
50 * -1 if node overlap or lost ram (shift too big)
51 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010052static int __init populate_memnodemap(const struct bootnode *nodes,
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -070053 int numnodes, int shift, int *nodeids)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Eric Dumazet529a3402005-11-05 17:25:54 +010055 unsigned long addr, end;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010056 int i, res = -1;
Keith Manntheyb6846642005-07-28 21:15:38 -070057
travis@sgi.com43238382008-01-30 13:33:25 +010058 memset(memnodemap, 0xff, sizeof(s16)*memnodemapsize);
Eric Dumazet529a3402005-11-05 17:25:54 +010059 for (i = 0; i < numnodes; i++) {
60 addr = nodes[i].start;
61 end = nodes[i].end;
62 if (addr >= end)
63 continue;
Amul Shah076422d2007-02-13 13:26:19 +010064 if ((end >> shift) >= memnodemapsize)
Eric Dumazet529a3402005-11-05 17:25:54 +010065 return 0;
66 do {
travis@sgi.com43238382008-01-30 13:33:25 +010067 if (memnodemap[addr >> shift] != NUMA_NO_NODE)
Eric Dumazet529a3402005-11-05 17:25:54 +010068 return -1;
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -070069
70 if (!nodeids)
71 memnodemap[addr >> shift] = i;
72 else
73 memnodemap[addr >> shift] = nodeids[i];
74
Amul Shah076422d2007-02-13 13:26:19 +010075 addr += (1UL << shift);
Eric Dumazet529a3402005-11-05 17:25:54 +010076 } while (addr < end);
77 res = 1;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +010078 }
Eric Dumazet529a3402005-11-05 17:25:54 +010079 return res;
80}
81
Amul Shah076422d2007-02-13 13:26:19 +010082static int __init allocate_cachealigned_memnodemap(void)
83{
Yinghai Lu24a5da72008-02-01 17:49:41 +010084 unsigned long addr;
Amul Shah076422d2007-02-13 13:26:19 +010085
86 memnodemap = memnode.embedded_map;
travis@sgi.com316390b2008-01-30 13:33:15 +010087 if (memnodemapsize <= ARRAY_SIZE(memnode.embedded_map))
Amul Shah076422d2007-02-13 13:26:19 +010088 return 0;
Amul Shah076422d2007-02-13 13:26:19 +010089
Yinghai Lu24a5da72008-02-01 17:49:41 +010090 addr = 0x8000;
Joerg Roedelbe3e89e2008-07-25 16:48:58 +020091 nodemap_size = roundup(sizeof(s16) * memnodemapsize, L1_CACHE_BYTES);
Yinghai Luc987d122008-06-24 22:14:09 -070092 nodemap_addr = find_e820_area(addr, max_pfn<<PAGE_SHIFT,
Yinghai Lu24a5da72008-02-01 17:49:41 +010093 nodemap_size, L1_CACHE_BYTES);
Amul Shah076422d2007-02-13 13:26:19 +010094 if (nodemap_addr == -1UL) {
95 printk(KERN_ERR
96 "NUMA: Unable to allocate Memory to Node hash map\n");
97 nodemap_addr = nodemap_size = 0;
98 return -1;
99 }
Yinghai Lu24a5da72008-02-01 17:49:41 +0100100 memnodemap = phys_to_virt(nodemap_addr);
Yinghai Lu25eff8d2008-02-01 17:49:41 +0100101 reserve_early(nodemap_addr, nodemap_addr + nodemap_size, "MEMNODEMAP");
Amul Shah076422d2007-02-13 13:26:19 +0100102
103 printk(KERN_DEBUG "NUMA: Allocated memnodemap from %lx - %lx\n",
104 nodemap_addr, nodemap_addr + nodemap_size);
105 return 0;
106}
107
108/*
109 * The LSB of all start and end addresses in the node map is the value of the
110 * maximum possible shift.
111 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100112static int __init extract_lsb_from_nodes(const struct bootnode *nodes,
113 int numnodes)
Amul Shah076422d2007-02-13 13:26:19 +0100114{
Amul Shah54413922007-02-13 13:26:20 +0100115 int i, nodes_used = 0;
Amul Shah076422d2007-02-13 13:26:19 +0100116 unsigned long start, end;
117 unsigned long bitfield = 0, memtop = 0;
118
119 for (i = 0; i < numnodes; i++) {
120 start = nodes[i].start;
121 end = nodes[i].end;
122 if (start >= end)
123 continue;
Amul Shah54413922007-02-13 13:26:20 +0100124 bitfield |= start;
125 nodes_used++;
Amul Shah076422d2007-02-13 13:26:19 +0100126 if (end > memtop)
127 memtop = end;
128 }
Amul Shah54413922007-02-13 13:26:20 +0100129 if (nodes_used <= 1)
130 i = 63;
131 else
132 i = find_first_bit(&bitfield, sizeof(unsigned long)*8);
Amul Shah076422d2007-02-13 13:26:19 +0100133 memnodemapsize = (memtop >> i)+1;
134 return i;
135}
136
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700137int __init compute_hash_shift(struct bootnode *nodes, int numnodes,
138 int *nodeids)
Eric Dumazet529a3402005-11-05 17:25:54 +0100139{
Amul Shah076422d2007-02-13 13:26:19 +0100140 int shift;
Eric Dumazet529a3402005-11-05 17:25:54 +0100141
Amul Shah076422d2007-02-13 13:26:19 +0100142 shift = extract_lsb_from_nodes(nodes, numnodes);
143 if (allocate_cachealigned_memnodemap())
144 return -1;
Andi Kleen6b050f82006-01-11 22:44:33 +0100145 printk(KERN_DEBUG "NUMA: Using %d for the hash shift.\n",
Eric Dumazet529a3402005-11-05 17:25:54 +0100146 shift);
147
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700148 if (populate_memnodemap(nodes, numnodes, shift, nodeids) != 1) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100149 printk(KERN_INFO "Your memory is not aligned you need to "
150 "rebuild your kernel with a bigger NODEMAPSIZE "
151 "shift=%d\n", shift);
Eric Dumazet529a3402005-11-05 17:25:54 +0100152 return -1;
153 }
Keith Manntheyb6846642005-07-28 21:15:38 -0700154 return shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
KAMEZAWA Hiroyukif2dbcfa2009-02-18 14:48:32 -0800157int __meminit __early_pfn_to_nid(unsigned long pfn)
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700158{
159 return phys_to_nid(pfn << PAGE_SHIFT);
160}
Matt Tolentinobbfceef2005-06-23 00:08:07 -0700161
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100162static void * __init early_node_mem(int nodeid, unsigned long start,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100163 unsigned long end, unsigned long size,
164 unsigned long align)
Andi Kleena8062232006-04-07 19:49:21 +0200165{
Yinghai Lu24a5da72008-02-01 17:49:41 +0100166 unsigned long mem = find_e820_area(start, end, size, align);
Andi Kleena8062232006-04-07 19:49:21 +0200167 void *ptr;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100168
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100169 if (mem != -1L)
Andi Kleena8062232006-04-07 19:49:21 +0200170 return __va(mem);
Yinghai Lu9347e0b2008-02-01 17:49:42 +0100171
Yinghai Lu24a5da72008-02-01 17:49:41 +0100172 ptr = __alloc_bootmem_nopanic(size, align, __pa(MAX_DMA_ADDRESS));
Yoann Padioleau83e83d52007-10-17 18:04:35 +0200173 if (ptr == NULL) {
Andi Kleena8062232006-04-07 19:49:21 +0200174 printk(KERN_ERR "Cannot find %lu bytes in node %d\n",
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100175 size, nodeid);
Andi Kleena8062232006-04-07 19:49:21 +0200176 return NULL;
177 }
178 return ptr;
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/* Initialize bootmem allocator for a node */
Yinghai Lu7c437692009-05-15 13:59:37 -0700182void __init
183setup_node_bootmem(int nodeid, unsigned long start, unsigned long end)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100184{
Thomas Gleixner886533a2008-05-12 15:43:36 +0200185 unsigned long start_pfn, last_pfn, bootmap_pages, bootmap_size;
Yinghai Lu7c437692009-05-15 13:59:37 -0700186 const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100187 unsigned long bootmap_start, nodedata_phys;
Andi Kleena8062232006-04-07 19:49:21 +0200188 void *bootmap;
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700189 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Yinghai Lu4c31e922009-04-22 14:19:27 -0700191 if (!end)
192 return;
193
Yinghai Lu7c437692009-05-15 13:59:37 -0700194 /*
195 * Don't confuse VM with a node that doesn't have the
196 * minimum amount of memory:
197 */
198 if (end && (end - start) < NODE_MIN_SIZE)
199 return;
200
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200201 start = roundup(start, ZONE_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100203 printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid,
204 start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 start_pfn = start >> PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200207 last_pfn = end >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Yinghai Lu24a5da72008-02-01 17:49:41 +0100209 node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size,
210 SMP_CACHE_BYTES);
Andi Kleena8062232006-04-07 19:49:21 +0200211 if (node_data[nodeid] == NULL)
212 return;
213 nodedata_phys = __pa(node_data[nodeid]);
Yinghai Lu6118f762008-02-04 16:47:56 +0100214 printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys,
215 nodedata_phys + pgdat_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t));
Johannes Weinerb61bfa32008-07-23 21:26:55 -0700218 NODE_DATA(nodeid)->bdata = &bootmem_node_data[nodeid];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 NODE_DATA(nodeid)->node_start_pfn = start_pfn;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200220 NODE_DATA(nodeid)->node_spanned_pages = last_pfn - start_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700222 /*
223 * Find a place for the bootmem map
224 * nodedata_phys could be on other nodes by alloc_bootmem,
225 * so need to sure bootmap_start not to be small, otherwise
226 * early_node_mem will get that with find_e820_area instead
227 * of alloc_bootmem, that could clash with reserved range
228 */
Thomas Gleixner886533a2008-05-12 15:43:36 +0200229 bootmap_pages = bootmem_bootmap_pages(last_pfn - start_pfn);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700230 nid = phys_to_nid(nodedata_phys);
231 if (nid == nodeid)
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200232 bootmap_start = roundup(nodedata_phys + pgdat_size, PAGE_SIZE);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700233 else
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200234 bootmap_start = roundup(start, PAGE_SIZE);
Yinghai Lu24a5da72008-02-01 17:49:41 +0100235 /*
Paul Jacksone9197bf2008-05-14 08:15:10 -0700236 * SMP_CACHE_BYTES could be enough, but init_bootmem_node like
Yinghai Lu24a5da72008-02-01 17:49:41 +0100237 * to use that to align to PAGE_SIZE
238 */
Andi Kleena8062232006-04-07 19:49:21 +0200239 bootmap = early_node_mem(nodeid, bootmap_start, end,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100240 bootmap_pages<<PAGE_SHIFT, PAGE_SIZE);
Andi Kleena8062232006-04-07 19:49:21 +0200241 if (bootmap == NULL) {
Yinghai Lu021428a2009-11-21 00:23:37 -0800242 if (nodedata_phys < start || nodedata_phys >= end) {
243 /*
244 * only need to free it if it is from other node
245 * bootmem
246 */
247 if (nid != nodeid)
248 free_bootmem(nodedata_phys, pgdat_size);
249 }
Andi Kleena8062232006-04-07 19:49:21 +0200250 node_data[nodeid] = NULL;
251 return;
252 }
253 bootmap_start = __pa(bootmap);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 bootmap_size = init_bootmem_node(NODE_DATA(nodeid),
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100256 bootmap_start >> PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200257 start_pfn, last_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Yinghai Lu6118f762008-02-04 16:47:56 +0100259 printk(KERN_INFO " bootmap [%016lx - %016lx] pages %lx\n",
260 bootmap_start, bootmap_start + bootmap_size - 1,
261 bootmap_pages);
262
Mel Gorman5cb248a2006-09-27 01:49:52 -0700263 free_bootmem_with_active_regions(nodeid, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700265 /*
266 * convert early reserve to bootmem reserve earlier
267 * otherwise early_node_mem could use early reserved mem
268 * on previous node
269 */
270 early_res_to_bootmem(start, end);
271
272 /*
273 * in some case early_node_mem could use alloc_bootmem
274 * to get range on other node, don't reserve that again
275 */
276 if (nid != nodeid)
277 printk(KERN_INFO " NODE_DATA(%d) on node %d\n", nodeid, nid);
278 else
279 reserve_bootmem_node(NODE_DATA(nodeid), nodedata_phys,
280 pgdat_size, BOOTMEM_DEFAULT);
281 nid = phys_to_nid(bootmap_start);
282 if (nid != nodeid)
283 printk(KERN_INFO " bootmap(%d) on node %d\n", nodeid, nid);
284 else
285 reserve_bootmem_node(NODE_DATA(nodeid), bootmap_start,
286 bootmap_pages<<PAGE_SHIFT, BOOTMEM_DEFAULT);
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 node_set_online(nodeid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100289}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100291/*
292 * There are unfortunately some poorly designed mainboards around that
293 * only connect memory to a single CPU. This breaks the 1:1 cpu->node
294 * mapping. To avoid this fill in the mapping for all possible CPUs,
295 * as the number of CPUs is not known yet. We round robin the existing
296 * nodes.
297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298void __init numa_init_array(void)
299{
300 int rr, i;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100301
Ravikiran G Thirumalai85cc5132005-09-30 11:59:22 -0700302 rr = first_node(node_online_map);
Mike Travis168ef542008-12-16 17:34:01 -0800303 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.com1ce35712008-01-30 13:33:33 +0100304 if (early_cpu_to_node(i) != NUMA_NO_NODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 continue;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100306 numa_set_node(i, rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 rr = next_node(rr, node_online_map);
308 if (rr == MAX_NUMNODES)
309 rr = first_node(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313#ifdef CONFIG_NUMA_EMU
Rohit Seth53fee042007-02-13 13:26:22 +0100314/* Numa emulation */
David Rientjesadc19382009-09-25 15:20:09 -0700315static struct bootnode nodes[MAX_NUMNODES] __initdata;
316static struct bootnode physnodes[MAX_NUMNODES] __initdata;
Thomas Gleixner864fc312008-05-12 15:43:36 +0200317static char *cmdline __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
David Rientjesadc19382009-09-25 15:20:09 -0700319static int __init setup_physnodes(unsigned long start, unsigned long end,
320 int acpi, int k8)
321{
322 int nr_nodes = 0;
323 int ret = 0;
324 int i;
325
326#ifdef CONFIG_ACPI_NUMA
327 if (acpi)
328 nr_nodes = acpi_get_nodes(physnodes);
329#endif
330#ifdef CONFIG_K8_NUMA
331 if (k8)
332 nr_nodes = k8_get_nodes(physnodes);
333#endif
334 /*
335 * Basic sanity checking on the physical node map: there may be errors
336 * if the SRAT or K8 incorrectly reported the topology or the mem=
337 * kernel parameter is used.
338 */
339 for (i = 0; i < nr_nodes; i++) {
340 if (physnodes[i].start == physnodes[i].end)
341 continue;
342 if (physnodes[i].start > end) {
343 physnodes[i].end = physnodes[i].start;
344 continue;
345 }
346 if (physnodes[i].end < start) {
347 physnodes[i].start = physnodes[i].end;
348 continue;
349 }
350 if (physnodes[i].start < start)
351 physnodes[i].start = start;
352 if (physnodes[i].end > end)
353 physnodes[i].end = end;
354 }
355
356 /*
357 * Remove all nodes that have no memory or were truncated because of the
358 * limited address range.
359 */
360 for (i = 0; i < nr_nodes; i++) {
361 if (physnodes[i].start == physnodes[i].end)
362 continue;
363 physnodes[ret].start = physnodes[i].start;
364 physnodes[ret].end = physnodes[i].end;
365 ret++;
366 }
367
368 /*
369 * If no physical topology was detected, a single node is faked to cover
370 * the entire address space.
371 */
372 if (!ret) {
373 physnodes[ret].start = start;
374 physnodes[ret].end = end;
375 ret = 1;
376 }
377 return ret;
378}
379
Rohit Seth53fee042007-02-13 13:26:22 +0100380/*
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100381 * Setups up nid to range from addr to addr + size. If the end
382 * boundary is greater than max_addr, then max_addr is used instead.
383 * The return value is 0 if there is additional memory left for
384 * allocation past addr and -1 otherwise. addr is adjusted to be at
385 * the end of the node.
Rohit Seth53fee042007-02-13 13:26:22 +0100386 */
David Rientjesadc19382009-09-25 15:20:09 -0700387static int __init setup_node_range(int nid, u64 *addr, u64 size, u64 max_addr)
Rohit Seth53fee042007-02-13 13:26:22 +0100388{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200389 int ret = 0;
390 nodes[nid].start = *addr;
391 *addr += size;
392 if (*addr >= max_addr) {
393 *addr = max_addr;
394 ret = -1;
395 }
396 nodes[nid].end = *addr;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200397 node_set(nid, node_possible_map);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200398 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
399 nodes[nid].start, nodes[nid].end,
400 (nodes[nid].end - nodes[nid].start) >> 20);
401 return ret;
Rohit Seth53fee042007-02-13 13:26:22 +0100402}
403
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200404/*
David Rientjesadc19382009-09-25 15:20:09 -0700405 * Sets up nr_nodes fake nodes interleaved over physical nodes ranging from addr
406 * to max_addr. The return value is the number of nodes allocated.
407 */
408static int __init split_nodes_interleave(u64 addr, u64 max_addr,
409 int nr_phys_nodes, int nr_nodes)
410{
411 nodemask_t physnode_mask = NODE_MASK_NONE;
412 u64 size;
413 int big;
414 int ret = 0;
415 int i;
416
417 if (nr_nodes <= 0)
418 return -1;
419 if (nr_nodes > MAX_NUMNODES) {
420 pr_info("numa=fake=%d too large, reducing to %d\n",
421 nr_nodes, MAX_NUMNODES);
422 nr_nodes = MAX_NUMNODES;
423 }
424
425 size = (max_addr - addr - e820_hole_size(addr, max_addr)) / nr_nodes;
426 /*
427 * Calculate the number of big nodes that can be allocated as a result
428 * of consolidating the remainder.
429 */
David Rientjes68fd1112010-02-15 13:43:25 -0800430 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * nr_nodes) /
David Rientjesadc19382009-09-25 15:20:09 -0700431 FAKE_NODE_MIN_SIZE;
432
433 size &= FAKE_NODE_MIN_HASH_MASK;
434 if (!size) {
435 pr_err("Not enough memory for each node. "
436 "NUMA emulation disabled.\n");
437 return -1;
438 }
439
440 for (i = 0; i < nr_phys_nodes; i++)
441 if (physnodes[i].start != physnodes[i].end)
442 node_set(i, physnode_mask);
443
444 /*
445 * Continue to fill physical nodes with fake nodes until there is no
446 * memory left on any of them.
447 */
448 while (nodes_weight(physnode_mask)) {
449 for_each_node_mask(i, physnode_mask) {
450 u64 end = physnodes[i].start + size;
451 u64 dma32_end = PFN_PHYS(MAX_DMA32_PFN);
452
453 if (ret < big)
454 end += FAKE_NODE_MIN_SIZE;
455
456 /*
457 * Continue to add memory to this fake node if its
458 * non-reserved memory is less than the per-node size.
459 */
460 while (end - physnodes[i].start -
461 e820_hole_size(physnodes[i].start, end) < size) {
462 end += FAKE_NODE_MIN_SIZE;
463 if (end > physnodes[i].end) {
464 end = physnodes[i].end;
465 break;
466 }
467 }
468
469 /*
470 * If there won't be at least FAKE_NODE_MIN_SIZE of
471 * non-reserved memory in ZONE_DMA32 for the next node,
472 * this one must extend to the boundary.
473 */
474 if (end < dma32_end && dma32_end - end -
475 e820_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
476 end = dma32_end;
477
478 /*
479 * If there won't be enough non-reserved memory for the
480 * next node, this one must extend to the end of the
481 * physical node.
482 */
483 if (physnodes[i].end - end -
484 e820_hole_size(end, physnodes[i].end) < size)
485 end = physnodes[i].end;
486
487 /*
488 * Avoid allocating more nodes than requested, which can
489 * happen as a result of rounding down each node's size
490 * to FAKE_NODE_MIN_SIZE.
491 */
492 if (nodes_weight(physnode_mask) + ret >= nr_nodes)
493 end = physnodes[i].end;
494
495 if (setup_node_range(ret++, &physnodes[i].start,
496 end - physnodes[i].start,
497 physnodes[i].end) < 0)
498 node_clear(i, physnode_mask);
499 }
500 }
501 return ret;
502}
503
504/*
David Rientjes8df5bb32010-02-15 13:43:30 -0800505 * Returns the end address of a node so that there is at least `size' amount of
506 * non-reserved memory or `max_addr' is reached.
507 */
508static u64 __init find_end_of_node(u64 start, u64 max_addr, u64 size)
509{
510 u64 end = start + size;
511
512 while (end - start - e820_hole_size(start, end) < size) {
513 end += FAKE_NODE_MIN_SIZE;
514 if (end > max_addr) {
515 end = max_addr;
516 break;
517 }
518 }
519 return end;
520}
521
522/*
523 * Sets up fake nodes of `size' interleaved over physical nodes ranging from
524 * `addr' to `max_addr'. The return value is the number of nodes allocated.
525 */
526static int __init split_nodes_size_interleave(u64 addr, u64 max_addr, u64 size)
527{
528 nodemask_t physnode_mask = NODE_MASK_NONE;
529 u64 min_size;
530 int ret = 0;
531 int i;
532
533 if (!size)
534 return -1;
535 /*
536 * The limit on emulated nodes is MAX_NUMNODES, so the size per node is
537 * increased accordingly if the requested size is too small. This
538 * creates a uniform distribution of node sizes across the entire
539 * machine (but not necessarily over physical nodes).
540 */
541 min_size = (max_addr - addr - e820_hole_size(addr, max_addr)) /
542 MAX_NUMNODES;
543 min_size = max(min_size, FAKE_NODE_MIN_SIZE);
544 if ((min_size & FAKE_NODE_MIN_HASH_MASK) < min_size)
545 min_size = (min_size + FAKE_NODE_MIN_SIZE) &
546 FAKE_NODE_MIN_HASH_MASK;
547 if (size < min_size) {
548 pr_err("Fake node size %LuMB too small, increasing to %LuMB\n",
549 size >> 20, min_size >> 20);
550 size = min_size;
551 }
552 size &= FAKE_NODE_MIN_HASH_MASK;
553
554 for (i = 0; i < MAX_NUMNODES; i++)
555 if (physnodes[i].start != physnodes[i].end)
556 node_set(i, physnode_mask);
557 /*
558 * Fill physical nodes with fake nodes of size until there is no memory
559 * left on any of them.
560 */
561 while (nodes_weight(physnode_mask)) {
562 for_each_node_mask(i, physnode_mask) {
563 u64 dma32_end = MAX_DMA32_PFN << PAGE_SHIFT;
564 u64 end;
565
566 end = find_end_of_node(physnodes[i].start,
567 physnodes[i].end, size);
568 /*
569 * If there won't be at least FAKE_NODE_MIN_SIZE of
570 * non-reserved memory in ZONE_DMA32 for the next node,
571 * this one must extend to the boundary.
572 */
573 if (end < dma32_end && dma32_end - end -
574 e820_hole_size(end, dma32_end) < FAKE_NODE_MIN_SIZE)
575 end = dma32_end;
576
577 /*
578 * If there won't be enough non-reserved memory for the
579 * next node, this one must extend to the end of the
580 * physical node.
581 */
582 if (physnodes[i].end - end -
583 e820_hole_size(end, physnodes[i].end) < size)
584 end = physnodes[i].end;
585
586 /*
587 * Setup the fake node that will be allocated as bootmem
588 * later. If setup_node_range() returns non-zero, there
589 * is no more memory available on this physical node.
590 */
591 if (setup_node_range(ret++, &physnodes[i].start,
592 end - physnodes[i].start,
593 physnodes[i].end) < 0)
594 node_clear(i, physnode_mask);
595 }
596 }
597 return ret;
598}
599
600/*
Thomas Gleixner886533a2008-05-12 15:43:36 +0200601 * Sets up the system RAM area from start_pfn to last_pfn according to the
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200602 * numa=fake command-line option.
603 */
David Rientjesadc19382009-09-25 15:20:09 -0700604static int __init numa_emulation(unsigned long start_pfn,
605 unsigned long last_pfn, int acpi, int k8)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200606{
David Rientjesca2107c2010-02-15 13:43:33 -0800607 u64 addr = start_pfn << PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200608 u64 max_addr = last_pfn << PAGE_SHIFT;
David Rientjesadc19382009-09-25 15:20:09 -0700609 int num_phys_nodes;
David Rientjesca2107c2010-02-15 13:43:33 -0800610 int num_nodes;
611 int i;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200612
David Rientjesadc19382009-09-25 15:20:09 -0700613 num_phys_nodes = setup_physnodes(addr, max_addr, acpi, k8);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200614 /*
David Rientjes8df5bb32010-02-15 13:43:30 -0800615 * If the numa=fake command-line contains a 'M' or 'G', it represents
David Rientjesca2107c2010-02-15 13:43:33 -0800616 * the fixed node size. Otherwise, if it is just a single number N,
617 * split the system RAM into N fake nodes.
David Rientjes8df5bb32010-02-15 13:43:30 -0800618 */
619 if (strchr(cmdline, 'M') || strchr(cmdline, 'G')) {
David Rientjesca2107c2010-02-15 13:43:33 -0800620 u64 size;
621
David Rientjes8df5bb32010-02-15 13:43:30 -0800622 size = memparse(cmdline, &cmdline);
623 num_nodes = split_nodes_size_interleave(addr, max_addr, size);
David Rientjesca2107c2010-02-15 13:43:33 -0800624 } else {
625 unsigned long n;
626
627 n = simple_strtoul(cmdline, NULL, 0);
628 num_nodes = split_nodes_interleave(addr, max_addr, num_phys_nodes, n);
David Rientjes8df5bb32010-02-15 13:43:30 -0800629 }
630
David Rientjesca2107c2010-02-15 13:43:33 -0800631 if (num_nodes < 0)
632 return num_nodes;
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700633 memnode_shift = compute_hash_shift(nodes, num_nodes, NULL);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200634 if (memnode_shift < 0) {
635 memnode_shift = 0;
636 printk(KERN_ERR "No NUMA hash function found. NUMA emulation "
637 "disabled.\n");
638 return -1;
639 }
640
641 /*
David Rientjesadc19382009-09-25 15:20:09 -0700642 * We need to vacate all active ranges that may have been registered for
643 * the e820 memory map.
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200644 */
645 remove_all_active_ranges();
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200646 for_each_node_mask(i, node_possible_map) {
Mel Gorman5cb248a2006-09-27 01:49:52 -0700647 e820_register_active_regions(i, nodes[i].start >> PAGE_SHIFT,
648 nodes[i].end >> PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100649 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Mel Gorman5cb248a2006-09-27 01:49:52 -0700650 }
David Rientjes3484d792007-07-21 17:10:32 +0200651 acpi_fake_nodes(nodes, num_nodes);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100652 numa_init_array();
653 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200655#endif /* CONFIG_NUMA_EMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
David Rientjes8ee2deb2009-09-25 15:20:00 -0700657void __init initmem_init(unsigned long start_pfn, unsigned long last_pfn,
658 int acpi, int k8)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100659{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 int i;
661
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200662 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800663 nodes_clear(node_online_map);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#ifdef CONFIG_NUMA_EMU
David Rientjesadc19382009-09-25 15:20:09 -0700666 if (cmdline && !numa_emulation(start_pfn, last_pfn, acpi, k8))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100667 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200668 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800669 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#endif
671
672#ifdef CONFIG_ACPI_NUMA
David Rientjes87162732009-09-25 15:20:04 -0700673 if (!numa_off && acpi && !acpi_scan_nodes(start_pfn << PAGE_SHIFT,
674 last_pfn << PAGE_SHIFT))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100675 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200676 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800677 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678#endif
679
680#ifdef CONFIG_K8_NUMA
David Rientjes8ee2deb2009-09-25 15:20:00 -0700681 if (!numa_off && k8 && !k8_scan_nodes())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200683 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800684 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#endif
686 printk(KERN_INFO "%s\n",
687 numa_off ? "NUMA turned off" : "No NUMA configuration found");
688
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100689 printk(KERN_INFO "Faking a node at %016lx-%016lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 start_pfn << PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200691 last_pfn << PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100692 /* setup dummy node covering all memory */
693 memnode_shift = 63;
Amul Shah076422d2007-02-13 13:26:19 +0100694 memnodemap = memnode.embedded_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 memnodemap[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 node_set_online(0);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200697 node_set(0, node_possible_map);
Mike Travis168ef542008-12-16 17:34:01 -0800698 for (i = 0; i < nr_cpu_ids; i++)
Andi Kleen69d81fc2005-11-05 17:25:53 +0100699 numa_set_node(i, 0);
Thomas Gleixner886533a2008-05-12 15:43:36 +0200700 e820_register_active_regions(0, start_pfn, last_pfn);
701 setup_node_bootmem(0, start_pfn << PAGE_SHIFT, last_pfn << PAGE_SHIFT);
Andi Kleen69d81fc2005-11-05 17:25:53 +0100702}
703
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100704unsigned long __init numa_free_all_bootmem(void)
705{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 unsigned long pages = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100707 int i;
708
709 for_each_online_node(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 pages += free_all_bootmem_node(NODE_DATA(i));
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return pages;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100713}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200715static __init int numa_setup(char *opt)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100716{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200717 if (!opt)
718 return -EINVAL;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100719 if (!strncmp(opt, "off", 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 numa_off = 1;
721#ifdef CONFIG_NUMA_EMU
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200722 if (!strncmp(opt, "fake=", 5))
723 cmdline = opt + 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724#endif
725#ifdef CONFIG_ACPI_NUMA
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100726 if (!strncmp(opt, "noacpi", 6))
727 acpi_numa = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728#endif
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200729 return 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100730}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200731early_param("numa", numa_setup);
732
Mike Travis23ca4bb2008-05-12 21:21:12 +0200733#ifdef CONFIG_NUMA
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800734
735static __init int find_near_online_node(int node)
736{
737 int n, val;
738 int min_val = INT_MAX;
739 int best_node = -1;
740
741 for_each_online_node(n) {
742 val = node_distance(node, n);
743
744 if (val < min_val) {
745 min_val = val;
746 best_node = n;
747 }
748 }
749
750 return best_node;
751}
752
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100753/*
754 * Setup early cpu_to_node.
755 *
756 * Populate cpu_to_node[] only if x86_cpu_to_apicid[],
757 * and apicid_to_node[] tables have valid entries for a CPU.
758 * This means we skip cpu_to_node[] initialisation for NUMA
759 * emulation and faking node case (when running a kernel compiled
760 * for NUMA on a non NUMA box), which is OK as cpu_to_node[]
761 * is already initialized in a round robin manner at numa_init_array,
762 * prior to this call, and this initialization is good enough
763 * for the fake NUMA cases.
Mike Travis23ca4bb2008-05-12 21:21:12 +0200764 *
765 * Called before the per_cpu areas are setup.
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100766 */
767void __init init_cpu_to_node(void)
768{
Mike Travis23ca4bb2008-05-12 21:21:12 +0200769 int cpu;
770 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100771
Mike Travis23ca4bb2008-05-12 21:21:12 +0200772 BUG_ON(cpu_to_apicid == NULL);
773
774 for_each_possible_cpu(cpu) {
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800775 int node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200776 u16 apicid = cpu_to_apicid[cpu];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100777
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100778 if (apicid == BAD_APICID)
779 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800780 node = apicid_to_node[apicid];
781 if (node == NUMA_NO_NODE)
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100782 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800783 if (!node_online(node))
Yinghai Lud9c2d5a2009-11-21 00:23:37 -0800784 node = find_near_online_node(node);
Mike Travis23ca4bb2008-05-12 21:21:12 +0200785 numa_set_node(cpu, node);
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100786 }
787}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200788#endif
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100789
Andi Kleencf050132006-01-11 22:46:27 +0100790
Brian Gerst6470aff2009-01-27 12:56:47 +0900791void __cpuinit numa_set_node(int cpu, int node)
792{
793 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
794
795 /* early setting, no percpu area yet */
796 if (cpu_to_node_map) {
797 cpu_to_node_map[cpu] = node;
798 return;
799 }
800
801#ifdef CONFIG_DEBUG_PER_CPU_MAPS
Brian Gerst44581a22009-02-08 09:58:40 -0500802 if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
Brian Gerst6470aff2009-01-27 12:56:47 +0900803 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
804 dump_stack();
805 return;
806 }
807#endif
808 per_cpu(x86_cpu_to_node_map, cpu) = node;
809
810 if (node != NUMA_NO_NODE)
811 per_cpu(node_number, cpu) = node;
812}
813
814void __cpuinit numa_clear_node(int cpu)
815{
816 numa_set_node(cpu, NUMA_NO_NODE);
817}
818
819#ifndef CONFIG_DEBUG_PER_CPU_MAPS
820
821void __cpuinit numa_add_cpu(int cpu)
822{
Rusty Russellc032ef602009-03-13 14:49:53 +1030823 cpumask_set_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Brian Gerst6470aff2009-01-27 12:56:47 +0900824}
825
826void __cpuinit numa_remove_cpu(int cpu)
827{
Rusty Russellc032ef602009-03-13 14:49:53 +1030828 cpumask_clear_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Brian Gerst6470aff2009-01-27 12:56:47 +0900829}
830
831#else /* CONFIG_DEBUG_PER_CPU_MAPS */
832
833/*
834 * --------- debug versions of the numa functions ---------
835 */
836static void __cpuinit numa_set_cpumask(int cpu, int enable)
837{
838 int node = early_cpu_to_node(cpu);
Rusty Russell73e907d2009-03-13 14:49:57 +1030839 struct cpumask *mask;
Brian Gerst6470aff2009-01-27 12:56:47 +0900840 char buf[64];
841
Rusty Russellc032ef602009-03-13 14:49:53 +1030842 mask = node_to_cpumask_map[node];
843 if (mask == NULL) {
844 printk(KERN_ERR "node_to_cpumask_map[%i] NULL\n", node);
Brian Gerst6470aff2009-01-27 12:56:47 +0900845 dump_stack();
846 return;
847 }
848
Brian Gerst6470aff2009-01-27 12:56:47 +0900849 if (enable)
Rusty Russellc032ef602009-03-13 14:49:53 +1030850 cpumask_set_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900851 else
Rusty Russellc032ef602009-03-13 14:49:53 +1030852 cpumask_clear_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900853
854 cpulist_scnprintf(buf, sizeof(buf), mask);
855 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
856 enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf);
857}
858
859void __cpuinit numa_add_cpu(int cpu)
860{
861 numa_set_cpumask(cpu, 1);
862}
863
864void __cpuinit numa_remove_cpu(int cpu)
865{
866 numa_set_cpumask(cpu, 0);
867}
868
869int cpu_to_node(int cpu)
870{
871 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
872 printk(KERN_WARNING
873 "cpu_to_node(%d): usage too early!\n", cpu);
874 dump_stack();
875 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
876 }
877 return per_cpu(x86_cpu_to_node_map, cpu);
878}
879EXPORT_SYMBOL(cpu_to_node);
880
881/*
882 * Same function as cpu_to_node() but used if called before the
883 * per_cpu areas are setup.
884 */
885int early_cpu_to_node(int cpu)
886{
887 if (early_per_cpu_ptr(x86_cpu_to_node_map))
888 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
889
Brian Gerst44581a22009-02-08 09:58:40 -0500890 if (!cpu_possible(cpu)) {
Brian Gerst6470aff2009-01-27 12:56:47 +0900891 printk(KERN_WARNING
892 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
893 dump_stack();
894 return NUMA_NO_NODE;
895 }
896 return per_cpu(x86_cpu_to_node_map, cpu);
897}
898
Brian Gerst6470aff2009-01-27 12:56:47 +0900899/*
Brian Gerst6470aff2009-01-27 12:56:47 +0900900 * --------- end of debug versions of the numa functions ---------
901 */
902
903#endif /* CONFIG_DEBUG_PER_CPU_MAPS */