Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 83beaf3c authored by Oleg Nesterov's avatar Oleg Nesterov Committed by Linus Torvalds
Browse files

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: default avatarOleg Nesterov <oleg@tv-sign.ru>
Cc:  "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Pavel Emelyanov <xemul@openvz.org>
Cc: Roland McGrath <roland@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 24336eae
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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));
	}