aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pspace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/pspace.h')
-rw-r--r--include/linux/pspace.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/linux/pspace.h b/include/linux/pspace.h
new file mode 100644
index 00000000000000..91d48b8b2d9981
--- /dev/null
+++ b/include/linux/pspace.h
@@ -0,0 +1,23 @@
+#ifndef _LINUX_PSPACE_H
+#define _LINUX_PSPACE_H
+
+#include <linux/sched.h>
+#include <linux/mm.h>
+#include <linux/threads.h>
+#include <linux/pid.h>
+
+struct pidmap {
+ atomic_t nr_free;
+ void *page;
+};
+
+#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
+
+struct pspace {
+ struct pidmap pidmap[PIDMAP_ENTRIES];
+ int last_pid;
+};
+
+extern struct pspace init_pspace;
+
+#endif /* _LINUX_PSPACE_H */