diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-08-09 13:16:48 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-08-09 13:16:48 +0400 |
commit | fb8d47240246e20f864f0724a23a7220cd1c59ac (patch) | |
tree | 0c94ecb977355a2152655738bfcee6072c10f41e /kernel/sched_fair.c | |
parent | f02231e51a280f1a0fee4d03ad8f50048e06cced (diff) | |
download | linux-fb8d47240246e20f864f0724a23a7220cd1c59ac.tar.xz |
sched: remove the 'u64 now' parameter from ->pick_next_task()
remove the 'u64 now' parameter from ->pick_next_task().
( identity transformation that causes no change in functionality. )
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_fair.c')
-rw-r--r-- | kernel/sched_fair.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index fb4d614af2c3..0b23aaf074fa 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c @@ -859,7 +859,7 @@ static void check_preempt_curr_fair(struct rq *rq, struct task_struct *p) __check_preempt_curr_fair(cfs_rq, &p->se, &curr->se, gran); } -static struct task_struct *pick_next_task_fair(struct rq *rq, u64 now) +static struct task_struct *pick_next_task_fair(struct rq *rq) { struct cfs_rq *cfs_rq = &rq->cfs; struct sched_entity *se; |