]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
sched: simplify bonus calculation #1
authorPeter Zijlstra <a.p.zijlstra@chello.nl>
Fri, 24 Aug 2007 18:39:10 +0000 (20:39 +0200)
committerIngo Molnar <mingo@elte.hu>
Fri, 24 Aug 2007 18:39:10 +0000 (20:39 +0200)
commita6f2994042cc2db9e507dc702ed0b5e2cc5890fe
tree2fcfab62367e086e50f3561a7dbcae6a63ef952b
parentb2133c8b1e270b4a7c36f70e29be8738d09e850b
sched: simplify bonus calculation #1

current code:

 delta = min(cfs_rq->sleeper_bonus, (u64)delta_exec);
 delta = calc_delta_mine(delta, curr->load.weight, lw);
 delta = min((u64)delta, cfs_rq->sleeper_bonus);

drop the first min(), because we clip against sleeper_bonus in the 3rd line
again. That gives:

 delta = calc_delta_mine(delta_exec, curr->load.weight, lw);
 delta = min((u64)delta, cfs_rq->sleeper_bonus);

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched_fair.c