mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
[IA64] use goto to jump out do/while_each_thread
do_each_thread/while_each_thread is a double loop, so should use 'goto' rather than 'break' to break out the loop. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
parent
e914501611
commit
6794c75266
@ -4204,10 +4204,10 @@ pfm_check_task_exist(pfm_context_t *ctx)
|
||||
do_each_thread (g, t) {
|
||||
if (t->thread.pfm_context == ctx) {
|
||||
ret = 0;
|
||||
break;
|
||||
goto out;
|
||||
}
|
||||
} while_each_thread (g, t);
|
||||
|
||||
out:
|
||||
read_unlock(&tasklist_lock);
|
||||
|
||||
DPRINT(("pfm_check_task_exist: ret=%d ctx=%p\n", ret, ctx));
|
||||
|
Loading…
Reference in New Issue
Block a user