2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _ASM_X8664_NUMA_H
|
|
|
|
#define _ASM_X8664_NUMA_H 1
|
|
|
|
|
|
|
|
#include <linux/nodemask.h>
|
|
|
|
|
2006-03-25 23:29:12 +08:00
|
|
|
struct bootnode {
|
2005-04-17 06:20:36 +08:00
|
|
|
u64 start,end;
|
|
|
|
};
|
|
|
|
|
2006-03-25 23:29:12 +08:00
|
|
|
extern int compute_hash_shift(struct bootnode *nodes, int numnodes);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#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;
|
|
|
|
|
2005-11-06 00:25:53 +08:00
|
|
|
extern void numa_set_node(int cpu, int node);
|
2006-04-08 01:49:18 +08:00
|
|
|
extern void srat_reserve_add_area(int nodeid);
|
|
|
|
extern int hotadd_percent;
|
2005-11-06 00:25:53 +08:00
|
|
|
|
2005-09-13 00:49:24 +08:00
|
|
|
extern unsigned char apicid_to_node[256];
|
2006-01-12 05:45:36 +08:00
|
|
|
#ifdef CONFIG_NUMA
|
|
|
|
extern void __init init_cpu_to_node(void);
|
2006-02-08 04:58:23 +08:00
|
|
|
|
|
|
|
static inline void clear_node_cpumask(int cpu)
|
|
|
|
{
|
|
|
|
clear_bit(cpu, &node_to_cpumask[cpu_to_node(cpu)]);
|
|
|
|
}
|
|
|
|
|
2006-01-12 05:45:36 +08:00
|
|
|
#else
|
|
|
|
#define init_cpu_to_node() do {} while (0)
|
2006-02-08 04:58:23 +08:00
|
|
|
#define clear_node_cpumask(cpu) do {} while (0)
|
2006-01-12 05:45:36 +08:00
|
|
|
#endif
|
2005-09-13 00:49:24 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#define NUMA_NO_NODE 0xff
|
|
|
|
|
|
|
|
#endif
|