xfs_vfsops.h 597 B

123456789101112131415161718192021
  1. #ifndef _XFS_VFSOPS_H
  2. #define _XFS_VFSOPS_H 1
  3. struct cred;
  4. struct xfs_fid;
  5. struct inode;
  6. struct kstatfs;
  7. struct xfs_mount;
  8. struct xfs_mount_args;
  9. int xfs_mount(struct xfs_mount *mp, struct xfs_mount_args *args,
  10. struct cred *credp);
  11. int xfs_unmount(struct xfs_mount *mp, int flags, struct cred *credp);
  12. int xfs_mntupdate(struct xfs_mount *mp, int *flags,
  13. struct xfs_mount_args *args);
  14. int xfs_sync(struct xfs_mount *mp, int flags);
  15. void xfs_do_force_shutdown(struct xfs_mount *mp, int flags, char *fname,
  16. int lnnum);
  17. void xfs_attr_quiesce(struct xfs_mount *mp);
  18. #endif /* _XFS_VFSOPS_H */