Lines Matching refs:vfsops_t
323 fs_copyfsops(const fs_operation_def_t *template, vfsops_t *actual, in fs_copyfsops()
327 VFSNAME_MOUNT, offsetof(vfsops_t, vfs_mount), in fs_copyfsops()
330 VFSNAME_UNMOUNT, offsetof(vfsops_t, vfs_unmount), in fs_copyfsops()
333 VFSNAME_ROOT, offsetof(vfsops_t, vfs_root), in fs_copyfsops()
336 VFSNAME_STATVFS, offsetof(vfsops_t, vfs_statvfs), in fs_copyfsops()
339 VFSNAME_SYNC, offsetof(vfsops_t, vfs_sync), in fs_copyfsops()
343 VFSNAME_VGET, offsetof(vfsops_t, vfs_vget), in fs_copyfsops()
346 VFSNAME_MOUNTROOT, offsetof(vfsops_t, vfs_mountroot), in fs_copyfsops()
349 VFSNAME_FREEVFS, offsetof(vfsops_t, vfs_freevfs), in fs_copyfsops()
353 VFSNAME_VNSTATE, offsetof(vfsops_t, vfs_vnstate), in fs_copyfsops()
371 vfs_setfsops(int fstype, const fs_operation_def_t *template, vfsops_t **actual) in vfs_setfsops()
408 vfs_makefsops(const fs_operation_def_t *template, vfsops_t **actual) in vfs_makefsops()
413 *actual = (vfsops_t *)kmem_alloc(sizeof (vfsops_t), KM_SLEEP); in vfs_makefsops()
417 kmem_free(*actual, sizeof (vfsops_t)); in vfs_makefsops()
431 vfs_freevfsops(vfsops_t *vfsops) in vfs_freevfsops()
433 kmem_free(vfsops, sizeof (vfsops_t)); in vfs_freevfsops()
468 vfs_setops(vfs_t *vfsp, vfsops_t *vfsops) in vfs_setops()
470 vfsops_t *op; in vfs_setops()
485 vfsops_t *
488 vfsops_t *op; in vfs_getops()
506 vfs_matchops(vfs_t *vfsp, vfsops_t *vfsops) in vfs_matchops()
526 vfs_init(vfs_t *vfsp, vfsops_t *op, void *data) in vfs_init()
1167 vfsops_t *vfsops; in domount()
3948 vfs_opsinuse(vfsops_t *ops) in vfs_opsinuse()
4106 vfs_getvfsswbyvfsops(vfsops_t *vfsops) in vfs_getvfsswbyvfsops()
4316 vfsops_t *EIO_vfsops;