Home | History | Annotate | Download | only in tmpfs

Lines Matching refs:vpp

303 tmpfs_root(struct mount *mp, int lktype, vnode_t **vpp)
308 error = vcache_get(mp, &node, sizeof(node), vpp);
311 error = vn_lock(*vpp, lktype);
313 vrele(*vpp);
314 *vpp = NULL;
322 tmpfs_vget(struct mount *mp, ino_t ino, int lktype, vnode_t **vpp)
329 tmpfs_fhtovp(struct mount *mp, struct fid *fhp, int lktype, vnode_t **vpp)
354 error = vcache_get(mp, &node, sizeof(node), vpp);
362 error = vn_lock(*vpp, lktype);
364 vrele(*vpp);
365 *vpp = NULL;
369 vput(*vpp);
370 *vpp = NULL;