nsfs.h 333 B

12345678910111213
  1. #ifndef __LINUX_NSFS_H
  2. #define __LINUX_NSFS_H
  3. #include <linux/ioctl.h>
  4. #define NSIO 0xb7
  5. /* Returns a file descriptor that refers to an owning user namespace */
  6. #define NS_GET_USERNS _IO(NSIO, 0x1)
  7. /* Returns a file descriptor that refers to a parent namespace */
  8. #define NS_GET_PARENT _IO(NSIO, 0x2)
  9. #endif /* __LINUX_NSFS_H */