Commit ce6c1311 authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Ingo Molnar

sched: disable forced preemption by default

Implement feature bit to disable forced preemption. This way
it can be checked whether a workload is overscheduling or not.
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent e62dd02e
...@@ -444,13 +444,15 @@ enum { ...@@ -444,13 +444,15 @@ enum {
SCHED_FEAT_START_DEBIT = 2, SCHED_FEAT_START_DEBIT = 2,
SCHED_FEAT_TREE_AVG = 4, SCHED_FEAT_TREE_AVG = 4,
SCHED_FEAT_APPROX_AVG = 8, SCHED_FEAT_APPROX_AVG = 8,
SCHED_FEAT_WAKEUP_PREEMPT = 16,
}; };
const_debug unsigned int sysctl_sched_features = const_debug unsigned int sysctl_sched_features =
SCHED_FEAT_NEW_FAIR_SLEEPERS *1 | SCHED_FEAT_NEW_FAIR_SLEEPERS *1 |
SCHED_FEAT_START_DEBIT *1 | SCHED_FEAT_START_DEBIT *1 |
SCHED_FEAT_TREE_AVG *0 | SCHED_FEAT_TREE_AVG *0 |
SCHED_FEAT_APPROX_AVG *0; SCHED_FEAT_APPROX_AVG *0 |
SCHED_FEAT_WAKEUP_PREEMPT *1;
#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x) #define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
......
...@@ -626,7 +626,7 @@ static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) ...@@ -626,7 +626,7 @@ static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
*/ */
update_curr(cfs_rq); update_curr(cfs_rq);
if (cfs_rq->nr_running > 1) if (cfs_rq->nr_running > 1 || !sched_feat(WAKEUP_PREEMPT))
check_preempt_tick(cfs_rq, curr); check_preempt_tick(cfs_rq, curr);
} }
...@@ -828,18 +828,20 @@ static void check_preempt_wakeup(struct rq *rq, struct task_struct *p) ...@@ -828,18 +828,20 @@ static void check_preempt_wakeup(struct rq *rq, struct task_struct *p)
return; return;
} }
while (!is_same_group(se, pse)) { if (sched_feat(WAKEUP_PREEMPT)) {
se = parent_entity(se); while (!is_same_group(se, pse)) {
pse = parent_entity(pse); se = parent_entity(se);
} pse = parent_entity(pse);
}
delta = se->vruntime - pse->vruntime; delta = se->vruntime - pse->vruntime;
gran = sysctl_sched_wakeup_granularity; gran = sysctl_sched_wakeup_granularity;
if (unlikely(se->load.weight != NICE_0_LOAD)) if (unlikely(se->load.weight != NICE_0_LOAD))
gran = calc_delta_fair(gran, &se->load); gran = calc_delta_fair(gran, &se->load);
if (delta > gran) if (delta > gran)
resched_task(curr); resched_task(curr);
}
} }
static struct task_struct *pick_next_task_fair(struct rq *rq) static struct task_struct *pick_next_task_fair(struct rq *rq)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment