sched: hmp: Reduce number of load reports in a window

There's no use reporting load more than once in a window
via the cpufreq_update_util path (unless there's a migration).
Set the load_reported_window flag in sched_get_cpus_busy
to remove these redundant updates.

Change-Id: If43dd5abc7e0e52a8e0f0df3a20ca99ed92f5361
Signed-off-by: Vikram Mulukutla <markivx@codeaurora.org>
This commit is contained in:
Vikram Mulukutla 2017-03-31 16:29:59 -07:00 committed by Timi
parent 6287a52e7f
commit 3eac51aed0

View file

@ -3217,6 +3217,13 @@ void sched_get_cpus_busy(struct sched_load *busy,
update_task_ravg(rq->curr, rq, TASK_UPDATE, sched_ktime_clock(),
0);
/*
* Ensure that we don't report load for 'cpu' again via the
* cpufreq_update_util path in the window that started at
* rq->window_start
*/
rq->load_reported_window = rq->window_start;
account_load_subtractions(rq);
load[i] = rq->prev_runnable_sum;
nload[i] = rq->nt_prev_runnable_sum;