ns_common.h 283 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_NS_COMMON_H
  3. #define _LINUX_NS_COMMON_H
  4. #include <linux/refcount.h>
  5. struct proc_ns_operations;
  6. struct ns_common {
  7. atomic_long_t stashed;
  8. const struct proc_ns_operations *ops;
  9. unsigned int inum;
  10. refcount_t count;
  11. };
  12. #endif