Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 2 | #ifndef _LINUX_NS_COMMON_H |
3 | #define _LINUX_NS_COMMON_H | ||||
4 | |||||
Al Viro | 33c4294 | 2014-11-01 02:32:53 -0400 | [diff] [blame] | 5 | struct proc_ns_operations; |
6 | |||||
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 7 | struct ns_common { |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame] | 8 | atomic_long_t stashed; |
Al Viro | 33c4294 | 2014-11-01 02:32:53 -0400 | [diff] [blame] | 9 | const struct proc_ns_operations *ops; |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 10 | unsigned int inum; |
11 | }; | ||||
12 | |||||
13 | #endif |