mnt_namespace.h 460 B

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