xfs_vfsops.h 652 B

12345678910111213141516171819202122
  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_root(struct xfs_mount *mp, bhv_vnode_t **vpp);
  15. int xfs_sync(struct xfs_mount *mp, int flags);
  16. void xfs_do_force_shutdown(struct xfs_mount *mp, int flags, char *fname,
  17. int lnnum);
  18. void xfs_attr_quiesce(struct xfs_mount *mp);
  19. #endif /* _XFS_VFSOPS_H */