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

sched: fair-group scheduling vs latency

Currently FAIR_GROUP sched grows the scheduler latency outside of
sysctl_sched_latency, invert this so it stays within.
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 58d6c2d7
...@@ -362,31 +362,49 @@ static u64 __sched_period(unsigned long nr_running) ...@@ -362,31 +362,49 @@ static u64 __sched_period(unsigned long nr_running)
*/ */
static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se) static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
{ {
return calc_delta_mine(__sched_period(cfs_rq->nr_running), u64 slice = __sched_period(cfs_rq->nr_running);
se->load.weight, &cfs_rq->load);
for_each_sched_entity(se) {
cfs_rq = cfs_rq_of(se);
slice *= se->load.weight;
do_div(slice, cfs_rq->load.weight);
}
return slice;
} }
/* /*
* We calculate the vruntime slice. * We calculate the vruntime slice of a to be inserted task
* *
* vs = s/w = p/rw * vs = s/w = p/rw
*/ */
static u64 __sched_vslice(unsigned long rq_weight, unsigned long nr_running) static u64 sched_vslice_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
{ {
u64 vslice = __sched_period(nr_running); unsigned long nr_running = cfs_rq->nr_running;
unsigned long weight;
u64 vslice;
if (!se->on_rq)
nr_running++;
vslice = __sched_period(nr_running);
for_each_sched_entity(se) {
cfs_rq = cfs_rq_of(se);
weight = cfs_rq->load.weight;
if (!se->on_rq)
weight += se->load.weight;
vslice *= NICE_0_LOAD; vslice *= NICE_0_LOAD;
do_div(vslice, rq_weight); do_div(vslice, weight);
}
return vslice; return vslice;
} }
static u64 sched_vslice_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
{
return __sched_vslice(cfs_rq->load.weight + se->load.weight,
cfs_rq->nr_running + 1);
}
/* /*
* Update the current task's runtime statistics. Skip current tasks that * Update the current task's runtime statistics. Skip current tasks that
* are not in our scheduling class. * are not in our scheduling class.
......
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