diff options
Diffstat (limited to 'arch/x86/xen/xen-ops.h')
-rw-r--r-- | arch/x86/xen/xen-ops.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h index 77354d204257..81a779fc9b26 100644 --- a/arch/x86/xen/xen-ops.h +++ b/arch/x86/xen/xen-ops.h | |||
@@ -47,17 +47,14 @@ void xen_mark_init_mm_pinned(void); | |||
47 | void __init xen_fill_possible_map(void); | 47 | void __init xen_fill_possible_map(void); |
48 | 48 | ||
49 | void __init xen_setup_vcpu_info_placement(void); | 49 | void __init xen_setup_vcpu_info_placement(void); |
50 | void xen_smp_prepare_boot_cpu(void); | ||
51 | void xen_smp_prepare_cpus(unsigned int max_cpus); | ||
52 | int xen_cpu_up(unsigned int cpu); | ||
53 | void xen_smp_cpus_done(unsigned int max_cpus); | ||
54 | 50 | ||
55 | void xen_smp_send_stop(void); | 51 | #ifdef CONFIG_SMP |
56 | void xen_smp_send_reschedule(int cpu); | 52 | void xen_smp_init(void); |
57 | void xen_smp_send_call_function_ipi(cpumask_t mask); | ||
58 | void xen_smp_send_call_function_single_ipi(int cpu); | ||
59 | 53 | ||
60 | extern cpumask_t xen_cpu_initialized_map; | 54 | extern cpumask_t xen_cpu_initialized_map; |
55 | #else | ||
56 | static inline void xen_smp_init(void) {} | ||
57 | #endif | ||
61 | 58 | ||
62 | 59 | ||
63 | /* Declare an asm function, along with symbols needed to make it | 60 | /* Declare an asm function, along with symbols needed to make it |