diff options
Diffstat (limited to 'arch/x86/xen/smp.c')
-rw-r--r-- | arch/x86/xen/smp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/xen/smp.c b/arch/x86/xen/smp.c index c1367b29c3b1..ca92754eb846 100644 --- a/arch/x86/xen/smp.c +++ b/arch/x86/xen/smp.c | |||
@@ -65,7 +65,7 @@ static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id) | |||
65 | return IRQ_HANDLED; | 65 | return IRQ_HANDLED; |
66 | } | 66 | } |
67 | 67 | ||
68 | static void __cpuinit cpu_bringup(void) | 68 | static void cpu_bringup(void) |
69 | { | 69 | { |
70 | int cpu; | 70 | int cpu; |
71 | 71 | ||
@@ -97,7 +97,7 @@ static void __cpuinit cpu_bringup(void) | |||
97 | wmb(); /* make sure everything is out */ | 97 | wmb(); /* make sure everything is out */ |
98 | } | 98 | } |
99 | 99 | ||
100 | static void __cpuinit cpu_bringup_and_idle(void) | 100 | static void cpu_bringup_and_idle(void) |
101 | { | 101 | { |
102 | cpu_bringup(); | 102 | cpu_bringup(); |
103 | cpu_startup_entry(CPUHP_ONLINE); | 103 | cpu_startup_entry(CPUHP_ONLINE); |
@@ -326,7 +326,7 @@ static void __init xen_smp_prepare_cpus(unsigned int max_cpus) | |||
326 | set_cpu_present(cpu, true); | 326 | set_cpu_present(cpu, true); |
327 | } | 327 | } |
328 | 328 | ||
329 | static int __cpuinit | 329 | static int |
330 | cpu_initialize_context(unsigned int cpu, struct task_struct *idle) | 330 | cpu_initialize_context(unsigned int cpu, struct task_struct *idle) |
331 | { | 331 | { |
332 | struct vcpu_guest_context *ctxt; | 332 | struct vcpu_guest_context *ctxt; |
@@ -397,7 +397,7 @@ cpu_initialize_context(unsigned int cpu, struct task_struct *idle) | |||
397 | return 0; | 397 | return 0; |
398 | } | 398 | } |
399 | 399 | ||
400 | static int __cpuinit xen_cpu_up(unsigned int cpu, struct task_struct *idle) | 400 | static int xen_cpu_up(unsigned int cpu, struct task_struct *idle) |
401 | { | 401 | { |
402 | int rc; | 402 | int rc; |
403 | 403 | ||
@@ -470,7 +470,7 @@ static void xen_cpu_die(unsigned int cpu) | |||
470 | xen_teardown_timer(cpu); | 470 | xen_teardown_timer(cpu); |
471 | } | 471 | } |
472 | 472 | ||
473 | static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */ | 473 | static void xen_play_dead(void) /* used only with HOTPLUG_CPU */ |
474 | { | 474 | { |
475 | play_dead_common(); | 475 | play_dead_common(); |
476 | HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL); | 476 | HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL); |
@@ -691,7 +691,7 @@ static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus) | |||
691 | xen_init_lock_cpu(0); | 691 | xen_init_lock_cpu(0); |
692 | } | 692 | } |
693 | 693 | ||
694 | static int __cpuinit xen_hvm_cpu_up(unsigned int cpu, struct task_struct *tidle) | 694 | static int xen_hvm_cpu_up(unsigned int cpu, struct task_struct *tidle) |
695 | { | 695 | { |
696 | int rc; | 696 | int rc; |
697 | rc = native_cpu_up(cpu, tidle); | 697 | rc = native_cpu_up(cpu, tidle); |