Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1630402
| From | Dietmar Eggemann <dietmar.eggemann@arm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2] sched/cfs: make util/load_avg more stable |
| Date | 2017-04-25 13:10 +0200 |
| Message-ID | <tA6w1-3UP-5@gated-at.bofh.it> (permalink) |
| References | <ty0O5-5Ir-1@gated-at.bofh.it> <ty17r-5PA-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 19/04/17 17:54, Vincent Guittot wrote:
> In the current implementation of load/util_avg, we assume that the ongoing
> time segment has fully elapsed, and util/load_sum is divided by LOAD_AVG_MAX,
> even if part of the time segment still remains to run. As a consequence, this
> remaining part is considered as idle time and generates unexpected variations
> of util_avg of a busy CPU in the range ]1002..1024[ whereas util_avg should
Why do you use the square brackets the other way around? Just curious.
1002 stands for 1024*y^1 w/ y = 4008/4096 or y^32 = 0.5, right ? Might
be worth mentioning.
> stay at 1023.
>
> In order to keep the metric stable, we should not consider the ongoing time
> segment when computing load/util_avg but only the segments that have already
> fully elapsed. Bu to not consider the current time segment adds unwanted
> latency in the load/util_avg responsivness especially when the time is scaled
> instead of the contribution. Instead of waiting for the current time segment
> to have fully elapsed before accounting it in load/util_avg, we can already
> account the elapsed part but change the range used to compute load/util_avg
> accordingly.
>
> At the very beginning of a new time segment, the past segments have been
> decayed and the max value is MAX_LOAD_AVG*y. At the very end of the current
> time segment, the max value becomes 1024(us) + MAX_LOAD_AVG*y which is equal
> to MAX_LOAD_AVG. In fact, the max value is
> sa->period_contrib + MAX_LOAD_AVG*y at any time in the time segment.
>
> Taking advantage of the fact that MAX_LOAD_AVG*y == MAX_LOAD_AVG-1024, the
> range becomes [0..MAX_LOAD_AVG-1024+sa->period_contrib].
>
> As the elapsed part is already accounted in load/util_sum, we update the max
> value according to the current position in the time segment instead of
> removing its contribution.
Removing its contribution stands for '- 1024' of 'LOAD_AVG_MAX - 1024'
which was added in patch 1/2?
>
> Suggested-by: Peter Zijlstra <peterz@infradead.org>
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
>
> Fold both patches in one
>
> kernel/sched/fair.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index 3f83a35..c3b8f0f 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -3017,12 +3017,12 @@ ___update_load_avg(u64 now, int cpu, struct sched_avg *sa,
> /*
> * Step 2: update *_avg.
> */
> - sa->load_avg = div_u64(sa->load_sum, LOAD_AVG_MAX);
> + sa->load_avg = div_u64(sa->load_sum, LOAD_AVG_MAX - 1024 + sa->period_contrib);
> if (cfs_rq) {
> cfs_rq->runnable_load_avg =
> - div_u64(cfs_rq->runnable_load_sum, LOAD_AVG_MAX);
> + div_u64(cfs_rq->runnable_load_sum, LOAD_AVG_MAX - 1024 + sa->period_contrib);
> }
> - sa->util_avg = sa->util_sum / LOAD_AVG_MAX;
> + sa->util_avg = sa->util_sum / (LOAD_AVG_MAX - 1024 + sa->period_contrib);
>
> return 1;
> }
>
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/2] sched/cfs: make util/load_avg stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 18:40 +0200
[PATCH 2/2] sched/cfs: take into account current time segment Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 18:40 +0200
[PATCH 1/2] sched/cfs: make util/load_avg more stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 18:40 +0200
[PATCH v2] sched/cfs: make util/load_avg more stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 19:00 +0200
Re: [PATCH v2] sched/cfs: make util/load_avg more stable Dietmar Eggemann <dietmar.eggemann@arm.com> - 2017-04-25 13:10 +0200
Re: [PATCH v2] sched/cfs: make util/load_avg more stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-25 14:50 +0200
Re: [PATCH v2] sched/cfs: make util/load_avg more stable Dietmar Eggemann <dietmar.eggemann@arm.com> - 2017-04-25 17:00 +0200
Re: [PATCH v2] sched/cfs: make util/load_avg more stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-25 17:20 +0200
[PATCH 1/2] sched/cfs: make util/load_avg more stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 19:20 +0200
[PATCH 2/2] sched/cfs: take into account current time segment Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 19:20 +0200
[PATCH 0/2] sched/cfs: make util/load_avg stable Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-19 19:20 +0200
csiph-web