diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-08-09 05:16:48 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-08-09 05:16:48 -0400 |
commit | f02231e51a280f1a0fee4d03ad8f50048e06cced (patch) | |
tree | becd8bf748828e3dfe34f73df11d260fd6300026 /kernel/sched_rt.c | |
parent | fd390f6a04f22fb457d6fd1855964f79536525de (diff) |
sched: remove the 'u64 now' parameter from ->dequeue_task()
remove the 'u64 now' parameter from ->dequeue_task().
( identity transformation that causes no change in functionality. )
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_rt.c')
-rw-r--r-- | kernel/sched_rt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c index 1edaa99e0d3d..60591e2512b1 100644 --- a/kernel/sched_rt.c +++ b/kernel/sched_rt.c | |||
@@ -36,8 +36,7 @@ static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup) | |||
36 | /* | 36 | /* |
37 | * Adding/removing a task to/from a priority array: | 37 | * Adding/removing a task to/from a priority array: |
38 | */ | 38 | */ |
39 | static void | 39 | static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep) |
40 | dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep, u64 now) | ||
41 | { | 40 | { |
42 | struct rt_prio_array *array = &rq->rt.active; | 41 | struct rt_prio_array *array = &rq->rt.active; |
43 | 42 | ||