diff options
Diffstat (limited to 'kernel/sched_fair.c')
-rw-r--r-- | kernel/sched_fair.c | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index c8c6b0561391..86e5e8c5d101 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
@@ -547,16 +547,22 @@ static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se) | |||
547 | static void | 547 | static void |
548 | place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) | 548 | place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) |
549 | { | 549 | { |
550 | struct sched_entity *last = __pick_last_entity(cfs_rq); | ||
551 | u64 min_runtime, latency; | 550 | u64 min_runtime, latency; |
552 | 551 | ||
553 | min_runtime = cfs_rq->min_vruntime; | 552 | min_runtime = cfs_rq->min_vruntime; |
554 | if (last) { | 553 | |
555 | min_runtime += last->vruntime; | 554 | if (sched_feat(USE_TREE_AVG)) { |
556 | min_runtime >>= 1; | 555 | struct sched_entity *last = __pick_last_entity(cfs_rq); |
557 | if (initial && sched_feat(START_DEBIT)) | 556 | if (last) { |
558 | min_runtime += sysctl_sched_latency/2; | 557 | min_runtime = __pick_next_entity(cfs_rq)->vruntime; |
559 | } | 558 | min_runtime += last->vruntime; |
559 | min_runtime >>= 1; | ||
560 | } | ||
561 | } else if (sched_feat(APPROX_AVG)) | ||
562 | min_runtime += sysctl_sched_latency/2; | ||
563 | |||
564 | if (initial && sched_feat(START_DEBIT)) | ||
565 | min_runtime += sched_slice(cfs_rq, se); | ||
560 | 566 | ||
561 | if (!initial && sched_feat(NEW_FAIR_SLEEPERS)) { | 567 | if (!initial && sched_feat(NEW_FAIR_SLEEPERS)) { |
562 | latency = sysctl_sched_latency; | 568 | latency = sysctl_sched_latency; |