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 | 33c4294 | 2014-11-01 02:32:53 -0400 | [diff] [blame^] | 7 | const struct proc_ns_operations *ops; |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 8 | unsigned int inum; |
9 | }; | ||||
10 | |||||
11 | #endif |