From: Oleg Nesterov Date: Wed, 30 Apr 2008 07:54:27 +0000 (-0700) Subject: pids: sys_setpgid: use change_pid() helper X-Git-Tag: v2.6.26-rc1~165 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=83beaf3c6c75b36b7c9be7f555c8cf7797842cc5;p=~shefty%2Frdma-dev.git pids: sys_setpgid: use change_pid() helper 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 Cc: "Eric W. Biederman" Cc: Pavel Emelyanov Cc: Roland McGrath Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/sys.c b/kernel/sys.c index 47c30a20b55..5d0b44cd435 100644 --- a/kernel/sys.c +++ b/kernel/sys.c @@ -978,8 +978,7 @@ asmlinkage long sys_setpgid(pid_t pid, pid_t pgid) 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)); }