Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 69103
b: refs/heads/master
c: 06877c3
h: refs/heads/master
i:
  69101: 69238bd
  69099: 6d31c37
  69095: 862ce67
  69087: 79260a9
v: v3
  • Loading branch information
Ingo Molnar committed Oct 15, 2007
1 parent d7a0ac2 commit 01e4181
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a65914b3658043da27c159b8a28c5811bb0a88c9
refs/heads/master: 06877c33fe9261ccdf143492c28de93c56493079
4 changes: 2 additions & 2 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -440,14 +440,14 @@ static void update_rq_clock(struct rq *rq)
enum {
SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
SCHED_FEAT_START_DEBIT = 2,
SCHED_FEAT_USE_TREE_AVG = 4,
SCHED_FEAT_TREE_AVG = 4,
SCHED_FEAT_APPROX_AVG = 8,
};

const_debug unsigned int sysctl_sched_features =
SCHED_FEAT_NEW_FAIR_SLEEPERS *1 |
SCHED_FEAT_START_DEBIT *1 |
SCHED_FEAT_USE_TREE_AVG *0 |
SCHED_FEAT_TREE_AVG *0 |
SCHED_FEAT_APPROX_AVG *0;

#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/sched_fair.c
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial)

vruntime = cfs_rq->min_vruntime;

if (sched_feat(USE_TREE_AVG)) {
if (sched_feat(TREE_AVG)) {
struct sched_entity *last = __pick_last_entity(cfs_rq);
if (last) {
vruntime += last->vruntime;
Expand Down

0 comments on commit 01e4181

Please sign in to comment.