Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91102
b: refs/heads/master
c: 06379ab
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Apr 19, 2008
1 parent f088a31 commit 4019c88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: 7ba2e74ab5a0518bc953042952dd165724bc70c9
refs/heads/master: 06379aba522ebdabca37446ea988a23c43c03c67
4 changes: 3 additions & 1 deletion trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,7 @@ enum {
SCHED_FEAT_HRTICK = 64,
SCHED_FEAT_DOUBLE_TICK = 128,
SCHED_FEAT_NORMALIZED_SLEEPER = 256,
SCHED_FEAT_DEADLINE = 512,
};

const_debug unsigned int sysctl_sched_features =
Expand All @@ -753,7 +754,8 @@ const_debug unsigned int sysctl_sched_features =
SCHED_FEAT_SYNC_WAKEUPS * 1 |
SCHED_FEAT_HRTICK * 1 |
SCHED_FEAT_DOUBLE_TICK * 0 |
SCHED_FEAT_NORMALIZED_SLEEPER * 1;
SCHED_FEAT_NORMALIZED_SLEEPER * 1 |
SCHED_FEAT_DEADLINE * 1;

#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)

Expand Down

0 comments on commit 4019c88

Please sign in to comment.