Home
last modified time | relevance | path

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

/freebsd/sys/sys/
H A Dmount.h233 struct vfsops *mnt_op; /* operations on fs */ member
849 _rc = (*(MP)->mnt_op->vfs_mount)(MP); \
856 _rc = (*(MP)->mnt_op->vfs_unmount)(MP, FORCE); \
862 _rc = (*(MP)->mnt_op->vfs_root)(MP, FLAGS, VPP); \
886 _rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \
917 _rc = (*(MP)->mnt_op->vfs_sysctl)(MP, OP, REQ); \
921 if (*(MP)->mnt_op->vfs_susp_clean != NULL) { \
922 (*(MP)->mnt_op->vfs_susp_clean)(MP); \
933 if (*(MP)->mnt_op->vfs_unlink_lowervp != NULL) { \
939 if (*(MP)->mnt_op->vfs_purge != NULL) { \
[all …]
/freebsd/sys/kern/
H A Dvfs_subr.c1324 vnlru_free_impl(int count, struct vfsops *mnt_op, struct vnode *mvp, bool isvnlru) in vnlru_free_impl() argument
1377 if (mnt_op != NULL && (mp = vp->v_mount) != NULL && in vnlru_free_impl()
1378 mp->mnt_op != mnt_op) { in vnlru_free_impl()
1456 vnlru_free_vfsops(int count, struct vfsops *mnt_op, struct vnode *mvp) in vnlru_free_vfsops() argument
1459 MPASS(mnt_op != NULL); in vnlru_free_vfsops()
1463 vnlru_free_impl(count, mnt_op, mvp, true); in vnlru_free_vfsops()
H A Dvfs_mount.c674 mp->mnt_op = NULL; in vfs_mount_alloc()
686 mp->mnt_op = vfsp->vfc_vfsops; in vfs_mount_alloc()
2761 return (mp->mnt_op->vfs_statfs(mp, sbp)); in __vfs_statfs()
H A Dkern_lockf.c2563 error = mp->mnt_op->vfs_report_lockf(mp, sb); in sysctl_kern_lockf_run()
/freebsd/sys/ufs/ffs/
H A Dffs_vfsops.c2582 if (mp->mnt_op == &ufs_vfsops) in ffs_own_mount()