Commit 5c6b5964a0629bd39fbf4e5648a8aca32de5bcaf

Authored by Ingo Molnar
1 parent 6d0f0ebd06

sched: simplify check_preempt() methods

simplify the check_preempt() methods.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Mike Galbraith <efault@gmx.de>

Showing 1 changed file with 3 additions and 4 deletions Side-by-side Diff

... ... @@ -582,8 +582,7 @@
582 582 * Preempt the current task with a newly woken task if needed:
583 583 */
584 584 static void
585   -__check_preempt_curr_fair(struct cfs_rq *cfs_rq, struct sched_entity *se,
586   - struct sched_entity *curr)
  585 +__check_preempt_curr_fair(struct cfs_rq *cfs_rq, struct sched_entity *curr)
587 586 {
588 587 unsigned long ideal_runtime, delta_exec;
589 588  
... ... @@ -663,7 +662,7 @@
663 662 if (next == curr)
664 663 return;
665 664  
666   - __check_preempt_curr_fair(cfs_rq, next, curr);
  665 + __check_preempt_curr_fair(cfs_rq, curr);
667 666 }
668 667  
669 668 /**************************************************
... ... @@ -866,7 +865,7 @@
866 865 }
867 866  
868 867 if (is_same_group(curr, p))
869   - __check_preempt_curr_fair(cfs_rq, &p->se, &curr->se);
  868 + __check_preempt_curr_fair(cfs_rq, &curr->se);
870 869 }
871 870  
872 871 static struct task_struct *pick_next_task_fair(struct rq *rq)