Commit 971027a8 authored by Ingo Molnar's avatar Ingo Molnar

- cleanup from Andi Kleen: schedule_tail() does not have to take 'prev' as a parameter anymore.

parent 3a0b82c0
......@@ -196,9 +196,7 @@ ENTRY(lcall27)
ENTRY(ret_from_fork)
#if CONFIG_SMP
pushl %ebx
call SYMBOL_NAME(schedule_tail)
addl $4, %esp
#endif
GET_THREAD_INFO(%ebx)
jmp syscall_exit
......
......@@ -411,7 +411,7 @@ void sched_exit(task_t * p)
}
#if CONFIG_SMP
asmlinkage void schedule_tail(task_t *prev)
asmlinkage void schedule_tail(void)
{
spin_unlock_irq(&this_rq()->lock);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment