Commit 7009c258 authored by Oleg Nesterov's avatar Oleg Nesterov Committed by James Toy

(depends on ptrace-__ptrace_detach-do-__wake_up_parent-if-we-reap-the-tracee.patch

 which exports __wake_up_parent)

Spotted by Valdis.Kletnieks@vt.edu.

selinux_bprm_committed_creds() should not play with ->wait_chldexit, now
that __wake_up_parent() is exported change the code to use this helper.
Signed-off-by: default avatarOleg Nesterov <oleg@redhat.com>
Cc: Roland McGrath <roland@redhat.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ratan Nalumasu <rnalumasu@gmail.com>
Cc: Vitaly Mayatskikh <vmayatsk@redhat.com>
Acked-by: default avatarJames Morris <jmorris@namei.org>
Tested-by: default avatarValdis Kletnieks <valdis.kletnieks@vt.edu>
Reported-by: default avatarValdis Kletnieks <valdis.kletnieks@vt.edu>
Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 42af8bfe
...@@ -2407,7 +2407,7 @@ static void selinux_bprm_committed_creds(struct linux_binprm *bprm) ...@@ -2407,7 +2407,7 @@ static void selinux_bprm_committed_creds(struct linux_binprm *bprm)
/* Wake up the parent if it is waiting so that it can recheck /* Wake up the parent if it is waiting so that it can recheck
* wait permission to the new task SID. */ * wait permission to the new task SID. */
read_lock(&tasklist_lock); read_lock(&tasklist_lock);
wake_up_interruptible(&current->real_parent->signal->wait_chldexit); __wake_up_parent(current, current->real_parent);
read_unlock(&tasklist_lock); read_unlock(&tasklist_lock);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment