summaryrefslogtreecommitdiffstats
path: root/include/linux/ns_common.h
diff options
context:
space:
mode:
authorAl Viro2014-11-01 07:32:53 +0100
committerAl Viro2014-12-04 20:34:47 +0100
commit33c429405a2c8d9e42afb9fee88a63cfb2de1e98 (patch)
treed2ffe096cd36852049b844c8befd1ba0ba6cf18c /include/linux/ns_common.h
parentnew helpers: ns_alloc_inum/ns_free_inum (diff)
downloadkernel-qcow2-linux-33c429405a2c8d9e42afb9fee88a63cfb2de1e98.tar.gz
kernel-qcow2-linux-33c429405a2c8d9e42afb9fee88a63cfb2de1e98.tar.xz
kernel-qcow2-linux-33c429405a2c8d9e42afb9fee88a63cfb2de1e98.zip
copy address of proc_ns_ops into ns_common
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/ns_common.h')
-rw-r--r--include/linux/ns_common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/ns_common.h b/include/linux/ns_common.h
index e7db1cd54047..ce23cf4bbe69 100644
--- a/include/linux/ns_common.h
+++ b/include/linux/ns_common.h
@@ -1,7 +1,10 @@
#ifndef _LINUX_NS_COMMON_H
#define _LINUX_NS_COMMON_H
+struct proc_ns_operations;
+
struct ns_common {
+ const struct proc_ns_operations *ops;
unsigned int inum;
};