diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-08-09 05:16:47 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-08-09 05:16:47 -0400 |
commit | 79303e9e0219a23f8757af99393b21ecb35231bf (patch) | |
tree | d49cce653217573a6f3114b1fefa1b3c374b8730 /kernel/sched_fair.c | |
parent | 9ef0a9615b0d9cd29c6bc0e8898f1bc3145e44c6 (diff) |
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>
Diffstat (limited to 'kernel/sched_fair.c')
-rw-r--r-- | kernel/sched_fair.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index 0cfa1d682418..1c73073be4ca 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
@@ -465,7 +465,7 @@ update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now) | |||
465 | * We are picking a new current task - update its stats: | 465 | * We are picking a new current task - update its stats: |
466 | */ | 466 | */ |
467 | static inline void | 467 | static inline void |
468 | update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now) | 468 | update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se) |
469 | { | 469 | { |
470 | /* | 470 | /* |
471 | * We are starting a new run period: | 471 | * 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) | |||
638 | * updated rq->fair_clock - used by update_stats_wait_end()) | 638 | * updated rq->fair_clock - used by update_stats_wait_end()) |
639 | */ | 639 | */ |
640 | update_stats_wait_end(cfs_rq, se); | 640 | update_stats_wait_end(cfs_rq, se); |
641 | update_stats_curr_start(cfs_rq, se, now); | 641 | update_stats_curr_start(cfs_rq, se); |
642 | set_cfs_rq_curr(cfs_rq, se); | 642 | set_cfs_rq_curr(cfs_rq, se); |
643 | } | 643 | } |
644 | 644 | ||