Lines Matching refs:vnodeops_t
2264 vnodeops_t **actual) /* Return the vnodeops */ in vn_make_ops()
2269 *actual = (vnodeops_t *)kmem_alloc(sizeof (vnodeops_t), KM_SLEEP); in vn_make_ops()
2275 kmem_free(*actual, sizeof (vnodeops_t)); in vn_make_ops()
2291 vn_freevnodeops(vnodeops_t *vnops) in vn_freevnodeops()
2293 kmem_free(vnops, sizeof (vnodeops_t)); in vn_freevnodeops()
2856 vn_setops(vnode_t *vp, vnodeops_t *vnodeops) in vn_setops()
2858 vnodeops_t *op; in vn_setops()
2882 vnodeops_t *
2885 vnodeops_t *op; in vn_getops()
2903 vn_matchops(vnode_t *vp, vnodeops_t *vnodeops) in vn_matchops()
2921 vnodeops_t *vop = vn_getops(vp); in vn_matchopval()