sched: remove the 'u64 now' parameter from ->enqueue_task()

remove the 'u64 now' parameter from ->enqueue_task().

( identity transformation that causes no change in functionality. )

Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Ingo Molnar
2007-08-09 11:16:48 +02:00
parent f1e14ef64d
commit fd390f6a04
4 changed files with 4 additions and 7 deletions

View File

@@ -852,7 +852,7 @@ static void
enqueue_task(struct rq *rq, struct task_struct *p, int wakeup, u64 now)
{
sched_info_queued(p);
p->sched_class->enqueue_task(rq, p, wakeup, now);
p->sched_class->enqueue_task(rq, p, wakeup);
p->se.on_rq = 1;
}