2014-10-31 22:56:04 -04:00
|
|
|
#ifndef _LINUX_NS_COMMON_H
|
|
|
|
#define _LINUX_NS_COMMON_H
|
|
|
|
|
2014-11-01 02:32:53 -04:00
|
|
|
struct proc_ns_operations;
|
|
|
|
|
2014-10-31 22:56:04 -04:00
|
|
|
struct ns_common {
|
2014-11-01 02:32:53 -04:00
|
|
|
const struct proc_ns_operations *ops;
|
2014-10-31 22:56:04 -04:00
|
|
|
unsigned int inum;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|