mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
sched/fair: Make update_min_vruntime() more readable
The update_min_vruntime() control flow can be simplified. Signed-off-by: Byungchul Park <byungchul.park@lge.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: minchan.kim@lge.com Link: http://lkml.kernel.org/r/1436088829-25768-1-git-send-email-byungchul.park@lge.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
62cc20bcf2
commit
97a7142f15
@ -464,20 +464,17 @@ static void update_min_vruntime(struct cfs_rq *cfs_rq)
|
|||||||
{
|
{
|
||||||
u64 vruntime = cfs_rq->min_vruntime;
|
u64 vruntime = cfs_rq->min_vruntime;
|
||||||
|
|
||||||
if (cfs_rq->curr)
|
|
||||||
vruntime = cfs_rq->curr->vruntime;
|
|
||||||
|
|
||||||
if (cfs_rq->rb_leftmost) {
|
if (cfs_rq->rb_leftmost) {
|
||||||
struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost,
|
struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost,
|
||||||
struct sched_entity,
|
struct sched_entity,
|
||||||
run_node);
|
run_node);
|
||||||
|
|
||||||
if (!cfs_rq->curr)
|
|
||||||
vruntime = se->vruntime;
|
vruntime = se->vruntime;
|
||||||
else
|
|
||||||
vruntime = min_vruntime(vruntime, se->vruntime);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cfs_rq->curr)
|
||||||
|
vruntime = min_vruntime(vruntime, cfs_rq->curr->vruntime);
|
||||||
|
|
||||||
/* ensure we never gain time by being placed backwards. */
|
/* ensure we never gain time by being placed backwards. */
|
||||||
cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime);
|
cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime);
|
||||||
#ifndef CONFIG_64BIT
|
#ifndef CONFIG_64BIT
|
||||||
|
Loading…
Reference in New Issue
Block a user