mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
sched: remove the 'u64 now' parameter from update_curr_rt()
remove the 'u64 now' parameter from update_curr_rt(). ( identity transformation that causes no change in functionality. ) Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
ab6cde2692
commit
f1e14ef64d
1 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
||||||
* Update the current task's runtime statistics. Skip current tasks that
|
* Update the current task's runtime statistics. Skip current tasks that
|
||||||
* are not in our scheduling class.
|
* are not in our scheduling class.
|
||||||
*/
|
*/
|
||||||
static inline void update_curr_rt(struct rq *rq, u64 now)
|
static inline void update_curr_rt(struct rq *rq)
|
||||||
{
|
{
|
||||||
struct task_struct *curr = rq->curr;
|
struct task_struct *curr = rq->curr;
|
||||||
u64 delta_exec;
|
u64 delta_exec;
|
||||||
|
@ -42,7 +42,7 @@ dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep, u64 now)
|
||||||
{
|
{
|
||||||
struct rt_prio_array *array = &rq->rt.active;
|
struct rt_prio_array *array = &rq->rt.active;
|
||||||
|
|
||||||
update_curr_rt(rq, now);
|
update_curr_rt(rq);
|
||||||
|
|
||||||
list_del(&p->run_list);
|
list_del(&p->run_list);
|
||||||
if (list_empty(array->queue + p->prio))
|
if (list_empty(array->queue + p->prio))
|
||||||
|
@ -96,7 +96,7 @@ static struct task_struct *pick_next_task_rt(struct rq *rq, u64 now)
|
||||||
|
|
||||||
static void put_prev_task_rt(struct rq *rq, struct task_struct *p, u64 now)
|
static void put_prev_task_rt(struct rq *rq, struct task_struct *p, u64 now)
|
||||||
{
|
{
|
||||||
update_curr_rt(rq, now);
|
update_curr_rt(rq);
|
||||||
p->se.exec_start = 0;
|
p->se.exec_start = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue