blob: 2d05a12029dc3d216814eb2a9e914b389014407a [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 */
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100182void __init setup_node_bootmem(int nodeid, unsigned long start,
183 unsigned long end)
184{
Thomas Gleixner886533a2008-05-12 15:43:36 +0200185 unsigned long start_pfn, last_pfn, bootmap_pages, bootmap_size;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100186 unsigned long bootmap_start, nodedata_phys;
Andi Kleena8062232006-04-07 19:49:21 +0200187 void *bootmap;
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200188 const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE);
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
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200194 start = roundup(start, ZONE_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100196 printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid,
197 start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 start_pfn = start >> PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200200 last_pfn = end >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Yinghai Lu24a5da72008-02-01 17:49:41 +0100202 node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size,
203 SMP_CACHE_BYTES);
Andi Kleena8062232006-04-07 19:49:21 +0200204 if (node_data[nodeid] == NULL)
205 return;
206 nodedata_phys = __pa(node_data[nodeid]);
Yinghai Lu6118f762008-02-04 16:47:56 +0100207 printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys,
208 nodedata_phys + pgdat_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t));
Johannes Weinerb61bfa32008-07-23 21:26:55 -0700211 NODE_DATA(nodeid)->bdata = &bootmem_node_data[nodeid];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 NODE_DATA(nodeid)->node_start_pfn = start_pfn;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200213 NODE_DATA(nodeid)->node_spanned_pages = last_pfn - start_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700215 /*
216 * Find a place for the bootmem map
217 * nodedata_phys could be on other nodes by alloc_bootmem,
218 * so need to sure bootmap_start not to be small, otherwise
219 * early_node_mem will get that with find_e820_area instead
220 * of alloc_bootmem, that could clash with reserved range
221 */
Thomas Gleixner886533a2008-05-12 15:43:36 +0200222 bootmap_pages = bootmem_bootmap_pages(last_pfn - start_pfn);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700223 nid = phys_to_nid(nodedata_phys);
224 if (nid == nodeid)
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200225 bootmap_start = roundup(nodedata_phys + pgdat_size, PAGE_SIZE);
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700226 else
Joerg Roedelbe3e89e2008-07-25 16:48:58 +0200227 bootmap_start = roundup(start, PAGE_SIZE);
Yinghai Lu24a5da72008-02-01 17:49:41 +0100228 /*
Paul Jacksone9197bf2008-05-14 08:15:10 -0700229 * SMP_CACHE_BYTES could be enough, but init_bootmem_node like
Yinghai Lu24a5da72008-02-01 17:49:41 +0100230 * to use that to align to PAGE_SIZE
231 */
Andi Kleena8062232006-04-07 19:49:21 +0200232 bootmap = early_node_mem(nodeid, bootmap_start, end,
Yinghai Lu24a5da72008-02-01 17:49:41 +0100233 bootmap_pages<<PAGE_SHIFT, PAGE_SIZE);
Andi Kleena8062232006-04-07 19:49:21 +0200234 if (bootmap == NULL) {
235 if (nodedata_phys < start || nodedata_phys >= end)
Yinghai Lu37bff622008-03-18 12:40:04 -0700236 free_bootmem(nodedata_phys, pgdat_size);
Andi Kleena8062232006-04-07 19:49:21 +0200237 node_data[nodeid] = NULL;
238 return;
239 }
240 bootmap_start = __pa(bootmap);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 bootmap_size = init_bootmem_node(NODE_DATA(nodeid),
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100243 bootmap_start >> PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200244 start_pfn, last_pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Yinghai Lu6118f762008-02-04 16:47:56 +0100246 printk(KERN_INFO " bootmap [%016lx - %016lx] pages %lx\n",
247 bootmap_start, bootmap_start + bootmap_size - 1,
248 bootmap_pages);
249
Mel Gorman5cb248a2006-09-27 01:49:52 -0700250 free_bootmem_with_active_regions(nodeid, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Yinghai Lu1a27fc02008-03-18 12:52:37 -0700252 /*
253 * convert early reserve to bootmem reserve earlier
254 * otherwise early_node_mem could use early reserved mem
255 * on previous node
256 */
257 early_res_to_bootmem(start, end);
258
259 /*
260 * in some case early_node_mem could use alloc_bootmem
261 * to get range on other node, don't reserve that again
262 */
263 if (nid != nodeid)
264 printk(KERN_INFO " NODE_DATA(%d) on node %d\n", nodeid, nid);
265 else
266 reserve_bootmem_node(NODE_DATA(nodeid), nodedata_phys,
267 pgdat_size, BOOTMEM_DEFAULT);
268 nid = phys_to_nid(bootmap_start);
269 if (nid != nodeid)
270 printk(KERN_INFO " bootmap(%d) on node %d\n", nodeid, nid);
271 else
272 reserve_bootmem_node(NODE_DATA(nodeid), bootmap_start,
273 bootmap_pages<<PAGE_SHIFT, BOOTMEM_DEFAULT);
274
Andi Kleen68a3a7f2006-04-07 19:49:18 +0200275#ifdef CONFIG_ACPI_NUMA
276 srat_reserve_add_area(nodeid);
277#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 node_set_online(nodeid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100279}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100281/*
282 * There are unfortunately some poorly designed mainboards around that
283 * only connect memory to a single CPU. This breaks the 1:1 cpu->node
284 * mapping. To avoid this fill in the mapping for all possible CPUs,
285 * as the number of CPUs is not known yet. We round robin the existing
286 * nodes.
287 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288void __init numa_init_array(void)
289{
290 int rr, i;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100291
Ravikiran G Thirumalai85cc5132005-09-30 11:59:22 -0700292 rr = first_node(node_online_map);
Mike Travis168ef542008-12-16 17:34:01 -0800293 for (i = 0; i < nr_cpu_ids; i++) {
travis@sgi.com1ce35712008-01-30 13:33:33 +0100294 if (early_cpu_to_node(i) != NUMA_NO_NODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 continue;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100296 numa_set_node(i, rr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 rr = next_node(rr, node_online_map);
298 if (rr == MAX_NUMNODES)
299 rr = first_node(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303#ifdef CONFIG_NUMA_EMU
Rohit Seth53fee042007-02-13 13:26:22 +0100304/* Numa emulation */
Thomas Gleixner864fc312008-05-12 15:43:36 +0200305static char *cmdline __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Rohit Seth53fee042007-02-13 13:26:22 +0100307/*
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100308 * Setups up nid to range from addr to addr + size. If the end
309 * boundary is greater than max_addr, then max_addr is used instead.
310 * The return value is 0 if there is additional memory left for
311 * allocation past addr and -1 otherwise. addr is adjusted to be at
312 * the end of the node.
Rohit Seth53fee042007-02-13 13:26:22 +0100313 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200314static int __init setup_node_range(int nid, struct bootnode *nodes, u64 *addr,
315 u64 size, u64 max_addr)
Rohit Seth53fee042007-02-13 13:26:22 +0100316{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200317 int ret = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100318
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200319 nodes[nid].start = *addr;
320 *addr += size;
321 if (*addr >= max_addr) {
322 *addr = max_addr;
323 ret = -1;
324 }
325 nodes[nid].end = *addr;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200326 node_set(nid, node_possible_map);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200327 printk(KERN_INFO "Faking node %d at %016Lx-%016Lx (%LuMB)\n", nid,
328 nodes[nid].start, nodes[nid].end,
329 (nodes[nid].end - nodes[nid].start) >> 20);
330 return ret;
Rohit Seth53fee042007-02-13 13:26:22 +0100331}
332
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200333/*
334 * Splits num_nodes nodes up equally starting at node_start. The return value
335 * is the number of nodes split up and addr is adjusted to be at the end of the
336 * last node allocated.
337 */
338static int __init split_nodes_equally(struct bootnode *nodes, u64 *addr,
339 u64 max_addr, int node_start,
340 int num_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200342 unsigned int big;
343 u64 size;
344 int i;
Rohit Seth53fee042007-02-13 13:26:22 +0100345
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200346 if (num_nodes <= 0)
347 return -1;
348 if (num_nodes > MAX_NUMNODES)
349 num_nodes = MAX_NUMNODES;
David Rientjesa7e96622007-07-21 17:11:29 +0200350 size = (max_addr - *addr - e820_hole_size(*addr, max_addr)) /
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200351 num_nodes;
Rohit Seth53fee042007-02-13 13:26:22 +0100352 /*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200353 * Calculate the number of big nodes that can be allocated as a result
354 * of consolidating the leftovers.
Rohit Seth53fee042007-02-13 13:26:22 +0100355 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200356 big = ((size & ~FAKE_NODE_MIN_HASH_MASK) * num_nodes) /
357 FAKE_NODE_MIN_SIZE;
Rohit Seth53fee042007-02-13 13:26:22 +0100358
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200359 /* Round down to nearest FAKE_NODE_MIN_SIZE. */
360 size &= FAKE_NODE_MIN_HASH_MASK;
361 if (!size) {
362 printk(KERN_ERR "Not enough memory for each node. "
363 "NUMA emulation disabled.\n");
364 return -1;
Rohit Seth53fee042007-02-13 13:26:22 +0100365 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200366
367 for (i = node_start; i < num_nodes + node_start; i++) {
368 u64 end = *addr + size;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100369
Rohit Seth53fee042007-02-13 13:26:22 +0100370 if (i < big)
371 end += FAKE_NODE_MIN_SIZE;
372 /*
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200373 * The final node can have the remaining system RAM. Other
374 * nodes receive roughly the same amount of available pages.
Rohit Seth53fee042007-02-13 13:26:22 +0100375 */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200376 if (i == num_nodes + node_start - 1)
Rohit Seth53fee042007-02-13 13:26:22 +0100377 end = max_addr;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200378 else
David Rientjesa7e96622007-07-21 17:11:29 +0200379 while (end - *addr - e820_hole_size(*addr, end) <
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200380 size) {
381 end += FAKE_NODE_MIN_SIZE;
382 if (end > max_addr) {
383 end = max_addr;
384 break;
385 }
386 }
387 if (setup_node_range(i, nodes, addr, end - *addr, max_addr) < 0)
388 break;
389 }
390 return i - node_start + 1;
391}
392
393/*
David Rientjes382591d2007-05-02 19:27:09 +0200394 * Splits the remaining system RAM into chunks of size. The remaining memory is
395 * always assigned to a final node and can be asymmetric. Returns the number of
396 * nodes split.
397 */
398static int __init split_nodes_by_size(struct bootnode *nodes, u64 *addr,
399 u64 max_addr, int node_start, u64 size)
400{
401 int i = node_start;
402 size = (size << 20) & FAKE_NODE_MIN_HASH_MASK;
403 while (!setup_node_range(i++, nodes, addr, size, max_addr))
404 ;
405 return i - node_start;
406}
407
408/*
Thomas Gleixner886533a2008-05-12 15:43:36 +0200409 * Sets up the system RAM area from start_pfn to last_pfn according to the
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200410 * numa=fake command-line option.
411 */
Mike Travisf46bdf22008-04-04 18:11:09 -0700412static struct bootnode nodes[MAX_NUMNODES] __initdata;
413
Thomas Gleixner886533a2008-05-12 15:43:36 +0200414static int __init numa_emulation(unsigned long start_pfn, unsigned long last_pfn)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200415{
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100416 u64 size, addr = start_pfn << PAGE_SHIFT;
Thomas Gleixner886533a2008-05-12 15:43:36 +0200417 u64 max_addr = last_pfn << PAGE_SHIFT;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100418 int num_nodes = 0, num = 0, coeff_flag, coeff = -1, i;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200419
420 memset(&nodes, 0, sizeof(nodes));
421 /*
422 * If the numa=fake command-line is just a single number N, split the
423 * system RAM into N fake nodes.
424 */
425 if (!strchr(cmdline, '*') && !strchr(cmdline, ',')) {
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100426 long n = simple_strtol(cmdline, NULL, 0);
427
428 num_nodes = split_nodes_equally(nodes, &addr, max_addr, 0, n);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200429 if (num_nodes < 0)
430 return num_nodes;
431 goto out;
432 }
433
434 /* Parse the command line. */
David Rientjes382591d2007-05-02 19:27:09 +0200435 for (coeff_flag = 0; ; cmdline++) {
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200436 if (*cmdline && isdigit(*cmdline)) {
437 num = num * 10 + *cmdline - '0';
438 continue;
439 }
David Rientjes382591d2007-05-02 19:27:09 +0200440 if (*cmdline == '*') {
441 if (num > 0)
442 coeff = num;
443 coeff_flag = 1;
444 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200445 if (!*cmdline || *cmdline == ',') {
David Rientjes382591d2007-05-02 19:27:09 +0200446 if (!coeff_flag)
447 coeff = 1;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200448 /*
449 * Round down to the nearest FAKE_NODE_MIN_SIZE.
450 * Command-line coefficients are in megabytes.
451 */
452 size = ((u64)num << 20) & FAKE_NODE_MIN_HASH_MASK;
David Rientjes382591d2007-05-02 19:27:09 +0200453 if (size)
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200454 for (i = 0; i < coeff; i++, num_nodes++)
455 if (setup_node_range(num_nodes, nodes,
456 &addr, size, max_addr) < 0)
457 goto done;
David Rientjes382591d2007-05-02 19:27:09 +0200458 if (!*cmdline)
459 break;
460 coeff_flag = 0;
461 coeff = -1;
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200462 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200463 num = 0;
464 }
465done:
466 if (!num_nodes)
467 return -1;
David Rientjes14694d72007-05-02 19:27:09 +0200468 /* Fill remainder of system RAM, if appropriate. */
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200469 if (addr < max_addr) {
David Rientjes382591d2007-05-02 19:27:09 +0200470 if (coeff_flag && coeff < 0) {
471 /* Split remaining nodes into num-sized chunks */
472 num_nodes += split_nodes_by_size(nodes, &addr, max_addr,
473 num_nodes, num);
474 goto out;
475 }
David Rientjes14694d72007-05-02 19:27:09 +0200476 switch (*(cmdline - 1)) {
477 case '*':
478 /* Split remaining nodes into coeff chunks */
479 if (coeff <= 0)
480 break;
481 num_nodes += split_nodes_equally(nodes, &addr, max_addr,
482 num_nodes, coeff);
483 break;
484 case ',':
485 /* Do not allocate remaining system RAM */
486 break;
487 default:
488 /* Give one final node */
489 setup_node_range(num_nodes, nodes, &addr,
490 max_addr - addr, max_addr);
491 num_nodes++;
492 }
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200493 }
494out:
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -0700495 memnode_shift = compute_hash_shift(nodes, num_nodes, NULL);
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200496 if (memnode_shift < 0) {
497 memnode_shift = 0;
498 printk(KERN_ERR "No NUMA hash function found. NUMA emulation "
499 "disabled.\n");
500 return -1;
501 }
502
503 /*
504 * We need to vacate all active ranges that may have been registered by
David Rientjes1c05f092007-07-21 17:11:30 +0200505 * SRAT and set acpi_numa to -1 so that srat_disabled() always returns
506 * true. NUMA emulation has succeeded so we will not scan ACPI nodes.
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200507 */
508 remove_all_active_ranges();
David Rientjes1c05f092007-07-21 17:11:30 +0200509#ifdef CONFIG_ACPI_NUMA
510 acpi_numa = -1;
511#endif
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200512 for_each_node_mask(i, node_possible_map) {
Mel Gorman5cb248a2006-09-27 01:49:52 -0700513 e820_register_active_regions(i, nodes[i].start >> PAGE_SHIFT,
514 nodes[i].end >> PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100515 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
Mel Gorman5cb248a2006-09-27 01:49:52 -0700516 }
David Rientjes3484d792007-07-21 17:10:32 +0200517 acpi_fake_nodes(nodes, num_nodes);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100518 numa_init_array();
519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200521#endif /* CONFIG_NUMA_EMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Yinghai Lu1f75d7e2008-06-22 02:44:49 -0700523void __init initmem_init(unsigned long start_pfn, unsigned long last_pfn)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100524{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 int i;
526
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200527 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800528 nodes_clear(node_online_map);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530#ifdef CONFIG_NUMA_EMU
Thomas Gleixner886533a2008-05-12 15:43:36 +0200531 if (cmdline && !numa_emulation(start_pfn, last_pfn))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100532 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200533 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800534 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535#endif
536
537#ifdef CONFIG_ACPI_NUMA
538 if (!numa_off && !acpi_scan_nodes(start_pfn << PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200539 last_pfn << PAGE_SHIFT))
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100540 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200541 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800542 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#endif
544
545#ifdef CONFIG_K8_NUMA
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100546 if (!numa_off && !k8_scan_nodes(start_pfn<<PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200547 last_pfn<<PAGE_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return;
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200549 nodes_clear(node_possible_map);
Yinghai Lub7ad1492008-02-17 02:02:21 -0800550 nodes_clear(node_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551#endif
552 printk(KERN_INFO "%s\n",
553 numa_off ? "NUMA turned off" : "No NUMA configuration found");
554
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100555 printk(KERN_INFO "Faking a node at %016lx-%016lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 start_pfn << PAGE_SHIFT,
Thomas Gleixner886533a2008-05-12 15:43:36 +0200557 last_pfn << PAGE_SHIFT);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100558 /* setup dummy node covering all memory */
559 memnode_shift = 63;
Amul Shah076422d2007-02-13 13:26:19 +0100560 memnodemap = memnode.embedded_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 memnodemap[0] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 node_set_online(0);
Suresh Siddhae3f1cae2007-05-02 19:27:20 +0200563 node_set(0, node_possible_map);
Mike Travis168ef542008-12-16 17:34:01 -0800564 for (i = 0; i < nr_cpu_ids; i++)
Andi Kleen69d81fc2005-11-05 17:25:53 +0100565 numa_set_node(i, 0);
Thomas Gleixner886533a2008-05-12 15:43:36 +0200566 e820_register_active_regions(0, start_pfn, last_pfn);
567 setup_node_bootmem(0, start_pfn << PAGE_SHIFT, last_pfn << PAGE_SHIFT);
Andi Kleen69d81fc2005-11-05 17:25:53 +0100568}
569
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100570unsigned long __init numa_free_all_bootmem(void)
571{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 unsigned long pages = 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100573 int i;
574
575 for_each_online_node(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 pages += free_all_bootmem_node(NODE_DATA(i));
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return pages;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100579}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581void __init paging_init(void)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100582{
Mel Gorman6391af12006-10-11 01:20:39 -0700583 unsigned long max_zone_pfns[MAX_NR_ZONES];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100584
Mel Gorman6391af12006-10-11 01:20:39 -0700585 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
586 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
587 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
Yinghai Luc987d122008-06-24 22:14:09 -0700588 max_zone_pfns[ZONE_NORMAL] = max_pfn;
Bob Piccod3ee8712005-11-05 17:25:54 +0100589
Bob Piccof0a5a582007-02-13 13:26:25 +0100590 sparse_memory_present_with_active_regions(MAX_NUMNODES);
591 sparse_init();
Bob Piccod3ee8712005-11-05 17:25:54 +0100592
Mel Gorman5cb248a2006-09-27 01:49:52 -0700593 free_area_init_nodes(max_zone_pfns);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100594}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200596static __init int numa_setup(char *opt)
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100597{
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200598 if (!opt)
599 return -EINVAL;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100600 if (!strncmp(opt, "off", 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 numa_off = 1;
602#ifdef CONFIG_NUMA_EMU
David Rientjes8b8ca80e2007-05-02 19:27:09 +0200603 if (!strncmp(opt, "fake=", 5))
604 cmdline = opt + 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#endif
606#ifdef CONFIG_ACPI_NUMA
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100607 if (!strncmp(opt, "noacpi", 6))
608 acpi_numa = -1;
609 if (!strncmp(opt, "hotadd=", 7))
Andi Kleen68a3a7f2006-04-07 19:49:18 +0200610 hotadd_percent = simple_strtoul(opt+7, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611#endif
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200612 return 0;
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100613}
Andi Kleen2c8c0e62006-09-26 10:52:32 +0200614early_param("numa", numa_setup);
615
Mike Travis23ca4bb2008-05-12 21:21:12 +0200616#ifdef CONFIG_NUMA
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100617/*
618 * Setup early cpu_to_node.
619 *
620 * Populate cpu_to_node[] only if x86_cpu_to_apicid[],
621 * and apicid_to_node[] tables have valid entries for a CPU.
622 * This means we skip cpu_to_node[] initialisation for NUMA
623 * emulation and faking node case (when running a kernel compiled
624 * for NUMA on a non NUMA box), which is OK as cpu_to_node[]
625 * is already initialized in a round robin manner at numa_init_array,
626 * prior to this call, and this initialization is good enough
627 * for the fake NUMA cases.
Mike Travis23ca4bb2008-05-12 21:21:12 +0200628 *
629 * Called before the per_cpu areas are setup.
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100630 */
631void __init init_cpu_to_node(void)
632{
Mike Travis23ca4bb2008-05-12 21:21:12 +0200633 int cpu;
634 u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100635
Mike Travis23ca4bb2008-05-12 21:21:12 +0200636 BUG_ON(cpu_to_apicid == NULL);
637
638 for_each_possible_cpu(cpu) {
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800639 int node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200640 u16 apicid = cpu_to_apicid[cpu];
Thomas Gleixnere3cfe522008-01-30 13:30:37 +0100641
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100642 if (apicid == BAD_APICID)
643 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800644 node = apicid_to_node[apicid];
645 if (node == NUMA_NO_NODE)
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100646 continue;
Yinghai Lu7c9e92b2008-02-19 15:35:54 -0800647 if (!node_online(node))
648 continue;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200649 numa_set_node(cpu, node);
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100650 }
651}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200652#endif
Ravikiran Thirumalai05b3cbd2006-01-11 22:45:36 +0100653
Andi Kleencf050132006-01-11 22:46:27 +0100654
Brian Gerst6470aff2009-01-27 12:56:47 +0900655void __cpuinit numa_set_node(int cpu, int node)
656{
657 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
658
659 /* early setting, no percpu area yet */
660 if (cpu_to_node_map) {
661 cpu_to_node_map[cpu] = node;
662 return;
663 }
664
665#ifdef CONFIG_DEBUG_PER_CPU_MAPS
Brian Gerst44581a22009-02-08 09:58:40 -0500666 if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
Brian Gerst6470aff2009-01-27 12:56:47 +0900667 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
668 dump_stack();
669 return;
670 }
671#endif
672 per_cpu(x86_cpu_to_node_map, cpu) = node;
673
674 if (node != NUMA_NO_NODE)
675 per_cpu(node_number, cpu) = node;
676}
677
678void __cpuinit numa_clear_node(int cpu)
679{
680 numa_set_node(cpu, NUMA_NO_NODE);
681}
682
683#ifndef CONFIG_DEBUG_PER_CPU_MAPS
684
685void __cpuinit numa_add_cpu(int cpu)
686{
Rusty Russellc032ef602009-03-13 14:49:53 +1030687 cpumask_set_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Brian Gerst6470aff2009-01-27 12:56:47 +0900688}
689
690void __cpuinit numa_remove_cpu(int cpu)
691{
Rusty Russellc032ef602009-03-13 14:49:53 +1030692 cpumask_clear_cpu(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Brian Gerst6470aff2009-01-27 12:56:47 +0900693}
694
695#else /* CONFIG_DEBUG_PER_CPU_MAPS */
696
697/*
698 * --------- debug versions of the numa functions ---------
699 */
700static void __cpuinit numa_set_cpumask(int cpu, int enable)
701{
702 int node = early_cpu_to_node(cpu);
Rusty Russell73e907d2009-03-13 14:49:57 +1030703 struct cpumask *mask;
Brian Gerst6470aff2009-01-27 12:56:47 +0900704 char buf[64];
705
Rusty Russellc032ef602009-03-13 14:49:53 +1030706 mask = node_to_cpumask_map[node];
707 if (mask == NULL) {
708 printk(KERN_ERR "node_to_cpumask_map[%i] NULL\n", node);
Brian Gerst6470aff2009-01-27 12:56:47 +0900709 dump_stack();
710 return;
711 }
712
Brian Gerst6470aff2009-01-27 12:56:47 +0900713 if (enable)
Rusty Russellc032ef602009-03-13 14:49:53 +1030714 cpumask_set_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900715 else
Rusty Russellc032ef602009-03-13 14:49:53 +1030716 cpumask_clear_cpu(cpu, mask);
Brian Gerst6470aff2009-01-27 12:56:47 +0900717
718 cpulist_scnprintf(buf, sizeof(buf), mask);
719 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
720 enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf);
721}
722
723void __cpuinit numa_add_cpu(int cpu)
724{
725 numa_set_cpumask(cpu, 1);
726}
727
728void __cpuinit numa_remove_cpu(int cpu)
729{
730 numa_set_cpumask(cpu, 0);
731}
732
733int cpu_to_node(int cpu)
734{
735 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
736 printk(KERN_WARNING
737 "cpu_to_node(%d): usage too early!\n", cpu);
738 dump_stack();
739 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
740 }
741 return per_cpu(x86_cpu_to_node_map, cpu);
742}
743EXPORT_SYMBOL(cpu_to_node);
744
745/*
746 * Same function as cpu_to_node() but used if called before the
747 * per_cpu areas are setup.
748 */
749int early_cpu_to_node(int cpu)
750{
751 if (early_per_cpu_ptr(x86_cpu_to_node_map))
752 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
753
Brian Gerst44581a22009-02-08 09:58:40 -0500754 if (!cpu_possible(cpu)) {
Brian Gerst6470aff2009-01-27 12:56:47 +0900755 printk(KERN_WARNING
756 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
757 dump_stack();
758 return NUMA_NO_NODE;
759 }
760 return per_cpu(x86_cpu_to_node_map, cpu);
761}
762
Brian Gerst6470aff2009-01-27 12:56:47 +0900763/*
Brian Gerst6470aff2009-01-27 12:56:47 +0900764 * --------- end of debug versions of the numa functions ---------
765 */
766
767#endif /* CONFIG_DEBUG_PER_CPU_MAPS */