Lines Matching refs:vfsops
439 vfs_freevfsops(vfsops_t *vfsops) in vfs_freevfsops() argument
441 kmem_free(vfsops, sizeof (vfsops_t)); in vfs_freevfsops()
476 vfs_setops(vfs_t *vfsp, vfsops_t *vfsops) in vfs_setops() argument
481 ASSERT(vfsops != NULL); in vfs_setops()
486 atomic_cas_ptr(&vfsp->vfs_op, op, vfsops) == op) { in vfs_setops()
489 fsem_setvfsops(vfsp, vfsops); in vfs_setops()
514 vfs_matchops(vfs_t *vfsp, vfsops_t *vfsops) in vfs_matchops() argument
516 return (vfs_getops(vfsp) == vfsops); in vfs_matchops()
1150 vfsops_t *vfsops; in domount() local
1261 vfsops = &vswp->vsw_vfsops; in domount()
1503 VFS_INIT(vfsp, vfsops, NULL); in domount()
4094 vfs_getvfsswbyvfsops(vfsops_t *vfsops) in vfs_getvfsswbyvfsops() argument
4100 if (ALLOCATED_VFSSW(vswp) && &vswp->vsw_vfsops == vfsops) { in vfs_getvfsswbyvfsops()