blob: 5fbc4000358f15dbd57e9d42ae9c7472c3ea49fa [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Al Viro435d5f42014-10-31 22:56:04 -04002#ifndef _LINUX_NS_COMMON_H
3#define _LINUX_NS_COMMON_H
4
Al Viro33c42942014-11-01 02:32:53 -04005struct proc_ns_operations;
6
Al Viro435d5f42014-10-31 22:56:04 -04007struct ns_common {
Al Viroe149ed22014-11-01 10:57:28 -04008 atomic_long_t stashed;
Al Viro33c42942014-11-01 02:32:53 -04009 const struct proc_ns_operations *ops;
Al Viro435d5f42014-10-31 22:56:04 -040010 unsigned int inum;
11};
12
13#endif