mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 03:54:02 +00:00
sched: remove the 'u64 now' parameter from update_stats_curr_start()
remove the 'u64 now' parameter from update_stats_curr_start(). ( identity transformation that causes no change in functionality. ) Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
9ef0a9615b
commit
79303e9e02
1 changed files with 2 additions and 2 deletions
|
@ -465,7 +465,7 @@ update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
|
||||||
* We are picking a new current task - update its stats:
|
* We are picking a new current task - update its stats:
|
||||||
*/
|
*/
|
||||||
static inline void
|
static inline void
|
||||||
update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
|
update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* We are starting a new run period:
|
* We are starting a new run period:
|
||||||
|
@ -638,7 +638,7 @@ set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
|
||||||
* updated rq->fair_clock - used by update_stats_wait_end())
|
* updated rq->fair_clock - used by update_stats_wait_end())
|
||||||
*/
|
*/
|
||||||
update_stats_wait_end(cfs_rq, se);
|
update_stats_wait_end(cfs_rq, se);
|
||||||
update_stats_curr_start(cfs_rq, se, now);
|
update_stats_curr_start(cfs_rq, se);
|
||||||
set_cfs_rq_curr(cfs_rq, se);
|
set_cfs_rq_curr(cfs_rq, se);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue