blob: 85a5c8c16be9a6cda644a09db8b43cd05a011871 [file] [log] [blame]
Al Viro435d5f42014-10-31 22:56:04 -04001#ifndef _LINUX_NS_COMMON_H
2#define _LINUX_NS_COMMON_H
3
Al Viro33c42942014-11-01 02:32:53 -04004struct proc_ns_operations;
5
Al Viro435d5f42014-10-31 22:56:04 -04006struct ns_common {
Al Viroe149ed22014-11-01 10:57:28 -04007 atomic_long_t stashed;
Al Viro33c42942014-11-01 02:32:53 -04008 const struct proc_ns_operations *ops;
Al Viro435d5f42014-10-31 22:56:04 -04009 unsigned int inum;
10};
11
12#endif