[PATCH] sys_ioprio_set: minor do_each_thread+break fix

From include/linux/sched.h:

         * Careful: do_each_thread/while_each_thread is a double loop so
         *          'break' will not work as expected - use goto instead.
         */

Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Jens Axboe <axboe@suse.de>
This commit is contained in:
Oleg Nesterov 2006-08-21 08:33:23 +02:00 committed by Jens Axboe
parent ef7d1b244f
commit 78bd4d484f
1 changed files with 2 additions and 2 deletions

View File

@ -111,9 +111,9 @@ asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
continue;
ret = set_task_ioprio(p, ioprio);
if (ret)
break;
goto free_uid;
} while_each_thread(g, p);
free_uid:
if (who)
free_uid(user);
break;