diff options
Diffstat (limited to 'arch/x86/kernel/smp_32.c')
-rw-r--r-- | arch/x86/kernel/smp_32.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/smp_32.c b/arch/x86/kernel/smp_32.c index d4c01a4aca60..070816ac79e1 100644 --- a/arch/x86/kernel/smp_32.c +++ b/arch/x86/kernel/smp_32.c | |||
@@ -159,7 +159,7 @@ void __send_IPI_shortcut(unsigned int shortcut, int vector) | |||
159 | apic_write_around(APIC_ICR, cfg); | 159 | apic_write_around(APIC_ICR, cfg); |
160 | } | 160 | } |
161 | 161 | ||
162 | void fastcall send_IPI_self(int vector) | 162 | void send_IPI_self(int vector) |
163 | { | 163 | { |
164 | __send_IPI_shortcut(APIC_DEST_SELF, vector); | 164 | __send_IPI_shortcut(APIC_DEST_SELF, vector); |
165 | } | 165 | } |
@@ -310,7 +310,7 @@ void leave_mm(unsigned long cpu) | |||
310 | * 2) Leave the mm if we are in the lazy tlb mode. | 310 | * 2) Leave the mm if we are in the lazy tlb mode. |
311 | */ | 311 | */ |
312 | 312 | ||
313 | fastcall void smp_invalidate_interrupt(struct pt_regs *regs) | 313 | void smp_invalidate_interrupt(struct pt_regs *regs) |
314 | { | 314 | { |
315 | unsigned long cpu; | 315 | unsigned long cpu; |
316 | 316 | ||
@@ -638,13 +638,13 @@ static void native_smp_send_stop(void) | |||
638 | * all the work is done automatically when | 638 | * all the work is done automatically when |
639 | * we return from the interrupt. | 639 | * we return from the interrupt. |
640 | */ | 640 | */ |
641 | fastcall void smp_reschedule_interrupt(struct pt_regs *regs) | 641 | void smp_reschedule_interrupt(struct pt_regs *regs) |
642 | { | 642 | { |
643 | ack_APIC_irq(); | 643 | ack_APIC_irq(); |
644 | __get_cpu_var(irq_stat).irq_resched_count++; | 644 | __get_cpu_var(irq_stat).irq_resched_count++; |
645 | } | 645 | } |
646 | 646 | ||
647 | fastcall void smp_call_function_interrupt(struct pt_regs *regs) | 647 | void smp_call_function_interrupt(struct pt_regs *regs) |
648 | { | 648 | { |
649 | void (*func) (void *info) = call_data->func; | 649 | void (*func) (void *info) = call_data->func; |
650 | void *info = call_data->info; | 650 | void *info = call_data->info; |