numa.h 841 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#ifndef _ASM_X8664_NUMA_H 
#define _ASM_X8664_NUMA_H 1

#include <linux/nodemask.h>

6
struct bootnode {
L
Linus Torvalds 已提交
7 8 9
	u64 start,end; 
};

10
extern int compute_hash_shift(struct bootnode *nodes, int numnodes);
11
extern int pxm_to_node(int nid);
L
Linus Torvalds 已提交
12 13 14 15 16 17 18

#define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT))

extern void numa_add_cpu(int cpu);
extern void numa_init_array(void);
extern int numa_off;

19
extern void numa_set_node(int cpu, int node);
20 21
extern void srat_reserve_add_area(int nodeid);
extern int hotadd_percent;
22

23
extern unsigned char apicid_to_node[256];
24 25
#ifdef CONFIG_NUMA
extern void __init init_cpu_to_node(void);
26 27 28 29 30 31

static inline void clear_node_cpumask(int cpu)
{
	clear_bit(cpu, &node_to_cpumask[cpu_to_node(cpu)]);
}

32 33
#else
#define init_cpu_to_node() do {} while (0)
34
#define clear_node_cpumask(cpu) do {} while (0)
35
#endif
36

L
Linus Torvalds 已提交
37 38 39
#define NUMA_NO_NODE 0xff

#endif