mnt_op            207 kern/vfs_subr.c 	mp->mnt_op = vfsp->vfc_vfsops;
mnt_op            244 kern/vfs_syscalls.c 	mp->mnt_op = vfsp->vfc_vfsops;
mnt_op            216 ntfs/ntfs_vfsops.c 		mp->mnt_op->vfs_refcount--;
mnt_op            355 sys/mount.h    	const struct vfsops *mnt_op;		/* operations on fs */
mnt_op            497 sys/mount.h    	(*(MP)->mnt_op->vfs_mount)(MP, PATH, DATA, NDP, P)
mnt_op            498 sys/mount.h    #define VFS_START(MP, FLAGS, P)	  (*(MP)->mnt_op->vfs_start)(MP, FLAGS, P)
mnt_op            499 sys/mount.h    #define VFS_UNMOUNT(MP, FORCE, P) (*(MP)->mnt_op->vfs_unmount)(MP, FORCE, P)
mnt_op            500 sys/mount.h    #define VFS_ROOT(MP, VPP)	  (*(MP)->mnt_op->vfs_root)(MP, VPP)
mnt_op            501 sys/mount.h    #define VFS_QUOTACTL(MP,C,U,A,P)  (*(MP)->mnt_op->vfs_quotactl)(MP, C, U, A, P)
mnt_op            502 sys/mount.h    #define VFS_STATFS(MP, SBP, P)	  (*(MP)->mnt_op->vfs_statfs)(MP, SBP, P)
mnt_op            503 sys/mount.h    #define VFS_SYNC(MP, WAIT, C, P)  (*(MP)->mnt_op->vfs_sync)(MP, WAIT, C, P)
mnt_op            504 sys/mount.h    #define VFS_VGET(MP, INO, VPP)	  (*(MP)->mnt_op->vfs_vget)(MP, INO, VPP)
mnt_op            506 sys/mount.h    	(*(MP)->mnt_op->vfs_fhtovp)(MP, FIDP, VPP)
mnt_op            507 sys/mount.h    #define	VFS_VPTOFH(VP, FIDP)	  (*(VP)->v_mount->mnt_op->vfs_vptofh)(VP, FIDP)
mnt_op            509 sys/mount.h    	(*(MP)->mnt_op->vfs_checkexp)(MP, NAM, EXFLG, CRED)