Lines Matching full:vpp
267 struct vnode **vpp)
279 *vpp = NULLVP;
285 *vpp = NULLVP;
288 *vpp = nvp;
289 vnode_create_vobject(*vpp, VNODE_NO_SIZE, curthread);
533 fuse_vfsop_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp)
555 error = fuse_internal_get_cached_vnode(mp, ino, flags, vpp);
556 if (error || *vpp != NULL)
578 error = fuse_vnode_get(mp, feo, nodeid, NULL, vpp, NULL, vtyp);
581 fvdat = VTOFUD(*vpp);
588 fuse_internal_cache_attrs(*vpp, &feo->attr, feo->attr_valid,
599 fuse_vfsop_root(struct mount *mp, int lkflags, struct vnode **vpp)
607 *vpp = data->vroot;
609 err = fuse_vnode_get(mp, NULL, FUSE_ROOT_ID, NULL, vpp, NULL,
613 MPASS(data->vroot == NULL || data->vroot == *vpp);
617 data->vroot = *vpp;
619 vref(*vpp);
620 } else if (data->vroot != *vpp) {
624 vput(*vpp);
625 vrecycle(*vpp);
626 *vpp = data->vroot;