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