mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 06:01:53 +02:00
sched: Fix a trivial syntax misuse
Use if statement instead of while loop. Signed-off-by: Shigeru Yoshida <shigeru.yoshida@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Jiri Kosina <trivial@kernel.org> Link: http://lkml.kernel.org/r/20131123.183801.769652906919404319.shigeru.yoshida@gmail.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
b975dc3689
commit
39e24d8ffb
|
|
@ -3654,7 +3654,7 @@ bool __sched yield_to(struct task_struct *p, bool preempt)
|
|||
}
|
||||
|
||||
double_rq_lock(rq, p_rq);
|
||||
while (task_rq(p) != p_rq) {
|
||||
if (task_rq(p) != p_rq) {
|
||||
double_rq_unlock(rq, p_rq);
|
||||
goto again;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user