提交 f020bc46 编写于 作者: O Oleg Nesterov 提交者: Linus Torvalds

[PATCH] sys_setpgid: eliminate unnecessary do_each_task_pid(PIDTYPE_PGID)

All tasks in the process group have the same sid, we don't need to iterate
them all to check that the caller of sys_setpgid() doesn't change its
session.
Signed-off-by: NOleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 84d73786
......@@ -1397,16 +1397,13 @@ asmlinkage long sys_setpgid(pid_t pid, pid_t pgid)
goto out;
if (pgid != pid) {
struct task_struct *p;
struct task_struct *g =
find_task_by_pid_type(PIDTYPE_PGID, pgid);
do_each_task_pid(pgid, PIDTYPE_PGID, p) {
if (process_session(p) == process_session(group_leader))
goto ok_pgid;
} while_each_task_pid(pgid, PIDTYPE_PGID, p);
goto out;
if (!g || process_session(g) != process_session(group_leader))
goto out;
}
ok_pgid:
err = security_task_setpgid(p, pgid);
if (err)
goto out;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册