Lines Matching refs:vp

460 	vnode_t *vp;  in gfs_file_create()  local
466 vp = vn_alloc(KM_SLEEP); in gfs_file_create()
471 fp->gfs_vnode = vp; in gfs_file_create()
473 vp->v_data = fp; in gfs_file_create()
480 vn_setops(vp, ops); in gfs_file_create()
482 VN_SET_VFS_TYPE_DEV(vp, pvp->v_vfsp, VREG, 0); in gfs_file_create()
486 return (vp); in gfs_file_create()
519 vnode_t *vp; in gfs_dir_create() local
523 vp = gfs_file_create(struct_size, pvp, ops); in gfs_dir_create()
524 vp->v_type = VDIR; in gfs_dir_create()
526 dp = vp->v_data; in gfs_dir_create()
546 return (vp); in gfs_dir_create()
560 vnode_t *vp = gfs_dir_create(size, NULL, ops, entries, inode_cb, in gfs_root_create() local
564 ((gfs_file_t *)vp->v_data)->gfs_ino = ino; in gfs_root_create()
567 VN_SET_VFS_TYPE_DEV(vp, vfsp, VDIR, 0); in gfs_root_create()
568 vp->v_flag |= VROOT | VNOCACHE | VNOMAP | VNOSWAP | VNOMOUNT; in gfs_root_create()
570 return (vp); in gfs_root_create()
582 vnode_t *vp = gfs_file_create(size, NULL, ops); in gfs_root_create_file() local
584 ((gfs_file_t *)vp->v_data)->gfs_ino = ino; in gfs_root_create_file()
587 VN_SET_VFS_TYPE_DEV(vp, vfsp, VREG, 0); in gfs_root_create_file()
588 vp->v_flag |= VROOT | VNOCACHE | VNOMAP | VNOSWAP | VNOMOUNT; in gfs_root_create_file()
590 return (vp); in gfs_root_create_file()
604 gfs_file_inactive(vnode_t *vp) in gfs_file_inactive() argument
608 gfs_file_t *fp = vp->v_data; in gfs_file_inactive()
612 if (fp->gfs_parent == NULL || (vp->v_flag & V_XATTRDIR)) in gfs_file_inactive()
628 if (ge->gfse_vnode == vp) in gfs_file_inactive()
638 if (vp->v_flag & V_XATTRDIR) { in gfs_file_inactive()
641 mutex_enter(&vp->v_lock); in gfs_file_inactive()
642 if (vp->v_count == 1) { in gfs_file_inactive()
646 data = vp->v_data; in gfs_file_inactive()
654 if (vp->v_flag & V_XATTRDIR) { in gfs_file_inactive()
658 mutex_exit(&vp->v_lock); in gfs_file_inactive()
669 ASSERT(vp->v_vfsp != NULL); in gfs_file_inactive()
670 VFS_RELE(vp->v_vfsp); in gfs_file_inactive()
672 vn_free(vp); in gfs_file_inactive()
674 vp->v_count--; in gfs_file_inactive()
676 mutex_exit(&vp->v_lock); in gfs_file_inactive()
677 if (vp->v_flag & V_XATTRDIR) { in gfs_file_inactive()
693 gfs_dir_inactive(vnode_t *vp) in gfs_dir_inactive() argument
697 ASSERT(vp->v_type == VDIR); in gfs_dir_inactive()
699 if ((dp = gfs_file_inactive(vp)) != NULL) { in gfs_dir_inactive()
802 vnode_t *vp = NULL; in gfs_dir_lookup_static() local
820 vp = ge->gfse_vnode; in gfs_dir_lookup_static()
821 VN_HOLD(vp); in gfs_dir_lookup_static()
834 vp = ge->gfse_ctor(dvp); in gfs_dir_lookup_static()
837 ((gfs_file_t *)vp->v_data)->gfs_index = i; in gfs_dir_lookup_static()
840 ((gfs_file_t *)vp->v_data)->gfs_ino = in gfs_dir_lookup_static()
845 ge->gfse_vnode = vp; in gfs_dir_lookup_static()
855 vnode_t *oldvp = vp; in gfs_dir_lookup_static()
856 vp = ge->gfse_vnode; in gfs_dir_lookup_static()
857 VN_HOLD(vp); in gfs_dir_lookup_static()
868 if (vp == NULL) in gfs_dir_lookup_static()
872 *vpp = vp; in gfs_dir_lookup_static()
895 vnode_t *vp = NULL; in gfs_dir_lookup() local
913 error = gfs_dir_lookup_static(compare, dp, nm, dvp, &idx, &vp, realpnp); in gfs_dir_lookup()
915 if (vp && casecheck) { in gfs_dir_lookup()
931 &dynvp, cr, flags, direntflags, vp ? NULL : realpnp); in gfs_dir_lookup()
933 if (vp && dynvp) { in gfs_dir_lookup()
938 } else if (vp == NULL) { in gfs_dir_lookup()
939 vp = dynvp; in gfs_dir_lookup()
943 VN_RELE(vp); in gfs_dir_lookup()
944 vp = NULL; in gfs_dir_lookup()
950 *vpp = vp; in gfs_dir_lookup()
1079 gfs_vop_readdir(vnode_t *vp, uio_t *uiop, cred_t *cr, int *eofp, in gfs_vop_readdir() argument
1082 return (gfs_dir_readdir(vp, uiop, eofp, NULL, cr, ct, flags)); in gfs_vop_readdir()
1097 gfs_vop_map(vnode_t *vp, offset_t off, struct as *as, caddr_t *addrp, in gfs_vop_map() argument
1111 if (vp->v_flag & VNOMAP) in gfs_vop_map()
1117 if (vp->v_type != VREG) in gfs_vop_map()
1143 rv = vn_rdwr(UIO_READ, vp, *addrp, len, off, UIO_USERSPACE, in gfs_vop_map()
1166 gfs_vop_inactive(vnode_t *vp, cred_t *cr, caller_context_t *ct) in gfs_vop_inactive() argument
1168 gfs_file_t *fp = vp->v_data; in gfs_vop_inactive()
1172 data = gfs_dir_inactive(vp); in gfs_vop_inactive()
1174 data = gfs_file_inactive(vp); in gfs_vop_inactive()