Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LINUX_NS_COMMON_H
0003 #define _LINUX_NS_COMMON_H
0004 
0005 #include <linux/refcount.h>
0006 
0007 struct proc_ns_operations;
0008 
0009 struct ns_common {
0010     atomic_long_t stashed;
0011     const struct proc_ns_operations *ops;
0012     unsigned int inum;
0013     refcount_t count;
0014 };
0015 
0016 #endif