mnt_namespace.h 508 B

123456789101112131415161718
  1. #ifndef _NAMESPACE_H_
  2. #define _NAMESPACE_H_
  3. #ifdef __KERNEL__
  4. struct mnt_namespace;
  5. struct fs_struct;
  6. struct user_namespace;
  7. extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
  8. struct user_namespace *, struct fs_struct *);
  9. extern void put_mnt_ns(struct mnt_namespace *ns);
  10. extern const struct file_operations proc_mounts_operations;
  11. extern const struct file_operations proc_mountinfo_operations;
  12. extern const struct file_operations proc_mountstats_operations;
  13. #endif
  14. #endif