[PATCH] add child reaper to pid_namespace
[linux-2.6-block.git] / include / linux / pid_namespace.h
index 76e7c6b2cf3304e003f7002597d7d6627c7a7f9c..d2a9d419f01f8903e12c4ab2da5e17a0d54f7481 100644 (file)
@@ -19,6 +19,7 @@ struct pid_namespace {
        struct kref kref;
        struct pidmap pidmap[PIDMAP_ENTRIES];
        int last_pid;
+       struct task_struct *child_reaper;
 };
 
 extern struct pid_namespace init_pid_ns;
@@ -36,4 +37,9 @@ static inline void put_pid_ns(struct pid_namespace *ns)
        kref_put(&ns->kref, free_pid_ns);
 }
 
+static inline struct task_struct *child_reaper(struct task_struct *tsk)
+{
+       return tsk->nsproxy->pid_ns->child_reaper;
+}
+
 #endif /* _LINUX_PID_NS_H */