vmstat: fix section mismatch warning
[deliverable/linux.git] / include / linux / pid_namespace.h
CommitLineData
61a58c6c
SB
1#ifndef _LINUX_PID_NS_H
2#define _LINUX_PID_NS_H
aa5a6662
SB
3
4#include <linux/sched.h>
5#include <linux/mm.h>
6#include <linux/threads.h>
9a575a92
CLG
7#include <linux/nsproxy.h>
8#include <linux/kref.h>
aa5a6662
SB
9
10struct pidmap {
11 atomic_t nr_free;
12 void *page;
13};
14
15#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
16
61a58c6c 17struct pid_namespace {
9a575a92
CLG
18 struct kref kref;
19 struct pidmap pidmap[PIDMAP_ENTRIES];
20 int last_pid;
84d73786 21 struct task_struct *child_reaper;
baf8f0f8 22 struct kmem_cache *pid_cachep;
faacbfd3
PE
23 int level;
24 struct pid_namespace *parent;
07543f5c
PE
25#ifdef CONFIG_PROC_FS
26 struct vfsmount *proc_mnt;
27#endif
3fbc9648
SB
28};
29
61a58c6c 30extern struct pid_namespace init_pid_ns;
3fbc9648 31
a05f7b15 32static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns)
9a575a92 33{
b461cc03
PE
34 if (ns != &init_pid_ns)
35 kref_get(&ns->kref);
a05f7b15 36 return ns;
9a575a92
CLG
37}
38
213dd266 39extern struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *ns);
9a575a92
CLG
40extern void free_pid_ns(struct kref *kref);
41
42static inline void put_pid_ns(struct pid_namespace *ns)
43{
b461cc03
PE
44 if (ns != &init_pid_ns)
45 kref_put(&ns->kref, free_pid_ns);
9a575a92
CLG
46}
47
2894d650
SB
48static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk)
49{
50 return tsk->nsproxy->pid_ns;
51}
52
88f21d81 53static inline struct task_struct *task_child_reaper(struct task_struct *tsk)
84d73786 54{
b461cc03
PE
55 BUG_ON(tsk != current);
56 return tsk->nsproxy->pid_ns->child_reaper;
84d73786
SB
57}
58
61a58c6c 59#endif /* _LINUX_PID_NS_H */
This page took 0.200935 seconds and 5 git commands to generate.