"goto out" is an odd way to spell "skip".
Signed-off-by: Mike Galbraith <efault@gmx.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
/*
* Are there still pullable RT tasks?
*/
- if (src_rq->rt.rt_nr_running <= 1) {
- spin_unlock(&src_rq->lock);
- continue;
- }
+ if (src_rq->rt.rt_nr_running <= 1)
+ goto skip;
p = pick_next_highest_task_rt(src_rq, this_cpu);
*/
if (p->prio < src_rq->curr->prio ||
(next && next->prio < src_rq->curr->prio))
- goto out;
+ goto skip;
ret = 1;
next = p;
}
- out:
+ skip:
spin_unlock(&src_rq->lock);
}