Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 1 | #ifndef _LINUX_NS_COMMON_H |
2 | #define _LINUX_NS_COMMON_H | ||||
3 | |||||
Al Viro | 33c4294 | 2014-11-01 02:32:53 -0400 | [diff] [blame] | 4 | struct proc_ns_operations; |
5 | |||||
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 6 | struct ns_common { |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame] | 7 | atomic_long_t stashed; |
Al Viro | 33c4294 | 2014-11-01 02:32:53 -0400 | [diff] [blame] | 8 | const struct proc_ns_operations *ops; |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 9 | unsigned int inum; |
10 | }; | ||||
11 | |||||
12 | #endif |