diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2007-11-09 16:39:37 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-11-09 16:39:37 -0500 |
commit | 2cb8600e6be4281e381d39e44de4359e46333e23 (patch) | |
tree | 3ba87a4da52bdb2e082f8c459c6d39180f4e3f2c /kernel/sched_fair.c | |
parent | 10b777246c6953100099af1870d35c8b24d49b12 (diff) |
sched: documentation: place_entity() comments
Add a few comments to place_entity(). No code changed.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_fair.c')
-rw-r--r-- | kernel/sched_fair.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index 62b057603f07..8763bee6b661 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
@@ -473,19 +473,26 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) | |||
473 | } else if (sched_feat(APPROX_AVG) && cfs_rq->nr_running) | 473 | } else if (sched_feat(APPROX_AVG) && cfs_rq->nr_running) |
474 | vruntime += sched_vslice(cfs_rq)/2; | 474 | vruntime += sched_vslice(cfs_rq)/2; |
475 | 475 | ||
476 | /* | ||
477 | * The 'current' period is already promised to the current tasks, | ||
478 | * however the extra weight of the new task will slow them down a | ||
479 | * little, place the new task so that it fits in the slot that | ||
480 | * stays open at the end. | ||
481 | */ | ||
476 | if (initial && sched_feat(START_DEBIT)) | 482 | if (initial && sched_feat(START_DEBIT)) |
477 | vruntime += sched_vslice_add(cfs_rq, se); | 483 | vruntime += sched_vslice_add(cfs_rq, se); |
478 | 484 | ||
479 | if (!initial) { | 485 | if (!initial) { |
486 | /* sleeps upto a single latency don't count. */ | ||
480 | if (sched_feat(NEW_FAIR_SLEEPERS) && entity_is_task(se) && | 487 | if (sched_feat(NEW_FAIR_SLEEPERS) && entity_is_task(se) && |
481 | task_of(se)->policy != SCHED_BATCH) | 488 | task_of(se)->policy != SCHED_BATCH) |
482 | vruntime -= sysctl_sched_latency; | 489 | vruntime -= sysctl_sched_latency; |
483 | 490 | ||
484 | vruntime = max_t(s64, vruntime, se->vruntime); | 491 | /* ensure we never gain time by being placed backwards. */ |
492 | vruntime = max_vruntime(se->vruntime, vruntime); | ||
485 | } | 493 | } |
486 | 494 | ||
487 | se->vruntime = vruntime; | 495 | se->vruntime = vruntime; |
488 | |||
489 | } | 496 | } |
490 | 497 | ||
491 | static void | 498 | static void |