x86: change NR_CPUS arrays in numa_64
[deliverable/linux.git] / include / asm-x86 / numa_64.h
CommitLineData
1da177e4
LT
1#ifndef _ASM_X8664_NUMA_H
2#define _ASM_X8664_NUMA_H 1
3
4#include <linux/nodemask.h>
afc54659 5#include <asm/apicdef.h>
1da177e4 6
abe059e7 7struct bootnode {
1da177e4
LT
8 u64 start,end;
9};
10
abe059e7 11extern int compute_hash_shift(struct bootnode *nodes, int numnodes);
1da177e4
LT
12
13#define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT))
14
15extern void numa_add_cpu(int cpu);
16extern void numa_init_array(void);
17extern int numa_off;
18
69d81fcd 19extern void numa_set_node(int cpu, int node);
68a3a7fe
AK
20extern void srat_reserve_add_area(int nodeid);
21extern int hotadd_percent;
69d81fcd 22
3cc87e3f 23extern u16 apicid_to_node[MAX_LOCAL_APIC];
aaa64e04
TG
24
25extern void numa_initmem_init(unsigned long start_pfn, unsigned long end_pfn);
26extern unsigned long numa_free_all_bootmem(void);
27extern void setup_node_bootmem(int nodeid, unsigned long start,
28 unsigned long end);
29
05b3cbd8
RT
30#ifdef CONFIG_NUMA
31extern void __init init_cpu_to_node(void);
488fc08d
RT
32
33static inline void clear_node_cpumask(int cpu)
34{
5548fecd 35 clear_bit(cpu, (unsigned long *)&node_to_cpumask_map[cpu_to_node(cpu)]);
488fc08d
RT
36}
37
05b3cbd8
RT
38#else
39#define init_cpu_to_node() do {} while (0)
488fc08d 40#define clear_node_cpumask(cpu) do {} while (0)
05b3cbd8 41#endif
0b07e984 42
1da177e4 43#endif
This page took 0.286661 seconds and 5 git commands to generate.