]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/pid_namespace.h
[PATCH] use current->nsproxy->pid_ns
[mirror_ubuntu-bionic-kernel.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>
7#include <linux/pid.h>
9a575a92
CLG
8#include <linux/nsproxy.h>
9#include <linux/kref.h>
aa5a6662
SB
10
11struct pidmap {
12 atomic_t nr_free;
13 void *page;
14};
15
16#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
17
61a58c6c 18struct pid_namespace {
9a575a92
CLG
19 struct kref kref;
20 struct pidmap pidmap[PIDMAP_ENTRIES];
21 int last_pid;
3fbc9648
SB
22};
23
61a58c6c 24extern struct pid_namespace init_pid_ns;
3fbc9648 25
9a575a92
CLG
26static inline void get_pid_ns(struct pid_namespace *ns)
27{
28 kref_get(&ns->kref);
29}
30
31extern int copy_pid_ns(int flags, struct task_struct *tsk);
32extern void free_pid_ns(struct kref *kref);
33
34static inline void put_pid_ns(struct pid_namespace *ns)
35{
36 kref_put(&ns->kref, free_pid_ns);
37}
38
61a58c6c 39#endif /* _LINUX_PID_NS_H */