[PATCH 3/4] pids: sys_setpgid: use change_pid() helper

From: Oleg Nesterov
Date: Thu Mar 20 2008 - 11:24:49 EST


Use change_pid() instead of detach_pid() + attach_pid() in sys_setpgid().

This way task_pgrp() is not NULL in between.

Signed-off-by: Oleg Nesterov <oleg@xxxxxxxxxx>

--- 25/kernel/sys.c~3_SETPGRP 2008-02-18 19:15:40.000000000 +0300
+++ 25/kernel/sys.c 2008-03-20 18:21:17.000000000 +0300
@@ -972,8 +972,7 @@ asmlinkage long sys_setpgid(pid_t pid, p
goto out;

if (task_pgrp(p) != pgrp) {
- detach_pid(p, PIDTYPE_PGID);
- attach_pid(p, PIDTYPE_PGID, pgrp);
+ change_pid(p, PIDTYPE_PGID, pgrp);
set_task_pgrp(p, pid_nr(pgrp));
}


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/