sched: Remove noop in next_prio()
authorHillf Danton <dhillf@gmail.com>
Fri, 17 Jun 2011 01:55:18 +0000 (21:55 -0400)
committerIngo Molnar <mingo@elte.hu>
Sun, 14 Aug 2011 10:00:45 +0000 (12:00 +0200)
When computing the next priority for a given run-queue, the check for
RT priority of the task determined by the pick_next_highest_task_rt()
function could be removed, since only RT tasks are returned by the
function.

Reviewed-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Hillf Danton <dhillf@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/BANLkTimxmWiof9s5AvS3v_0X+sMiE=0x5g@mail.gmail.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched_rt.c

index 97540f0c9e47849543bc8a32e64b7bdff8ac4e01..e2698c0fc697fefcb13944e15bbcbadb742fcd42 100644 (file)
@@ -704,7 +704,7 @@ static inline int next_prio(struct rq *rq)
 {
        struct task_struct *next = pick_next_highest_task_rt(rq, rq->cpu);
 
-       if (next && rt_prio(next->prio))
+       if (next)
                return next->prio;
        else
                return MAX_RT_PRIO;