|
@@ -399,7 +399,6 @@ enum {
|
|
|
SCHED_FEAT_SLEEPER_AVG = 4,
|
|
|
SCHED_FEAT_SLEEPER_LOAD_AVG = 8,
|
|
|
SCHED_FEAT_START_DEBIT = 16,
|
|
|
- SCHED_FEAT_SKIP_INITIAL = 32,
|
|
|
};
|
|
|
|
|
|
const_debug unsigned int sysctl_sched_features =
|
|
@@ -407,8 +406,7 @@ const_debug unsigned int sysctl_sched_features =
|
|
|
SCHED_FEAT_NEW_FAIR_SLEEPERS *1 |
|
|
|
SCHED_FEAT_SLEEPER_AVG *0 |
|
|
|
SCHED_FEAT_SLEEPER_LOAD_AVG *1 |
|
|
|
- SCHED_FEAT_START_DEBIT *1 |
|
|
|
- SCHED_FEAT_SKIP_INITIAL *0;
|
|
|
+ SCHED_FEAT_START_DEBIT *1;
|
|
|
|
|
|
#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
|
|
|
|