The patch titled pid namespaces: rename child_reaper() function has been added to the -mm tree. Its filename is pid-namespaces-rename-child_reaper-function.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: pid namespaces: rename child_reaper() function From: Sukadev Bhattiprolu <sukadev@xxxxxxxxxx> Rename the child_reaper() function to task_child_reaper() to be similar to other task_* functions and to distinguish the function from 'struct pid_namspace.child_reaper'. Signed-off-by: Sukadev Bhattiprolu <sukadev@xxxxxxxxxx> Cc: Pavel Emelianov <xemul@xxxxxxxxxx> Cc: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Cc: Cedric Le Goater <clg@xxxxxxxxxx> Cc: Dave Hansen <haveblue@xxxxxxxxxx> Cc: Serge Hallyn <serue@xxxxxxxxxx> Cc: Herbert Poetzel <herbert@xxxxxxxxxxxx> Cc: Kirill Korotaev <dev@xxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/exec.c | 2 +- include/linux/pid_namespace.h | 2 +- kernel/exit.c | 2 +- kernel/signal.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff -puN fs/exec.c~pid-namespaces-rename-child_reaper-function fs/exec.c --- a/fs/exec.c~pid-namespaces-rename-child_reaper-function +++ a/fs/exec.c @@ -803,7 +803,7 @@ static int de_thread(struct task_struct * Reparenting needs write_lock on tasklist_lock, * so it is safe to do it under read_lock. */ - if (unlikely(tsk->group_leader == child_reaper(tsk))) + if (unlikely(tsk->group_leader == task_child_reaper(tsk))) task_active_pid_ns(tsk)->child_reaper = tsk; zap_other_threads(tsk); diff -puN include/linux/pid_namespace.h~pid-namespaces-rename-child_reaper-function include/linux/pid_namespace.h --- a/include/linux/pid_namespace.h~pid-namespaces-rename-child_reaper-function +++ a/include/linux/pid_namespace.h @@ -44,7 +44,7 @@ static inline struct pid_namespace *task return tsk->nsproxy->pid_ns; } -static inline struct task_struct *child_reaper(struct task_struct *tsk) +static inline struct task_struct *task_child_reaper(struct task_struct *tsk) { return init_pid_ns.child_reaper; } diff -puN kernel/exit.c~pid-namespaces-rename-child_reaper-function kernel/exit.c --- a/kernel/exit.c~pid-namespaces-rename-child_reaper-function +++ a/kernel/exit.c @@ -683,7 +683,7 @@ forget_original_parent(struct task_struc do { reaper = next_thread(reaper); if (reaper == father) { - reaper = child_reaper(father); + reaper = task_child_reaper(father); break; } } while (reaper->exit_state); diff -puN kernel/signal.c~pid-namespaces-rename-child_reaper-function kernel/signal.c --- a/kernel/signal.c~pid-namespaces-rename-child_reaper-function +++ a/kernel/signal.c @@ -1838,7 +1838,7 @@ relock: * within that pid space. It can of course get signals from * its parent pid space. */ - if (current == child_reaper(current)) + if (current == task_child_reaper(current)) continue; if (sig_kernel_stop(signr)) { _ Patches currently in -mm which might be from sukadev@xxxxxxxxxx are handle-the-multi-threaded-inits-exit-properly.patch pid-namespaces-round-up-the-api.patch pid-namespaces-make-get_pid_ns-return-the-namespace-itself.patch pid-namespaces-dynamic-kmem-cache-allocator-for-pid-namespaces.patch pid-namespaces-dynamic-kmem-cache-allocator-for-pid-namespaces-fix.patch pid-namespaces-define-and-use-task_active_pid_ns-wrapper.patch pid-namespaces-rename-child_reaper-function.patch pid-namespaces-use-task_pid-to-find-leaders-pid.patch pid-namespaces-define-is_global_init-and-is_container_init.patch pid-namespaces-define-is_global_init-and-is_container_init-fix.patch pid-namespaces-define-is_global_init-and-is_container_init-m32r-fix.patch pid-namespaces-define-is_global_init-and-is_container_init-kernel-pidc-remove-unused-exports.patch pid-namespaces-move-alloc_pid-to-copy_process.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html