Searched refs:vpp (Results 1 - 25 of 91) sorted by relevance

1234

/freebsd-current/sys/fs/fuse/
H A Dfuse_node.c204 struct vnode **vpp)
215 *vpp = NULL;
216 err = vfs_hash_get(mp, fuse_vnode_hash(nodeid), LK_EXCLUSIVE, td, vpp,
221 if (*vpp) {
222 if ((*vpp)->v_type == vtyp) {
224 MPASS((*vpp)->v_data != NULL);
225 MPASS(VTOFUD(*vpp)->nid == nodeid);
237 SDT_PROBE3(fusefs, , node, stale_vnode, *vpp, vtyp,
239 fuse_internal_vnode_disappear(*vpp);
240 vgone(*vpp);
200 fuse_vnode_alloc(struct mount *mp, struct thread *td, uint64_t nodeid, __enum_uint8(vtype) vtyp, struct vnode **vpp) argument
291 fuse_vnode_get(struct mount *mp, struct fuse_entry_out *feo, uint64_t nodeid, struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, __enum_uint8(vtype) vtyp) argument
[all...]
H A Dfuse_vfsops.c267 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) argument
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);
266 fuse_vfsop_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) argument
599 fuse_vfsop_root(struct mount *mp, int lkflags, struct vnode **vpp) argument
[all...]
/freebsd-current/bin/sh/
H A Dvar.c156 struct var **vpp; local
160 if (find_var(ip->text, &vpp, &vp->name_len) != NULL)
162 vp->next = *vpp;
163 *vpp = vp;
171 if (find_var("PS1", &vpp, &vps1.name_len) == NULL) {
172 vps1.next = *vpp;
173 *vpp = &vps1;
318 struct var *vp, **vpp; local
325 vp = find_var(s, &vpp, &nlen);
379 vp->next = *vpp;
546 struct var **vpp; local
591 struct var **vpp; local
647 struct var **vpp; local
748 struct var **vpp; local
881 struct var **vpp; local
939 struct var *vp, **vpp; local
[all...]
/freebsd-current/sys/fs/pseudofs/
H A Dpseudofs_vncache.c116 pfs_vncache_alloc(struct mount *mp, struct vnode **vpp, argument
141 *vpp = vp;
161 error = getnewvnode("pseudofs", mp, &pfs_vnodeops, vpp);
168 (*vpp)->v_data = pvd;
171 (*vpp)->v_vflag = VV_ROOT;
180 (*vpp)->v_type = VDIR;
183 (*vpp)->v_type = VREG;
186 (*vpp)->v_type = VLNK;
198 (*vpp)->v_vflag |= VV_PROCDEP;
199 pvd->pvd_vnode = *vpp;
[all...]
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c133 uint64_t id, struct vnode **vpp)
140 err = vfs_hash_get(mp, (uint32_t)id, flags, curthread, vpp,
147 uint64_t id, struct vnode **vpp)
152 err = vfs_hash_insert(vp, (uint32_t)id, flags, curthread, vpp,
169 struct vnode **vpp)
174 error = sfs_vnode_get(mp, flags, parent_id, id, vpp);
175 if (error != 0 || *vpp != NULL) {
176 KASSERT_IMPLY(error == 0, (*vpp)->v_data != NULL,
184 *vpp = NULL;
194 *vpp
132 sfs_vnode_get(const struct mount *mp, int flags, uint64_t parent_id, uint64_t id, struct vnode **vpp) argument
146 sfs_vnode_insert(struct vnode *vp, int flags, uint64_t parent_id, uint64_t id, struct vnode **vpp) argument
166 sfs_vgetx(struct mount *mp, int flags, uint64_t parent_id, uint64_t id, const char *tag, struct vop_vector *vops, sfs_vnode_setup_fn setup, void *arg, struct vnode **vpp) argument
390 zfsctl_fs_root_vnode(struct mount *mp, void *arg __unused, int flags, struct vnode **vpp) argument
408 zfsctl_root_vnode(struct mount *mp, void *arg __unused, int flags, struct vnode **vpp) argument
421 zfsctl_snapdir_vnode(struct mount *mp, void *arg __unused, int flags, struct vnode **vpp) argument
438 zfsctl_root(zfsvfs_t *zfsvfs, int flags, vnode_t **vpp) argument
638 vnode_t **vpp = ap->a_vpp; local
874 zfsctl_mounted_here(vnode_t **vpp, int flags) argument
930 vnode_t **vpp = ap->a_vpp; local
[all...]
/freebsd-current/sys/kern/
H A Dvfs_hash.c73 struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg)
101 *vpp = vp;
106 *vpp = NULL;
114 struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg)
131 *vpp = vp;
136 *vpp = NULL;
153 struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg)
159 *vpp = NULL;
181 *vpp = vp2;
72 vfs_hash_get(const struct mount *mp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) argument
113 vfs_hash_ref(const struct mount *mp, u_int hash, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) argument
152 vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) argument
H A Dvfs_init.c188 vfs_root_sigdefer(struct mount *mp, int flags, struct vnode **vpp) argument
193 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_root)(mp, flags, vpp);
199 vfs_cachedroot_sigdefer(struct mount *mp, int flags, struct vnode **vpp) argument
204 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_cachedroot)(mp, flags, vpp);
245 vfs_vget_sigdefer(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
250 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_vget)(mp, ino, flags, vpp);
257 struct vnode **vpp)
262 rc = (*mp->mnt_vfc->vfc_vfsops_sd->vfs_fhtovp)(mp, fidp, flags, vpp);
256 vfs_fhtovp_sigdefer(struct mount *mp, struct fid *fidp, int flags, struct vnode **vpp) argument
/freebsd-current/sys/fs/smbfs/
H A Dsmbfs_node.c103 struct smbfattr *fap, struct vnode **vpp)
127 *vpp = vp;
139 vpp, smbfs_vnode_cmp, &sc);
142 if (*vpp) {
143 np = VTOSMB(*vpp);
145 (void)VOP_GETATTR(*vpp, &vattr, td->td_ucred);
152 if (((*vpp)->v_type == VDIR &&
154 ((*vpp)->v_type == VREG &&
156 vgone(*vpp);
157 vput(*vpp);
101 smbfs_node_alloc(struct mount *mp, struct vnode *dvp, const char *dirnm, int dirlen, const char *name, int nmlen, char sep, struct smbfattr *fap, struct vnode **vpp) argument
229 smbfs_nget(struct mount *mp, struct vnode *dvp, const char *name, int nmlen, struct smbfattr *fap, struct vnode **vpp) argument
[all...]
H A Dsmbfs_node.h91 struct smbfattr *fap, struct vnode **vpp);
/freebsd-current/sys/fs/cd9660/
H A Dcd9660_lookup.c57 struct vnode **vpp)
62 return (cd9660_vget_internal(mp, dd_arg->i_ino, lkflags, vpp,
126 struct vnode **vpp = ap->a_vpp; local
133 *vpp = NULL;
323 cache_enter(vdp, *vpp, cnp);
387 *vpp = tdp;
401 *vpp = vdp;
409 *vpp = tdp;
416 cache_enter(vdp, *vpp, cnp);
56 cd9660_ino_alloc(struct mount *mp, void *arg, int lkflags, struct vnode **vpp) argument
H A Dcd9660_vfsops.c558 cd9660_root(struct mount *mp, int flags, struct vnode **vpp) argument
569 return (cd9660_vget_internal(mp, ino, flags, vpp,
605 cd9660_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) argument
620 *vpp = NULLVP;
626 *vpp = NULLVP;
629 *vpp = nvp;
630 vnode_create_vobject(*vpp, ip->i_size, curthread);
640 cd9660_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
649 return (cd9660_vget_internal(mp, ino, flags, vpp,
672 struct vnode **vpp, in
671 cd9660_vget_internal(struct mount *mp, cd_ino_t ino, int flags, struct vnode **vpp, int relocated, struct iso_directory_record *isodir) argument
[all...]
/freebsd-current/sys/fs/nullfs/
H A Dnull_subr.c189 null_nodeget(struct mount *mp, struct vnode *lowervp, struct vnode **vpp) argument
199 *vpp = null_hashget(mp, lowervp);
200 if (*vpp != NULL) {
230 *vpp = null_hashget_locked(mp, lowervp);
231 if (*vpp != NULL) {
263 *vpp = vp;
H A Dnull_vfsops.c299 nullfs_root(struct mount *mp, int flags, struct vnode **vpp) argument
313 *vpp = vp;
396 nullfs_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
403 error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, flags, vpp);
406 return (null_nodeget(mp, *vpp, vpp));
410 nullfs_fhtovp(struct mount *mp, struct fid *fidp, int flags, struct vnode **vpp) argument
415 vpp);
418 return (null_nodeget(mp, *vpp, vpp));
[all...]
H A Dnull.h68 int null_nodeget(struct mount *mp, struct vnode *target, struct vnode **vpp);
/freebsd-current/sys/fs/msdosfs/
H A Dmsdosfs_lookup.c67 struct denode *tdp, struct vnode **vpp)
80 *vpp = NULL;
84 *vpp = vp;
135 msdosfs_lookup_ino(struct vnode *vdp, struct vnode **vpp, struct componentname argument
178 if (vpp != NULL)
179 *vpp = NULL;
439 cache_enter(vdp, *vpp, cnp);
517 *vpp = vdp;
523 return (msdosfs_lookup_checker(pmp, vdp, tdp, vpp));
550 if ((error = msdosfs_lookup_checker(pmp, vdp, tdp, vpp))
66 msdosfs_lookup_checker(struct msdosfsmount *pmp, struct vnode *dvp, struct denode *tdp, struct vnode **vpp) argument
[all...]
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_vfs.c119 mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype, char *fspath, argument
127 ASSERT_VOP_ELOCKED(*vpp, "mount_snapshot");
129 vp = *vpp;
130 *vpp = NULL;
257 *vpp = mvp;
/freebsd-current/sys/fs/fdescfs/
H A Dfdesc_vnops.c140 struct vnode **vpp)
170 *vpp = vp;
199 *vpp = NULLVP;
214 *vpp = NULLVP;
231 *vpp = vp2;
240 *vpp = vp;
284 struct vnode **vpp = ap->a_vpp; local
303 *vpp = dvp;
372 *vpp = fvp;
376 *vpp
139 fdesc_allocvp(fdntype ftype, unsigned fd_fd, int ix, struct mount *mp, struct vnode **vpp) argument
[all...]
H A Dfdesc_vfsops.c168 fdesc_root(struct mount *mp, int flags, struct vnode **vpp) argument
177 *vpp = vp;
/freebsd-current/sys/fs/autofs/
H A Dautofs_vnops.c200 struct vnode **vpp)
203 return (autofs_node_vn(arg, mp, flags, vpp));
209 struct vnode *dvp, *newvp, **vpp; local
217 vpp = ap->a_vpp;
233 anp->an_parent, cnp->cn_lkflags, vpp);
244 *vpp = dvp;
284 error = autofs_node_vn(child, mp, cnp->cn_lkflags, vpp);
644 struct vnode **vpp)
672 *vpp = vp;
705 *vpp
199 autofs_vget_callback(struct mount *mp, void *arg, int flags, struct vnode **vpp) argument
643 autofs_node_vn(struct autofs_node *anp, struct mount *mp, int flags, struct vnode **vpp) argument
[all...]
H A Dautofs_vfsops.c180 autofs_root(struct mount *mp, int flags, struct vnode **vpp) argument
187 error = autofs_node_vn(amp->am_root, mp, flags, vpp);
/freebsd-current/sys/fs/ext2fs/
H A Dext2_vfsops.c1194 ext2_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
1206 error = vfs_hash_get(mp, ino, flags, td, vpp, NULL, NULL);
1207 if (error || *vpp != NULL)
1215 *vpp = NULL;
1230 *vpp = NULL;
1233 error = vfs_hash_insert(vp, ino, flags, td, vpp, NULL, NULL);
1234 if (error || *vpp != NULL)
1248 *vpp = NULL;
1257 *vpp = NULL;
1286 *vpp
1321 ext2_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) argument
1438 ext2_root(struct mount *mp, int flags, struct vnode **vpp) argument
[all...]
/freebsd-current/sys/fs/udf/
H A Dudf_vfsops.c546 udf_root(struct mount *mp, int flags, struct vnode **vpp) argument
555 return (udf_vget(mp, id, flags, vpp));
576 udf_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
588 error = vfs_hash_get(mp, ino, flags, curthread, vpp, NULL, NULL);
589 if (error || *vpp != NULL)
630 error = vfs_hash_insert(vp, ino, flags, td, vpp, NULL, NULL);
631 if (error || *vpp != NULL)
714 *vpp = vp;
722 *vpp = NULL;
727 udf_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) argument
[all...]
/freebsd-current/sys/ufs/ufs/
H A Dufs_vfsops.c67 ufs_root(struct mount *mp, int flags, struct vnode **vpp) argument
75 *vpp = nvp;
/freebsd-current/sys/cddl/compat/opensolaris/sys/
H A Dvfs.h100 int mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype,
/freebsd-current/usr.sbin/dumpcis/
H A Dcardinfo.h182 int vpp; member in struct:power

Completed in 310 milliseconds

1234