Home
last modified time | relevance | path

Searched refs:mnt_op (Results 1 – 5 of 5) sorted by relevance

/freebsd-head/sys/sys/
HDmount.h233 struct vfsops *mnt_op; /* operations on fs */ member
853 _rc = (*(MP)->mnt_op->vfs_mount)(MP); \
860 _rc = (*(MP)->mnt_op->vfs_unmount)(MP, FORCE); \
866 _rc = (*(MP)->mnt_op->vfs_root)(MP, FLAGS, VPP); \
872 _rc = (*(MP)->mnt_op->vfs_cachedroot)(MP, FLAGS, VPP); \
878 _rc = (*(MP)->mnt_op->vfs_quotactl)(MP, C, U, A, MP_BUSY); \
890 _rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \
896 _rc = (*(MP)->mnt_op->vfs_vget)(MP, INO, FLAGS, VPP); \
902 _rc = (*(MP)->mnt_op->vfs_fhtovp)(MP, FIDP, FLAGS, VPP); \
908 _rc = (*(MP)->mnt_op->vfs_checkexp)(MP, NAM, EXFLG, CRED, NUMSEC,\
[all …]
/freebsd-head/sys/kern/
HDvfs_subr.c1368 vnlru_free_impl(int count, struct vfsops *mnt_op, struct vnode *mvp, bool isvnlru) in vnlru_free_impl() argument
1421 if (mnt_op != NULL && (mp = vp->v_mount) != NULL && in vnlru_free_impl()
1422 mp->mnt_op != mnt_op) { in vnlru_free_impl()
1500 vnlru_free_vfsops(int count, struct vfsops *mnt_op, struct vnode *mvp) in vnlru_free_vfsops() argument
1503 MPASS(mnt_op != NULL); in vnlru_free_vfsops()
1507 vnlru_free_impl(count, mnt_op, mvp, true); in vnlru_free_vfsops()
HDvfs_mount.c674 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()
HDkern_lockf.c2563 error = mp->mnt_op->vfs_report_lockf(mp, sb); in sysctl_kern_lockf_run()
/freebsd-head/sys/ufs/ffs/
HDffs_vfsops.c2439 if (mp->mnt_op == &ufs_vfsops) in ffs_own_mount()