added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / x86 / include / asm / cpu.h
blobb185091bf19ce39f67a325ecd6aafb7c13f8cd23
1 #ifndef _ASM_X86_CPU_H
2 #define _ASM_X86_CPU_H
4 #include <linux/device.h>
5 #include <linux/cpu.h>
6 #include <linux/topology.h>
7 #include <linux/nodemask.h>
8 #include <linux/percpu.h>
10 #ifdef CONFIG_SMP
12 extern void prefill_possible_map(void);
14 #else /* CONFIG_SMP */
16 static inline void prefill_possible_map(void) {}
18 #define cpu_physical_id(cpu) boot_cpu_physical_apicid
19 #define safe_smp_processor_id() 0
20 #define stack_smp_processor_id() 0
22 #endif /* CONFIG_SMP */
24 struct x86_cpu {
25 struct cpu cpu;
28 #ifdef CONFIG_HOTPLUG_CPU
29 extern int arch_register_cpu(int num);
30 extern void arch_unregister_cpu(int);
31 #endif
33 DECLARE_PER_CPU(int, cpu_state);
35 extern unsigned int boot_cpu_id;
37 #endif /* _ASM_X86_CPU_H */