aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/exit.c2
-rw-r--r--kernel/fork.c4
-rw-r--r--kernel/sys.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/kernel/exit.c b/kernel/exit.c
index 68d27039ef7d..6838d4d77e05 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -306,7 +306,7 @@ void __set_special_pids(pid_t session, pid_t pgrp)
306 } 306 }
307 if (task_pgrp_nr(curr) != pgrp) { 307 if (task_pgrp_nr(curr) != pgrp) {
308 detach_pid(curr, PIDTYPE_PGID); 308 detach_pid(curr, PIDTYPE_PGID);
309 curr->signal->pgrp = pgrp; 309 set_task_pgrp(curr, pgrp);
310 attach_pid(curr, PIDTYPE_PGID, find_pid(pgrp)); 310 attach_pid(curr, PIDTYPE_PGID, find_pid(pgrp));
311 } 311 }
312} 312}
diff --git a/kernel/fork.c b/kernel/fork.c
index 240aa6601f5b..9d40367dd5db 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -1293,13 +1293,13 @@ static struct task_struct *copy_process(unsigned long clone_flags,
1293 if (clone_flags & CLONE_NEWPID) { 1293 if (clone_flags & CLONE_NEWPID) {
1294 p->nsproxy->pid_ns->child_reaper = p; 1294 p->nsproxy->pid_ns->child_reaper = p;
1295 p->signal->tty = NULL; 1295 p->signal->tty = NULL;
1296 p->signal->pgrp = p->pid; 1296 set_task_pgrp(p, p->pid);
1297 set_task_session(p, p->pid); 1297 set_task_session(p, p->pid);
1298 attach_pid(p, PIDTYPE_PGID, pid); 1298 attach_pid(p, PIDTYPE_PGID, pid);
1299 attach_pid(p, PIDTYPE_SID, pid); 1299 attach_pid(p, PIDTYPE_SID, pid);
1300 } else { 1300 } else {
1301 p->signal->tty = current->signal->tty; 1301 p->signal->tty = current->signal->tty;
1302 p->signal->pgrp = task_pgrp_nr(current); 1302 set_task_pgrp(p, task_pgrp_nr(current));
1303 set_task_session(p, task_session_nr(current)); 1303 set_task_session(p, task_session_nr(current));
1304 attach_pid(p, PIDTYPE_PGID, 1304 attach_pid(p, PIDTYPE_PGID,
1305 task_pgrp(current)); 1305 task_pgrp(current));
diff --git a/kernel/sys.c b/kernel/sys.c
index 2befc299129d..304b5410d746 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -977,7 +977,7 @@ asmlinkage long sys_setpgid(pid_t pid, pid_t pgid)
977 detach_pid(p, PIDTYPE_PGID); 977 detach_pid(p, PIDTYPE_PGID);
978 pid = find_vpid(pgid); 978 pid = find_vpid(pgid);
979 attach_pid(p, PIDTYPE_PGID, pid); 979 attach_pid(p, PIDTYPE_PGID, pid);
980 p->signal->pgrp = pid_nr(pid); 980 set_task_pgrp(p, pid_nr(pid));
981 } 981 }
982 982
983 err = 0; 983 err = 0;