[PATCH] jbd2: sector_t conversion
[pandora-kernel.git] / include / linux / nsproxy.h
index 7bdebfa..f6baecd 100644 (file)
@@ -4,6 +4,10 @@
 #include <linux/spinlock.h>
 #include <linux/sched.h>
 
+struct namespace;
+struct uts_namespace;
+struct ipc_namespace;
+
 /*
  * A structure to contain pointers to all per-process
  * namespaces - fs (mount), uts, network, sysvipc, etc.
@@ -19,6 +23,9 @@
 struct nsproxy {
        atomic_t count;
        spinlock_t nslock;
+       struct uts_namespace *uts_ns;
+       struct ipc_namespace *ipc_ns;
+       struct namespace *namespace;
 };
 extern struct nsproxy init_nsproxy;