blob: ce23cf4bbe6902d17e0a920de2e4a231e7176ee7 [file] [log] [blame]
Al Viro435d5f42014-10-31 22:56:04 -04001#ifndef _LINUX_NS_COMMON_H
2#define _LINUX_NS_COMMON_H
3
Al Viro33c42942014-11-01 02:32:53 -04004struct proc_ns_operations;
5
Al Viro435d5f42014-10-31 22:56:04 -04006struct ns_common {
Al Viro33c42942014-11-01 02:32:53 -04007 const struct proc_ns_operations *ops;
Al Viro435d5f42014-10-31 22:56:04 -04008 unsigned int inum;
9};
10
11#endif