ns_common.h 235 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_NS_COMMON_H
  3. #define _LINUX_NS_COMMON_H
  4. struct proc_ns_operations;
  5. struct ns_common {
  6. atomic_long_t stashed;
  7. const struct proc_ns_operations *ops;
  8. unsigned int inum;
  9. };
  10. #endif