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