Home
last modified time | relevance | path

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

/dragonfly/sys/kern/
HDvfs_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()
166 error = (mp->mnt_op->vfs_quotactl)(mp, cmds, uid, arg, cred); in vfs_quotactl()
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()
[all …]
HDvfs_quota.c133 mp->mnt_op->vfs_account = vfs_stdaccount; in vq_init()
HDvfs_mount.c387 mp->mnt_op = ops; in mount_init()
HDvfs_vnops.c475 if (mp->mnt_op->vfs_modifying != vfs_stdmodifying) in ncp_writechk()
/dragonfly/sys/sys/
HDmount.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)