blob: daeedf82c15fef02421b52b8fe142cd34a47af92 [file] [log] [blame]
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -03001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/init.h>
4#include <linux/bootmem.h>
5#include <linux/percpu.h>
Bernhard Walle1ecd2762008-06-20 15:38:22 +02006#include <linux/kexec.h>
Yinghai Lu17b4cce2008-06-21 21:02:20 -07007#include <linux/crash_dump.h>
Jaswinder Singh Rajput8a87dd92009-01-04 17:04:26 +05308#include <linux/smp.h>
9#include <linux/topology.h>
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -030010#include <asm/sections.h>
11#include <asm/processor.h>
12#include <asm/setup.h>
Alexey Starikovskiy0fc09062008-04-04 23:40:48 +040013#include <asm/mpspec.h>
Alexey Starikovskiy76eb4132008-04-04 23:40:41 +040014#include <asm/apicdef.h>
Bernhard Walle1ecd2762008-06-20 15:38:22 +020015#include <asm/highmem.h>
Tejun Heo1a51e3a2009-01-13 20:41:35 +090016#include <asm/proto.h>
Jaswinder Singh Rajput06879032009-01-10 12:17:37 +053017#include <asm/cpumask.h>
Alexey Starikovskiy76eb4132008-04-04 23:40:41 +040018
Mike Travisc90aa892009-01-13 20:41:34 +090019#ifdef CONFIG_DEBUG_PER_CPU_MAPS
20# define DBG(x...) printk(KERN_DEBUG x)
21#else
22# define DBG(x...)
23#endif
24
James Bottomleyf8955eb2008-05-10 09:01:48 -050025#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +040026unsigned int num_processors;
27unsigned disabled_cpus __cpuinitdata;
28/* Processor that is doing the boot up */
29unsigned int boot_cpu_physical_apicid = -1U;
30EXPORT_SYMBOL(boot_cpu_physical_apicid);
Jaswinder Singh Rajput8a87dd92009-01-04 17:04:26 +053031unsigned int max_physical_apicid;
Alexey Starikovskiy2fe60142008-04-04 23:41:44 +040032
Alexey Starikovskiy0fc09062008-04-04 23:40:48 +040033/* Bitmask of physically existing CPUs */
34physid_mask_t phys_cpu_present_map;
James Bottomleyf8955eb2008-05-10 09:01:48 -050035#endif
Alexey Starikovskiy0fc09062008-04-04 23:40:48 +040036
Mike Travisc90aa892009-01-13 20:41:34 +090037/*
38 * Map cpu index to physical APIC ID
39 */
Mike Travis23ca4bb2008-05-12 21:21:12 +020040DEFINE_EARLY_PER_CPU(u16, x86_cpu_to_apicid, BAD_APICID);
41DEFINE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid, BAD_APICID);
42EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
43EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
44
45#if defined(CONFIG_NUMA) && defined(CONFIG_X86_64)
Mike Travisc90aa892009-01-13 20:41:34 +090046#define X86_64_NUMA 1 /* (used later) */
Mike Travis23ca4bb2008-05-12 21:21:12 +020047
Mike Travisc90aa892009-01-13 20:41:34 +090048/*
49 * Map cpu index to node index
50 */
Mike Travis23ca4bb2008-05-12 21:21:12 +020051DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
52EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
Mike Travis9f248bd2008-05-12 21:21:12 +020053
Mike Travisc90aa892009-01-13 20:41:34 +090054/*
55 * Which logical CPUs are on which nodes
56 */
Mike Travis9f248bd2008-05-12 21:21:12 +020057cpumask_t *node_to_cpumask_map;
58EXPORT_SYMBOL(node_to_cpumask_map);
59
Mike Travisc90aa892009-01-13 20:41:34 +090060/*
61 * Setup node_to_cpumask_map
62 */
Mike Travis9f248bd2008-05-12 21:21:12 +020063static void __init setup_node_to_cpumask_map(void);
64
65#else
66static inline void setup_node_to_cpumask_map(void) { }
Mike Travis23ca4bb2008-05-12 21:21:12 +020067#endif
68
Tejun Heob12d8db2009-01-13 20:41:35 +090069/*
70 * Define load_pda_offset() and per-cpu __pda for x86_64.
71 * load_pda_offset() is responsible for loading the offset of pda into
72 * %gs.
73 *
74 * On SMP, pda offset also duals as percpu base address and thus it
75 * should be at the start of per-cpu area. To achieve this, it's
76 * preallocated in vmlinux_64.lds.S directly instead of using
77 * DEFINE_PER_CPU().
78 */
Tejun Heo1a51e3a2009-01-13 20:41:35 +090079#ifdef CONFIG_X86_64
80void __cpuinit load_pda_offset(int cpu)
81{
82 /* Memory clobbers used to order pda/percpu accesses */
83 mb();
84 wrmsrl(MSR_GS_BASE, cpu_pda(cpu));
85 mb();
86}
Tejun Heob12d8db2009-01-13 20:41:35 +090087#ifndef CONFIG_SMP
88DEFINE_PER_CPU(struct x8664_pda, __pda);
89EXPORT_PER_CPU_SYMBOL(__pda);
90#endif
Tejun Heo1a51e3a2009-01-13 20:41:35 +090091
92#endif /* CONFIG_SMP && CONFIG_X86_64 */
93
94#ifdef CONFIG_X86_64
95
96/* correctly size the local cpu masks */
97static void setup_cpu_local_masks(void)
98{
99 alloc_bootmem_cpumask_var(&cpu_initialized_mask);
100 alloc_bootmem_cpumask_var(&cpu_callin_mask);
101 alloc_bootmem_cpumask_var(&cpu_callout_mask);
102 alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask);
103}
104
105#else /* CONFIG_X86_32 */
106
107static inline void setup_cpu_local_masks(void)
108{
109}
110
111#endif /* CONFIG_X86_32 */
112
Mike Travisc90aa892009-01-13 20:41:34 +0900113#ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300114/*
115 * Copy data used in early init routines from the initial arrays to the
116 * per cpu data areas. These arrays then become expendable and the
117 * *_early_ptr's are zeroed indicating that the static arrays are gone.
118 */
119static void __init setup_per_cpu_maps(void)
120{
121 int cpu;
122
123 for_each_possible_cpu(cpu) {
Mike Travis23ca4bb2008-05-12 21:21:12 +0200124 per_cpu(x86_cpu_to_apicid, cpu) =
125 early_per_cpu_map(x86_cpu_to_apicid, cpu);
Mike Travisb447a462008-03-25 15:06:51 -0700126 per_cpu(x86_bios_cpu_apicid, cpu) =
Mike Travis23ca4bb2008-05-12 21:21:12 +0200127 early_per_cpu_map(x86_bios_cpu_apicid, cpu);
128#ifdef X86_64_NUMA
Mike Travisb447a462008-03-25 15:06:51 -0700129 per_cpu(x86_cpu_to_node_map, cpu) =
Mike Travis23ca4bb2008-05-12 21:21:12 +0200130 early_per_cpu_map(x86_cpu_to_node_map, cpu);
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300131#endif
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300132 }
133
134 /* indicate the early static arrays will soon be gone */
Mike Travis23ca4bb2008-05-12 21:21:12 +0200135 early_per_cpu_ptr(x86_cpu_to_apicid) = NULL;
136 early_per_cpu_ptr(x86_bios_cpu_apicid) = NULL;
137#ifdef X86_64_NUMA
138 early_per_cpu_ptr(x86_cpu_to_node_map) = NULL;
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300139#endif
140}
141
Tejun Heo9939dda2009-01-13 20:41:35 +0900142#ifdef CONFIG_X86_64
143unsigned long __per_cpu_offset[NR_CPUS] __read_mostly = {
144 [0] = (unsigned long)__per_cpu_load,
145};
146#else
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300147unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900148#endif
Tejun Heo9939dda2009-01-13 20:41:35 +0900149EXPORT_SYMBOL(__per_cpu_offset);
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300150
151/*
152 * Great future plan:
153 * Declare PDA itself and support (irqstack,tss,pgd) as per cpu data.
154 * Always point %gs to its beginning
155 */
156void __init setup_per_cpu_areas(void)
157{
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200158 ssize_t size, old_size;
Mike Travis3461b0a2008-05-12 21:21:13 +0200159 char *ptr;
160 int cpu;
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700161 unsigned long align = 1;
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300162
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300163 /* Copy section for each CPU (we discard the original) */
Yinghai Lu1f3fcd42008-08-19 20:49:44 -0700164 old_size = PERCPU_ENOUGH_ROOM;
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700165 align = max_t(unsigned long, PAGE_SIZE, align);
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +0200166 size = roundup(old_size, align);
Mike Travisa1681962008-12-16 17:33:53 -0800167
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300168 pr_info("NR_CPUS:%d nr_cpumask_bits:%d nr_cpu_ids:%d nr_node_ids:%d\n",
Mike Travisa1681962008-12-16 17:33:53 -0800169 NR_CPUS, nr_cpumask_bits, nr_cpu_ids, nr_node_ids);
170
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300171 pr_info("PERCPU: Allocating %zd bytes of per cpu data\n", size);
Mike Travisb447a462008-03-25 15:06:51 -0700172
Mike Travis3461b0a2008-05-12 21:21:13 +0200173 for_each_possible_cpu(cpu) {
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300174#ifndef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700175 ptr = __alloc_bootmem(size, align,
176 __pa(MAX_DMA_ADDRESS));
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300177#else
Mike Travis3461b0a2008-05-12 21:21:13 +0200178 int node = early_cpu_to_node(cpu);
Mike Travisb447a462008-03-25 15:06:51 -0700179 if (!node_online(node) || !NODE_DATA(node)) {
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700180 ptr = __alloc_bootmem(size, align,
181 __pa(MAX_DMA_ADDRESS));
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300182 pr_info("cpu %d has no node %d or node-local memory\n",
Mike Travis3461b0a2008-05-12 21:21:13 +0200183 cpu, node);
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300184 pr_debug("per cpu data for cpu%d at %016lx\n",
185 cpu, __pa(ptr));
186 } else {
Yinghai Lu1f8ff032008-08-19 20:49:45 -0700187 ptr = __alloc_bootmem_node(NODE_DATA(node), size, align,
188 __pa(MAX_DMA_ADDRESS));
Cyrill Gorcunovab143982009-01-02 21:51:32 +0300189 pr_debug("per cpu data for cpu%d on node%d at %016lx\n",
190 cpu, node, __pa(ptr));
Yinghai Lua677f582008-07-29 00:37:10 -0700191 }
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300192#endif
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900193
Tejun Heo3e5d8f92009-01-13 20:41:35 +0900194 memcpy(ptr, __per_cpu_load, __per_cpu_end - __per_cpu_start);
Tejun Heo9939dda2009-01-13 20:41:35 +0900195 per_cpu_offset(cpu) = ptr - __per_cpu_start;
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900196#ifdef CONFIG_X86_64
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900197 /*
198 * CPU0 modified pda in the init data area, reload pda
199 * offset for CPU0 and clear the area for others.
200 */
201 if (cpu == 0)
202 load_pda_offset(0);
203 else
204 memset(cpu_pda(cpu), 0, sizeof(*cpu_pda(cpu)));
205#endif
Tejun Heo9939dda2009-01-13 20:41:35 +0900206 per_cpu(this_cpu_off, cpu) = per_cpu_offset(cpu);
Mike Travisc90aa892009-01-13 20:41:34 +0900207
208 DBG("PERCPU: cpu %4d %p\n", cpu, ptr);
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300209 }
210
Mike Travisb447a462008-03-25 15:06:51 -0700211 /* Setup percpu data maps */
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300212 setup_per_cpu_maps();
Mike Travis9f0e8d02008-04-04 18:11:01 -0700213
Mike Travis9f248bd2008-05-12 21:21:12 +0200214 /* Setup node to cpumask map */
215 setup_node_to_cpumask_map();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800216
217 /* Setup cpu initialized, callin, callout masks */
218 setup_cpu_local_masks();
Glauber de Oliveira Costa4fe29a82008-03-19 14:25:23 -0300219}
220
221#endif
Huang, Yingc45a7072008-06-02 14:26:25 +0800222
Mike Travis23ca4bb2008-05-12 21:21:12 +0200223#ifdef X86_64_NUMA
Mike Travis9f248bd2008-05-12 21:21:12 +0200224
225/*
226 * Allocate node_to_cpumask_map based on number of available nodes
227 * Requires node_possible_map to be valid.
228 *
229 * Note: node_to_cpumask() is not valid until after this is done.
Mike Travisc90aa892009-01-13 20:41:34 +0900230 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
Mike Travis9f248bd2008-05-12 21:21:12 +0200231 */
232static void __init setup_node_to_cpumask_map(void)
233{
234 unsigned int node, num = 0;
235 cpumask_t *map;
236
237 /* setup nr_node_ids if not done yet */
238 if (nr_node_ids == MAX_NUMNODES) {
239 for_each_node_mask(node, node_possible_map)
240 num = node;
241 nr_node_ids = num + 1;
242 }
243
244 /* allocate the map */
245 map = alloc_bootmem_low(nr_node_ids * sizeof(cpumask_t));
Mike Travisc90aa892009-01-13 20:41:34 +0900246 DBG("node_to_cpumask_map at %p for %d nodes\n", map, nr_node_ids);
Mike Travis9f248bd2008-05-12 21:21:12 +0200247
Gustavo F. Padovan55410792008-10-15 10:37:04 -0300248 pr_debug("Node to cpumask map at %p for %d nodes\n",
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200249 map, nr_node_ids);
Mike Travis9f248bd2008-05-12 21:21:12 +0200250
251 /* node_to_cpumask() will now work */
252 node_to_cpumask_map = map;
253}
254
Mike Travis23ca4bb2008-05-12 21:21:12 +0200255void __cpuinit numa_set_node(int cpu, int node)
256{
257 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
258
Mike Travisc90aa892009-01-13 20:41:34 +0900259 /* early setting, no percpu area yet */
260 if (cpu_to_node_map) {
Mike Travis23ca4bb2008-05-12 21:21:12 +0200261 cpu_to_node_map[cpu] = node;
Mike Travisc90aa892009-01-13 20:41:34 +0900262 return;
263 }
Mike Travis23ca4bb2008-05-12 21:21:12 +0200264
Mike Travisc90aa892009-01-13 20:41:34 +0900265#ifdef CONFIG_DEBUG_PER_CPU_MAPS
266 if (cpu >= nr_cpu_ids || !per_cpu_offset(cpu)) {
267 printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu);
268 dump_stack();
269 return;
270 }
271#endif
272 per_cpu(x86_cpu_to_node_map, cpu) = node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200273
Mike Travisc90aa892009-01-13 20:41:34 +0900274 if (node != NUMA_NO_NODE)
275 cpu_pda(cpu)->nodenumber = node;
Mike Travis23ca4bb2008-05-12 21:21:12 +0200276}
277
278void __cpuinit numa_clear_node(int cpu)
279{
280 numa_set_node(cpu, NUMA_NO_NODE);
281}
282
Mike Travis9f248bd2008-05-12 21:21:12 +0200283#ifndef CONFIG_DEBUG_PER_CPU_MAPS
284
Mike Travis23ca4bb2008-05-12 21:21:12 +0200285void __cpuinit numa_add_cpu(int cpu)
286{
287 cpu_set(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
288}
289
290void __cpuinit numa_remove_cpu(int cpu)
291{
Mike Travisc90aa892009-01-13 20:41:34 +0900292 cpu_clear(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]);
Mike Travis23ca4bb2008-05-12 21:21:12 +0200293}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200294
Mike Travis9f248bd2008-05-12 21:21:12 +0200295#else /* CONFIG_DEBUG_PER_CPU_MAPS */
296
297/*
298 * --------- debug versions of the numa functions ---------
299 */
300static void __cpuinit numa_set_cpumask(int cpu, int enable)
301{
Mike Travisc90aa892009-01-13 20:41:34 +0900302 int node = early_cpu_to_node(cpu);
Mike Travis9f248bd2008-05-12 21:21:12 +0200303 cpumask_t *mask;
304 char buf[64];
305
306 if (node_to_cpumask_map == NULL) {
307 printk(KERN_ERR "node_to_cpumask_map NULL\n");
308 dump_stack();
309 return;
310 }
311
312 mask = &node_to_cpumask_map[node];
313 if (enable)
314 cpu_set(cpu, *mask);
315 else
316 cpu_clear(cpu, *mask);
317
Rusty Russell29c01772008-12-13 21:20:25 +1030318 cpulist_scnprintf(buf, sizeof(buf), mask);
Mike Travis9f248bd2008-05-12 21:21:12 +0200319 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n",
Jaswinder Singh Rajput8a87dd92009-01-04 17:04:26 +0530320 enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf);
321}
Mike Travis9f248bd2008-05-12 21:21:12 +0200322
323void __cpuinit numa_add_cpu(int cpu)
324{
325 numa_set_cpumask(cpu, 1);
326}
327
328void __cpuinit numa_remove_cpu(int cpu)
329{
330 numa_set_cpumask(cpu, 0);
331}
Mike Travis23ca4bb2008-05-12 21:21:12 +0200332
333int cpu_to_node(int cpu)
334{
335 if (early_per_cpu_ptr(x86_cpu_to_node_map)) {
336 printk(KERN_WARNING
337 "cpu_to_node(%d): usage too early!\n", cpu);
338 dump_stack();
339 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
340 }
341 return per_cpu(x86_cpu_to_node_map, cpu);
342}
343EXPORT_SYMBOL(cpu_to_node);
344
Mike Travis9f248bd2008-05-12 21:21:12 +0200345/*
346 * Same function as cpu_to_node() but used if called before the
347 * per_cpu areas are setup.
348 */
Mike Travis23ca4bb2008-05-12 21:21:12 +0200349int early_cpu_to_node(int cpu)
350{
351 if (early_per_cpu_ptr(x86_cpu_to_node_map))
352 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
353
354 if (!per_cpu_offset(cpu)) {
355 printk(KERN_WARNING
356 "early_cpu_to_node(%d): no per_cpu area!\n", cpu);
Mike Travis9f248bd2008-05-12 21:21:12 +0200357 dump_stack();
Mike Travis23ca4bb2008-05-12 21:21:12 +0200358 return NUMA_NO_NODE;
359 }
360 return per_cpu(x86_cpu_to_node_map, cpu);
361}
Mike Travis9f248bd2008-05-12 21:21:12 +0200362
Mike Travis6a2f47c2008-06-27 10:10:13 -0700363
364/* empty cpumask */
365static const cpumask_t cpu_mask_none;
366
Mike Travis9f248bd2008-05-12 21:21:12 +0200367/*
368 * Returns a pointer to the bitmask of CPUs on Node 'node'.
369 */
Rusty Russell393d68f2008-12-26 22:23:38 +1030370const cpumask_t *cpumask_of_node(int node)
Mike Travis9f248bd2008-05-12 21:21:12 +0200371{
372 if (node_to_cpumask_map == NULL) {
373 printk(KERN_WARNING
Rusty Russell393d68f2008-12-26 22:23:38 +1030374 "cpumask_of_node(%d): no node_to_cpumask_map!\n",
Mike Travis9f248bd2008-05-12 21:21:12 +0200375 node);
376 dump_stack();
Mike Travis11369f352008-07-08 14:35:21 -0700377 return (const cpumask_t *)&cpu_online_map;
Mike Travis9f248bd2008-05-12 21:21:12 +0200378 }
Mike Travis6a2f47c2008-06-27 10:10:13 -0700379 if (node >= nr_node_ids) {
380 printk(KERN_WARNING
Rusty Russell393d68f2008-12-26 22:23:38 +1030381 "cpumask_of_node(%d): node > nr_node_ids(%d)\n",
Mike Travis6a2f47c2008-06-27 10:10:13 -0700382 node, nr_node_ids);
383 dump_stack();
Mike Travis11369f352008-07-08 14:35:21 -0700384 return &cpu_mask_none;
Mike Travis6a2f47c2008-06-27 10:10:13 -0700385 }
Mike Travis11369f352008-07-08 14:35:21 -0700386 return &node_to_cpumask_map[node];
Mike Travis9f248bd2008-05-12 21:21:12 +0200387}
Rusty Russell393d68f2008-12-26 22:23:38 +1030388EXPORT_SYMBOL(cpumask_of_node);
Mike Travis9f248bd2008-05-12 21:21:12 +0200389
390/*
391 * Returns a bitmask of CPUs on Node 'node'.
Mike Travis6a2f47c2008-06-27 10:10:13 -0700392 *
393 * Side note: this function creates the returned cpumask on the stack
394 * so with a high NR_CPUS count, excessive stack space is used. The
395 * node_to_cpumask_ptr function should be used whenever possible.
Mike Travis9f248bd2008-05-12 21:21:12 +0200396 */
397cpumask_t node_to_cpumask(int node)
398{
399 if (node_to_cpumask_map == NULL) {
400 printk(KERN_WARNING
401 "node_to_cpumask(%d): no node_to_cpumask_map!\n", node);
402 dump_stack();
403 return cpu_online_map;
404 }
Mike Travis6a2f47c2008-06-27 10:10:13 -0700405 if (node >= nr_node_ids) {
406 printk(KERN_WARNING
407 "node_to_cpumask(%d): node > nr_node_ids(%d)\n",
408 node, nr_node_ids);
409 dump_stack();
410 return cpu_mask_none;
411 }
Mike Travis9f248bd2008-05-12 21:21:12 +0200412 return node_to_cpumask_map[node];
413}
414EXPORT_SYMBOL(node_to_cpumask);
415
416/*
417 * --------- end of debug versions of the numa functions ---------
418 */
419
420#endif /* CONFIG_DEBUG_PER_CPU_MAPS */
421
422#endif /* X86_64_NUMA */
Bernhard Walle1ecd2762008-06-20 15:38:22 +0200423