Searched refs:mnt_op (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/sys/ |
H A D | mount.h | 233 struct vfsops *mnt_op; /* operations on fs */ member 851 _rc = (*(MP)->mnt_op->vfs_mount)(MP); \ 858 _rc = (*(MP)->mnt_op->vfs_unmount)(MP, FORCE); \ 864 _rc = (*(MP)->mnt_op->vfs_root)(MP, FLAGS, VPP); \ 870 _rc = (*(MP)->mnt_op->vfs_cachedroot)(MP, FLAGS, VPP); \ 876 _rc = (*(MP)->mnt_op->vfs_quotactl)(MP, C, U, A, MP_BUSY); \ 888 _rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \ 894 _rc = (*(MP)->mnt_op->vfs_vget)(MP, INO, FLAGS, VPP); \ 900 _rc = (*(MP)->mnt_op->vfs_fhtovp)(MP, FIDP, FLAGS, VPP); \ 906 _rc = (*(MP)->mnt_op->vfs_checkexp)(MP, NAM, EXFLG, CRED, NUMSEC,\ [all …]
|
/freebsd/sys/kern/ |
H A D | vfs_subr.c | 1367 vnlru_free_impl(int count, struct vfsops *mnt_op, struct vnode *mvp, bool isvnlru) in vnlru_free_impl() argument 1420 if (mnt_op != NULL && (mp = vp->v_mount) != NULL && in vnlru_free_impl() 1421 mp->mnt_op != mnt_op) { in vnlru_free_impl() 1499 vnlru_free_vfsops(int count, struct vfsops *mnt_op, struct vnode *mvp) in vnlru_free_vfsops() argument 1502 MPASS(mnt_op != NULL); in vnlru_free_vfsops() 1506 vnlru_free_impl(count, mnt_op, mvp, true); in vnlru_free_vfsops()
|
H A D | vfs_mount.c | 674 mp->mnt_op = NULL; in vfs_mount_alloc() 686 mp->mnt_op = vfsp->vfc_vfsops; in vfs_mount_alloc() 2768 return (mp->mnt_op->vfs_statfs(mp, sbp)); in __vfs_statfs()
|
H A D | kern_lockf.c | 2563 error = mp->mnt_op->vfs_report_lockf(mp, sb); in sysctl_kern_lockf_run()
|
/freebsd/sys/ufs/ffs/ |
H A D | ffs_vfsops.c | 2439 if (mp->mnt_op == &ufs_vfsops) in ffs_geom_strategy()
|