diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-09-16 02:54:45 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-16 03:05:20 -0400 |
commit | 51e0304ce6e55a6e59658558916b4f74da085ff0 (patch) | |
tree | da17f8f9f1b3b0431cd0cd1e90ea95f970654f9f /kernel | |
parent | 59abf02644c45f1591e1374ee7bb45dc757fcb88 (diff) |
sched: Implement a gentler fair-sleepers feature
Add back FAIR_SLEEPERS and GENTLE_FAIR_SLEEPERS.
FAIR_SLEEPERS is the old logic: credit sleepers with their sleep time.
GENTLE_FAIR_SLEEPERS dampens this a bit: 50% of their sleep time gets
credited.
The hope here is to still give the benefits of fair-sleepers logic
(quick wakeups, etc.) while not allow them to have 100% of their
sleep time as if they were running.
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sched_fair.c | 9 | ||||
-rw-r--r-- | kernel/sched_features.h | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index a37f311f436e..acf16a8d934b 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
@@ -711,7 +711,7 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) | |||
711 | 711 | ||
712 | if (!initial) { | 712 | if (!initial) { |
713 | /* sleeps upto a single latency don't count. */ | 713 | /* sleeps upto a single latency don't count. */ |
714 | if (sched_feat(NEW_FAIR_SLEEPERS)) { | 714 | if (sched_feat(FAIR_SLEEPERS)) { |
715 | unsigned long thresh = sysctl_sched_latency; | 715 | unsigned long thresh = sysctl_sched_latency; |
716 | 716 | ||
717 | /* | 717 | /* |
@@ -725,6 +725,13 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) | |||
725 | task_of(se)->policy != SCHED_IDLE)) | 725 | task_of(se)->policy != SCHED_IDLE)) |
726 | thresh = calc_delta_fair(thresh, se); | 726 | thresh = calc_delta_fair(thresh, se); |
727 | 727 | ||
728 | /* | ||
729 | * Halve their sleep time's effect, to allow | ||
730 | * for a gentler effect of sleepers: | ||
731 | */ | ||
732 | if (sched_feat(GENTLE_FAIR_SLEEPERS)) | ||
733 | thresh >>= 1; | ||
734 | |||
728 | vruntime -= thresh; | 735 | vruntime -= thresh; |
729 | } | 736 | } |
730 | } | 737 | } |
diff --git a/kernel/sched_features.h b/kernel/sched_features.h index 70115c69c7a9..fd375675f834 100644 --- a/kernel/sched_features.h +++ b/kernel/sched_features.h | |||
@@ -3,7 +3,14 @@ | |||
3 | * considers the task to be running during that period. This gives it | 3 | * considers the task to be running during that period. This gives it |
4 | * a service deficit on wakeup, allowing it to run sooner. | 4 | * a service deficit on wakeup, allowing it to run sooner. |
5 | */ | 5 | */ |
6 | SCHED_FEAT(NEW_FAIR_SLEEPERS, 0) | 6 | SCHED_FEAT(FAIR_SLEEPERS, 1) |
7 | |||
8 | /* | ||
9 | * Only give sleepers 50% of their service deficit. This allows | ||
10 | * them to run sooner, but does not allow tons of sleepers to | ||
11 | * rip the spread apart. | ||
12 | */ | ||
13 | SCHED_FEAT(GENTLE_FAIR_SLEEPERS, 1) | ||
7 | 14 | ||
8 | /* | 15 | /* |
9 | * By not normalizing the sleep time, heavy tasks get an effective | 16 | * By not normalizing the sleep time, heavy tasks get an effective |