pid namespaces: add support for pid namespaces hierarchy
[linux-2.6/x86.git] / include / linux / pid_namespace.h
blob14376ebf4bac304f926471f380018fb974f3ec7d
1 #ifndef _LINUX_PID_NS_H
2 #define _LINUX_PID_NS_H
4 #include <linux/sched.h>
5 #include <linux/mm.h>
6 #include <linux/threads.h>
7 #include <linux/pid.h>
8 #include <linux/nsproxy.h>
9 #include <linux/kref.h>
11 struct pidmap {
12 atomic_t nr_free;
13 void *page;
16 #define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
18 struct pid_namespace {
19 struct kref kref;
20 struct pidmap pidmap[PIDMAP_ENTRIES];
21 int last_pid;
22 struct task_struct *child_reaper;
23 struct kmem_cache *pid_cachep;
24 int level;
25 struct pid_namespace *parent;
28 extern struct pid_namespace init_pid_ns;
30 static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
32 kref_get(&ns->kref);
33 return ns;
36 extern struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *ns);
37 extern void free_pid_ns(struct kref *kref);
39 static inline void put_pid_ns(struct pid_namespace *ns)
41 kref_put(&ns->kref, free_pid_ns);
44 static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk)
46 return tsk->nsproxy->pid_ns;
49 static inline struct task_struct *task_child_reaper(struct task_struct *tsk)
51 return init_pid_ns.child_reaper;
54 #endif /* _LINUX_PID_NS_H */