ns_common.h 196 B

123456789101112
  1. #ifndef _LINUX_NS_COMMON_H
  2. #define _LINUX_NS_COMMON_H
  3. struct proc_ns_operations;
  4. struct ns_common {
  5. atomic_long_t stashed;
  6. const struct proc_ns_operations *ops;
  7. unsigned int inum;
  8. };
  9. #endif