xfs_vfsops.h 729 B

1234567891011121314151617181920212223
  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. int xfs_vget(struct xfs_mount *mp, bhv_vnode_t **vpp, struct xfs_fid *xfid);
  17. void xfs_do_force_shutdown(struct xfs_mount *mp, int flags, char *fname,
  18. int lnnum);
  19. void xfs_attr_quiesce(struct xfs_mount *mp);
  20. #endif /* _XFS_VFSOPS_H */