Lines Matching defs:vp
131 filecore_loadvnode(struct mount *mp, struct vnode *vp,
146 ip->i_vnode = vp;
187 vp->v_tag = VT_FILECORE;
188 vp->v_op = filecore_vnodeop_p;
189 vp->v_data = ip;
191 vp->v_type = VDIR;
193 vp->v_type = VREG;
195 vp->v_vflag |= VV_ROOT;
196 genfs_node_init(vp, &filecore_genfsops);
202 uvm_vnp_setsize(vp, ip->i_size);
218 struct vnode *vp = ap->a_vp;
219 struct filecore_node *ip = VTOI(vp);
242 struct vnode *vp = ap->a_vp;
243 struct filecore_node *ip = VTOI(vp);
245 VOP_UNLOCK(vp);
254 genfs_node_destroy(vp);
255 pool_put(&filecore_node_pool, vp->v_data);
256 vp->v_data = NULL;