diff options
| author | Srivatsa Vaddagiri <vatsa@codeaurora.org> | 2014-03-29 17:19:50 -0700 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 19:58:59 -0700 |
| commit | 025dedac36fd96e36e04578ff3c055f4b1bc59a6 (patch) | |
| tree | f199783197b292bc089431dc3d8fdaa287c72b05 /include/linux | |
| parent | 77fe8dd14da1d5f1cc32382a761206e8dd4ce6da (diff) | |
sched: Add scaled task load statistics
Scheduler guided frequency selection as well as task placement on
heterogeneous systems require scaled task load statistics. This patch
adds a 'runnable_avg_sum_scaled' metric per task that is a scaled
derivative of 'runnable_avg_sum'. Load is scaled in reference to
"best" cpu, i.e one with best possible max_freq
Change-Id: Ie8ae450d0b02753e9927fb769aee734c6d33190f
Signed-off-by: Srivatsa Vaddagiri <vatsa@codeaurora.org>
[rameezmustafa@codeaurora.org]: Port to msm-3.18]
Signed-off-by: Syed Rameez Mustafa <rameezmustafa@codeaurora.org>
[joonwoop@codeaurora.org: incoporated with change 9d89c257df
(" sched/fair: Rewrite runnable load and utilization average
tracking"). Used container_of() to get sched_entity.]
Signed-off-by: Joonwoo Park <joonwoop@codeaurora.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sched.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 42a09f9d83bd..4a464ae84a38 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1203,6 +1203,9 @@ struct sched_avg { u64 last_update_time, load_sum; u32 util_sum, period_contrib; unsigned long load_avg, util_avg; +#ifdef CONFIG_SCHED_FREQ_INPUT + u32 runnable_avg_sum_scaled; +#endif }; #ifdef CONFIG_SCHEDSTATS |
