diff options
author | 2011-01-21 20:45:03 -0800 | |
---|---|---|
committer | 2011-01-26 12:33:19 +0100 | |
commit | f07333bf6ee66d9b49286cec4371cf375e745b7a (patch) | |
tree | 03a1e9968eadf2465b6fc04fb8c1ab67327ea0f2 /tools/perf/scripts/python | |
parent | sched: Simplify update_cfs_shares parameters (diff) | |
download | linux-dev-f07333bf6ee66d9b49286cec4371cf375e745b7a.tar.xz linux-dev-f07333bf6ee66d9b49286cec4371cf375e745b7a.zip |
sched: Avoid expensive initial update_cfs_load()
Since cfs->{load_stamp,load_last} are zero-initalized the initial load update
will consider the delta to be 'since the beginning of time'.
This results in a lot of pointless divisions to bring this large period to be
within the sysctl_sched_shares_window.
Fix this by initializing load_stamp to be 1 at cfs_rq initialization, this
allows for an initial load_stamp > load_last which then lets standard idle
truncation proceed.
We avoid spinning (and slightly improve consistency) by fixing delta to be
[period - 1] in this path resulting in a slightly more predictable shares ramp.
(Previously the amount of idle time preserved by the overflow would range between
[period/2,period-1].)
Signed-off-by: Paul Turner <pjt@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <20110122044852.102126037@google.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions