Home
last modified time | relevance | path

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

/dragonfly/sys/kern/
H A Dvfs_vfsops.c92 error = (mp->mnt_op->vfs_mount)(mp, path, data, cred); in vfs_mount()
108 error = (mp->mnt_op->vfs_start)(mp, flags); in vfs_start()
133 error = (mp->mnt_op->vfs_unmount)(mp, mntflags); in vfs_unmount()
150 error = (mp->mnt_op->vfs_root)(mp, vpp); in vfs_root()
181 error = (mp->mnt_op->vfs_statfs)(mp, sbp, cred); in vfs_statfs()
196 error = (mp->mnt_op->vfs_statvfs)(mp, sbp, cred); in vfs_statvfs()
211 error = (mp->mnt_op->vfs_sync)(mp, waitfor); in vfs_sync()
226 error = (mp->mnt_op->vfs_vget)(mp, dvp, ino, vpp); in vfs_vget()
242 error = (mp->mnt_op->vfs_fhtovp)(mp, rootvp, fhp, vpp); in vfs_fhtovp()
273 error = (vp->v_mount->mnt_op->vfs_vptofh)(vp, fhp); in vfs_vptofh()
[all …]
H A Dvfs_quota.c133 mp->mnt_op->vfs_account = vfs_stdaccount; in vq_init()
H A Dvfs_mount.c387 mp->mnt_op = ops; in mount_init()
H A Dvfs_vnops.c471 if (mp->mnt_op->vfs_modifying != vfs_stdmodifying) in ncp_writechk()
/dragonfly/sys/sys/
H A Dmount.h218 struct vfsops *mnt_op; /* operations on fs */ member
658 if ((MP->mnt_op->vfs_account != NULL) && (D != 0)) \
659 MP->mnt_op->vfs_account(MP, U, G, D);
661 if (vfs_quota_enabled && MP->mnt_op->vfs_acinit != NULL) \
662 ERROR = MP->mnt_op->vfs_acinit(MP);
664 if (vfs_quota_enabled && MP->mnt_op->vfs_acdone != NULL) \
665 MP->mnt_op->vfs_acdone(MP);
667 MP->mnt_op->vfs_ncpgen_set(MP, NCP)
669 MP->mnt_op->vfs_ncpgen_test(MP, NCP)
671 MP->mnt_op->vfs_modifying(MP)