aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smp_32.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-30 07:31:17 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:17 -0500
commit75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a (patch)
treeca8f9af34d70e237b78ca47c225fbbbbe1a64fac /arch/x86/kernel/smp_32.c
parent56c4da454de1264e381256f658f61b9ef690dd21 (diff)
x86: remove all definitions with fastcall
fastcall is always defined to be empty, remove it from arch/x86 Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/smp_32.c')
-rw-r--r--arch/x86/kernel/smp_32.c8
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
162void fastcall send_IPI_self(int vector) 162void 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
313fastcall void smp_invalidate_interrupt(struct pt_regs *regs) 313void 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 */
641fastcall void smp_reschedule_interrupt(struct pt_regs *regs) 641void 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
647fastcall void smp_call_function_interrupt(struct pt_regs *regs) 647void 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;