Searched refs:dvp (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-10.1-release/sys/cddl/compat/opensolaris/sys/
H A Ddnlc.h34 #define dnlc_lookup(dvp, name) (NULL)
35 #define dnlc_update(dvp, name, vp) do { } while (0)
36 #define dnlc_remove(dvp, name) do { } while (0)
/freebsd-10.1-release/sys/fs/fuse/
H A Dfuse_node.h103 fuse_vnode_setparent(struct vnode *vp, struct vnode *dvp) argument
105 if (dvp != NULL && vp->v_type == VDIR) {
106 MPASS(dvp->v_type == VDIR);
107 VTOFUD(vp)->parent_nid = VTOI(dvp);
115 struct vnode *dvp,
H A Dfuse_vnops.c309 struct vnode *dvp = ap->a_dvp; local
323 struct mount *mp = vnode_mount(dvp);
324 uint64_t parentnid = VTOFUD(dvp)->nid;
331 if (fuse_isdeadfs(dvp)) {
349 fdisp_make(fdip, FUSE_CREATE, vnode_mount(dvp), parentnid, td, cred);
373 err = fuse_vnode_get(mp, feo->nodeid, dvp, vpp, cnp, VREG);
396 cache_purge_negative(dvp);
647 struct vnode *dvp = ap->a_dvp; local
657 struct mount *mp = vnode_mount(dvp);
670 (uintmax_t)VTOI(dvp), (in
1073 struct vnode *dvp = ap->a_dvp; local
1334 struct vnode *dvp = ap->a_dvp; local
1448 struct vnode *dvp = ap->a_dvp; local
1655 struct vnode *dvp = ap->a_dvp; local
[all...]
H A Dfuse_node.c231 struct vnode *dvp,
239 debug_printf("dvp=%p\n", dvp);
245 if (dvp != NULL) {
248 fuse_vnode_setparent(*vpp, dvp);
250 if (dvp != NULL && cnp != NULL && (cnp->cn_flags & MAKEENTRY) != 0) {
252 ASSERT_VOP_LOCKED(dvp, "fuse_vnode_get");
253 cache_enter(dvp, *vpp, cnp);
229 fuse_vnode_get(struct mount *mp, uint64_t nodeid, struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, enum vtype vtyp) argument
/freebsd-10.1-release/sys/security/mac_bsdextended/
H A Dugidfw_vnode.c72 ugidfw_vnode_check_chdir(struct ucred *cred, struct vnode *dvp, argument
76 return (ugidfw_check_vp(cred, dvp, MBI_EXEC));
80 ugidfw_vnode_check_chroot(struct ucred *cred, struct vnode *dvp, argument
84 return (ugidfw_check_vp(cred, dvp, MBI_EXEC));
88 ugidfw_check_create_vnode(struct ucred *cred, struct vnode *dvp, argument
92 return (ugidfw_check_vp(cred, dvp, MBI_WRITE));
137 ugidfw_vnode_check_link(struct ucred *cred, struct vnode *dvp, argument
143 error = ugidfw_check_vp(cred, dvp, MBI_WRITE);
161 ugidfw_vnode_check_lookup(struct ucred *cred, struct vnode *dvp, argument
165 return (ugidfw_check_vp(cred, dvp, MBI_EXE
177 ugidfw_vnode_check_readdir(struct ucred *cred, struct vnode *dvp, struct label *dvplabel) argument
193 ugidfw_vnode_check_rename_from(struct ucred *cred, struct vnode *dvp, struct label *dvplabel, struct vnode *vp, struct label *vplabel, struct componentname *cnp) argument
206 ugidfw_vnode_check_rename_to(struct ucred *cred, struct vnode *dvp, struct label *dvplabel, struct vnode *vp, struct label *vplabel, int samedir, struct componentname *cnp) argument
285 ugidfw_vnode_check_unlink(struct ucred *cred, struct vnode *dvp, struct label *dvplabel, struct vnode *vp, struct label *vplabel, struct componentname *cnp) argument
[all...]
H A Dugidfw_internal.h57 int ugidfw_vnode_check_chdir(struct ucred *cred, struct vnode *dvp,
59 int ugidfw_vnode_check_chroot(struct ucred *cred, struct vnode *dvp,
61 int ugidfw_check_create_vnode(struct ucred *cred, struct vnode *dvp,
76 int ugidfw_vnode_check_link(struct ucred *cred, struct vnode *dvp,
81 int ugidfw_vnode_check_lookup(struct ucred *cred, struct vnode *dvp,
85 int ugidfw_vnode_check_readdir(struct ucred *cred, struct vnode *dvp,
89 int ugidfw_vnode_check_rename_from(struct ucred *cred, struct vnode *dvp,
92 int ugidfw_vnode_check_rename_to(struct ucred *cred, struct vnode *dvp,
112 int ugidfw_vnode_check_unlink(struct ucred *cred, struct vnode *dvp,
/freebsd-10.1-release/sys/fs/smbfs/
H A Dsmbfs_node.c101 smbfs_node_alloc(struct mount *mp, struct vnode *dvp, const char *dirnm, argument
114 sc.n_parent = dvp;
117 if (smp->sm_root != NULL && dvp == NULL) {
122 if (dvp == NULL)
124 vp = VTOSMB(VTOSMB(dvp)->n_parent)->n_vnode;
133 dnp = dvp ? VTOSMB(dvp) : NULL;
134 if (dnp == NULL && dvp != NULL) {
135 vprint("smbfs_node_alloc: dead parent vnode", dvp);
203 if (dvp) {
228 smbfs_nget(struct mount *mp, struct vnode *dvp, const char *name, int nmlen, struct smbfattr *fap, struct vnode **vpp) argument
265 struct vnode *dvp; local
[all...]
H A Dsmbfs_vnops.c540 struct vnode *dvp = ap->a_dvp; local
544 struct smbnode *dnp = VTOSMB(dvp);
558 if ((error = VOP_GETATTR(dvp, &vattr, cnp->cn_cred)))
569 error = smbfs_nget(VTOVFS(dvp), dvp, name, nmlen, &fattr, &vp);
574 cache_enter(dvp, vp, cnp);
590 /* struct vnode *dvp = ap->a_dvp;*/
752 struct vnode *dvp = ap->a_dvp; local
756 struct smbnode *dnp = VTOSMB(dvp);
764 if ((error = VOP_GETATTR(dvp,
798 struct vnode *dvp = ap->a_dvp; local
1166 struct vnode *dvp = ap->a_dvp; local
[all...]
/freebsd-10.1-release/sys/security/mac/
H A Dmac_vfs.c280 struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
284 ASSERT_VOP_LOCKED(dvp, "mac_vnode_create_extattr");
297 MAC_POLICY_CHECK(vnode_create_extattr, cred, mp, mp->mnt_label, dvp,
298 dvp->v_label, vp, vp->v_label, cnp);
392 mac_vnode_check_chdir(struct ucred *cred, struct vnode *dvp) argument
396 ASSERT_VOP_LOCKED(dvp, "mac_vnode_check_chdir");
398 MAC_POLICY_CHECK(vnode_check_chdir, cred, dvp, dvp->v_label);
399 MAC_CHECK_PROBE2(vnode_check_chdir, error, cred, dvp);
408 mac_vnode_check_chroot(struct ucred *cred, struct vnode *dvp) argument
279 mac_vnode_create_extattr(struct ucred *cred, struct mount *mp, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
424 mac_vnode_check_create(struct ucred *cred, struct vnode *dvp, struct componentname *cnp, struct vattr *vap) argument
531 mac_vnode_check_link(struct ucred *cred, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
569 mac_vnode_check_lookup(struct ucred *cred, struct vnode *dvp, struct componentname *cnp) argument
687 mac_vnode_check_readdir(struct ucred *cred, struct vnode *dvp) argument
736 mac_vnode_check_rename_from(struct ucred *cred, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
755 mac_vnode_check_rename_to(struct ucred *cred, struct vnode *dvp, struct vnode *vp, int samedir, struct componentname *cnp) argument
912 mac_vnode_check_unlink(struct ucred *cred, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
[all...]
/freebsd-10.1-release/sys/kern/
H A Dvfs_cache.c457 * Lookup is called with dvp pointing to the directory to search,
466 * vpp is locked and ref'd on return. If we're looking up DOTDOT, dvp is
472 cache_lookup(dvp, vpp, cnp, tsp, ticksp)
473 struct vnode *dvp;
496 *vpp = dvp;
498 dvp, cnp->cn_nameptr);
500 SDT_PROBE(vfs, namecache, lookup, hit, dvp, ".",
510 if (dvp->v_cache_dd == NULL) {
511 SDT_PROBE(vfs, namecache, lookup, miss, dvp,
518 if (dvp
1017 struct vnode *dvp; local
1209 struct vnode *dvp; local
1418 cache_enter(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
[all...]
/freebsd-10.1-release/sys/fs/nandfs/
H A Dnandfs_dir.c55 nandfs_add_dirent(struct vnode *dvp, uint64_t ino, char *nameptr, long namelen, argument
58 struct nandfs_node *dir_node = VTON(dvp);
145 vnode_pager_setsize(dvp, filesize);
151 nandfs_remove_dirent(struct vnode *dvp, struct nandfs_node *node, argument
163 dir_node = VTON(dvp);
180 DPRINTF(LOOKUP, ("rm direntry dvp %p node %p ino %#jx at off %#jx\n",
181 dvp, node, (uintmax_t)ino, (uintmax_t)offset));
237 nandfs_update_parent_dir(struct vnode *dvp, uint64_t newparent) argument
244 dir_node = VTON(dvp);
260 nandfs_update_dirent(struct vnode *dvp, struc argument
304 nandfs_init_dir(struct vnode *dvp, uint64_t ino, uint64_t parent_ino) argument
[all...]
/freebsd-10.1-release/sys/fs/unionfs/
H A Dunion_subr.c87 unionfs_get_hashhead(struct vnode *dvp, char *path) argument
94 unp = VTOUNIONFS(dvp);
108 struct vnode *dvp, char *path)
119 VI_LOCK(dvp);
120 hd = unionfs_get_hashhead(dvp, path);
125 VI_UNLOCK(dvp);
135 VI_UNLOCK(dvp);
145 struct vnode *dvp, char *path)
156 VI_LOCK(dvp);
157 hd = unionfs_get_hashhead(dvp, pat
107 unionfs_get_cached_vnode(struct vnode *uvp, struct vnode *lvp, struct vnode *dvp, char *path) argument
144 unionfs_ins_cached_vnode(struct unionfs_node *uncp, struct vnode *dvp, char *path) argument
184 unionfs_rem_cached_vnode(struct unionfs_node *unp, struct vnode *dvp) argument
207 unionfs_nodeget(struct mount *mp, struct vnode *uppervp, struct vnode *lowervp, struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct thread *td) argument
334 struct vnode *dvp; local
515 unionfs_relookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct componentname *cn, struct thread *td, char *path, int pathlen, u_long nameiop) argument
563 unionfs_relookup_for_create(struct vnode *dvp, struct componentname *cnp, struct thread *td) argument
607 unionfs_relookup_for_delete(struct vnode *dvp, struct componentname *cnp, struct thread *td) argument
651 unionfs_relookup_for_rename(struct vnode *dvp, struct componentname *cnp, struct thread *td) argument
701 struct vnode *dvp; local
832 unionfs_mkwhiteout(struct vnode *dvp, struct componentname *cnp, struct thread *td, char *path) argument
[all...]
H A Dunion.h109 int unionfs_nodeget(struct mount *mp, struct vnode *uppervp, struct vnode *lowervp, struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct thread *td);
119 int unionfs_mkwhiteout(struct vnode *dvp, struct componentname *cnp, struct thread *td, char *path);
120 int unionfs_relookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct componentname *cn, struct thread *td, char *path, int pathlen, u_long nameiop);
121 int unionfs_relookup_for_create(struct vnode *dvp, struct componentname *cnp, struct thread *td);
122 int unionfs_relookup_for_delete(struct vnode *dvp, struct componentname *cnp, struct thread *td);
123 int unionfs_relookup_for_rename(struct vnode *dvp, struct componentname *cnp, struct thread *td);
/freebsd-10.1-release/sys/fs/fdescfs/
H A Dfdesc_vnops.c263 struct vnode *dvp = ap->a_dvp; local
280 *vpp = dvp;
281 VREF(dvp);
285 if (VTOFDESC(dvp)->fd_type != Froot) {
316 if (VTOFDESC(dvp)->fd_ix == FD_DESC + fd) {
318 * In case we're holding the last reference to the file, the dvp
321 vhold(dvp);
322 VOP_UNLOCK(dvp, 0);
326 vn_lock(dvp, LK_RETRY | LK_EXCLUSIVE);
327 vdrop(dvp);
[all...]
/freebsd-10.1-release/sys/fs/tmpfs/
H A Dtmpfs_vnops.c81 struct vnode *dvp = v->a_dvp; local
88 dnode = VP_TO_TMPFS_DIR(dvp);
92 error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred, cnp->cn_thread);
107 error = vn_vget_ino_gen(dvp, tmpfs_vn_get_ino_alloc,
112 VREF(dvp);
113 *vpp = dvp;
130 error = VOP_ACCESS(dvp, VWRITE, cnp->cn_cred,
166 error = VOP_ACCESS(dvp, VWRITE, cnp->cn_cred,
172 error = tmpfs_alloc_vp(dvp->v_mount, tnode,
178 VOP_ACCESS(dvp, VADMI
212 struct vnode *dvp = v->a_dvp; local
225 struct vnode *dvp = v->a_dvp; local
512 struct vnode *dvp = v->a_dvp; local
564 struct vnode *dvp = v->a_tdvp; local
1024 struct vnode *dvp = v->a_dvp; local
1037 struct vnode *dvp = v->a_dvp; local
1130 struct vnode *dvp = v->a_dvp; local
1362 struct vnode *dvp = ap->a_dvp; local
[all...]
/freebsd-10.1-release/sys/nfsclient/
H A Dnfs_vnops.c197 static int nfs_mknodrpc(struct vnode *dvp, struct vnode **vpp,
199 static int nfs_removerpc(struct vnode *dvp, const char *name, int namelen,
926 struct vnode *dvp = ap->a_dvp; local
928 struct mount *mp = dvp->v_mount;
940 int v3 = NFS_ISV3(dvp);
947 if (dvp->v_type != VDIR)
950 np = VTONFS(dvp);
951 if ((error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred, td)) != 0) {
955 error = cache_lookup(dvp, vpp, cnp, &nctime, &ncticks);
1008 if (dvp !
1481 nfs_mknodrpc(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct vattr *vap) argument
1581 struct vnode *dvp = ap->a_dvp; local
1716 struct vnode *dvp = ap->a_dvp; local
1782 nfs_removerpc(struct vnode *dvp, const char *name, int namelen, struct ucred *cred, struct thread *td) argument
2020 struct vnode *dvp = ap->a_dvp; local
2109 struct vnode *dvp = ap->a_dvp; local
2182 struct vnode *dvp = ap->a_dvp; local
2751 nfs_sillyrename(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
2810 nfs_lookitup(struct vnode *dvp, const char *name, int len, struct ucred *cred, struct thread *td, struct nfsnode **npp) argument
[all...]
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/fs/
H A Dgfs.c159 gfs_get_parent_ino(vnode_t *dvp, cred_t *cr, caller_context_t *ct, argument
163 gfs_dir_t *dp = dvp->v_data;
171 } else if (dvp->v_flag & V_XATTRDIR) {
436 gfs_lookup_dot(vnode_t **vpp, vnode_t *dvp, vnode_t *pvp, const char *nm) argument
439 VN_HOLD(dvp);
440 *vpp = dvp;
444 ASSERT(dvp->v_flag & VROOT);
445 VN_HOLD(dvp);
446 *vpp = dvp;
764 const char *nm, vnode_t *dvp, vnode_
763 gfs_dir_lookup_dynamic(gfs_lookup_cb callback, gfs_dir_t *dp, const char *nm, vnode_t *dvp, vnode_t **vpp, cred_t *cr, int flags, int *direntflags, pathname_t *realpnp) argument
816 gfs_dir_lookup_static(int (*compare)(const char *, const char *), gfs_dir_t *dp, const char *nm, vnode_t *dvp, int *idx, vnode_t **vpp, pathname_t *rpnp) argument
908 gfs_dir_lookup(vnode_t *dvp, const char *nm, vnode_t **vpp, cred_t *cr, int flags, int *direntflags, pathname_t *realpnp) argument
1020 gfs_dir_readdir(vnode_t *dvp, uio_t *uiop, int *eofp, int *ncookies, u_long **cookies, void *data, cred_t *cr, int flags) argument
1083 gfs_vop_lookup(vnode_t *dvp, char *nm, vnode_t **vpp, pathname_t *pnp, int flags, vnode_t *rdir, cred_t *cr, caller_context_t *ct, int *direntflags, pathname_t *realpnp) argument
[all...]
/freebsd-10.1-release/sys/fs/nfsclient/
H A Dnfs_clvnops.c207 static int nfs_mknodrpc(struct vnode *dvp, struct vnode **vpp,
209 static int nfs_removerpc(struct vnode *dvp, struct vnode *vp, char *name,
1040 struct vnode *dvp = ap->a_dvp; local
1042 struct mount *mp = dvp->v_mount;
1058 if (dvp->v_type != VDIR)
1061 np = VTONFS(dvp);
1071 if ((error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred, td)) != 0)
1073 error = cache_lookup(dvp, vpp, cnp, &nctime, &ncticks);
1127 if (dvp != newvp)
1133 if (dvp
1440 nfs_mknodrpc(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct vattr *vap) argument
1541 struct vnode *dvp = ap->a_dvp; local
1677 struct vnode *dvp = ap->a_dvp; local
1744 nfs_removerpc(struct vnode *dvp, struct vnode *vp, char *name, int namelen, struct ucred *cred, struct thread *td) argument
2032 struct vnode *dvp = ap->a_dvp; local
2108 struct vnode *dvp = ap->a_dvp; local
2185 struct vnode *dvp = ap->a_dvp; local
2400 nfs_sillyrename(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
2458 nfs_lookitup(struct vnode *dvp, char *name, int len, struct ucred *cred, struct thread *td, struct nfsnode **npp) argument
[all...]
/freebsd-10.1-release/sys/ufs/ufs/
H A Dufs_lookup.c869 ufs_direnter(dvp, tvp, dirp, cnp, newdirbp, isrename)
870 struct vnode *dvp;
890 dp = VTOI(dvp);
891 newentrysize = DIRSIZ(OFSFMT(dvp), dirp);
903 if (!DOINGSOFTDEP(dvp) && !DOINGASYNC(dvp))
907 if (DOINGSOFTDEP(dvp) && newdirbp != NULL)
912 if ((error = UFS_BALLOC(dvp, (off_t)dp->i_offset, DIRBLKSIZ,
914 if (DOINGSOFTDEP(dvp) && newdirbp != NULL)
921 vnode_pager_setsize(dvp, (u_lon
[all...]
H A Dufs_vnops.c914 struct vnode *dvp = ap->a_dvp; local
921 (VTOI(dvp)->i_flags & APPEND)) {
928 error = ufs_dirremove(dvp, ip, ap->a_cnp->cn_flags, 0);
934 * update the inodeblock for dvp and is waiting on
942 (void) VOP_FSYNC(dvp, MNT_WAIT, td);
1026 struct vnode *dvp = ap->a_dvp; local
1034 if (dvp->v_mount->mnt_maxsymlinklen > 0)
1043 if (dvp->v_mount->mnt_maxsymlinklen <= 0)
1051 error = ufs_direnter(dvp, NULL, &newdir, cnp, NULL, 0);
1057 if (dvp
1567 ufs_do_posix1e_acl_inheritance_dir(struct vnode *dvp, struct vnode *tvp, mode_t dmode, struct ucred *cred, struct thread *td) argument
1645 ufs_do_posix1e_acl_inheritance_file(struct vnode *dvp, struct vnode *tvp, mode_t mode, struct ucred *cred, struct thread *td) argument
1724 ufs_do_nfs4_acl_inheritance(struct vnode *dvp, struct vnode *tvp, mode_t child_mode, struct ucred *cred, struct thread *td) argument
1761 struct vnode *dvp = ap->a_dvp; local
2001 struct vnode *dvp = ap->a_dvp; local
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_as.c95 dtrace_difv_t *dvp; local
102 dvp = &pcb->pcb_difo->dtdo_vartab[pcb->pcb_asvidx++];
110 dvp->dtdv_name = (uint_t)stroff;
111 dvp->dtdv_id = idp->di_id;
112 dvp->dtdv_flags = 0;
114 dvp->dtdv_kind = (idp->di_kind == DT_IDENT_ARRAY) ?
118 dvp->dtdv_scope = DIFV_SCOPE_LOCAL;
120 dvp->dtdv_scope = DIFV_SCOPE_THREAD;
122 dvp->dtdv_scope = DIFV_SCOPE_GLOBAL;
125 dvp
[all...]
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_ctldir.c523 zfsctl_root_lookup(vnode_t *dvp, char *nm, vnode_t **vpp, pathname_t *pnp, argument
527 zfsvfs_t *zfsvfs = dvp->v_vfsp->vfs_data;
539 err = VFS_ROOT(dvp->v_vfsp, LK_EXCLUSIVE, vpp);
543 err = gfs_vop_lookup(dvp, nm, vpp, pnp, flags, rdir,
599 vnode_t *dvp = ap->a_dvp; local
613 err = zfsctl_root_lookup(dvp, nm, vpp, NULL, 0, NULL, cr, NULL, NULL, NULL);
818 zfsctl_snapdir_remove(vnode_t *dvp, char *name, vnode_t *cwd, cred_t *cr, argument
821 zfsctl_snapdir_t *sdp = dvp->v_data;
829 zfsvfs = dvp->v_vfsp->vfs_data;
846 err = zfsctl_snapshot_zname(dvp, nam
878 zfsctl_snapdir_mkdir(vnode_t *dvp, char *dirname, vattr_t *vap, vnode_t **vpp, cred_t *cr, caller_context_t *cc, int flags, vsecattr_t *vsecp) argument
938 vnode_t *dvp = ap->a_dvp; local
1119 vnode_t *dvp = ap->a_dvp; local
1465 vnode_t *dvp; local
1573 vnode_t *dvp = ap->a_dvp; local
1599 vnode_t *dvp, *vp; local
1655 vnode_t *dvp, *vp; local
1718 vnode_t *dvp; local
[all...]
/freebsd-10.1-release/sys/fs/devfs/
H A Ddevfs_vnops.c236 struct vnode **dvp = ap->a_vpp; local
263 *dvp = vp;
264 vref(*dvp);
286 *dvp = de->de_vnode;
287 if (*dvp != NULL) {
288 VI_LOCK(*dvp);
290 vholdl(*dvp);
291 VI_UNLOCK(*dvp);
292 vref(*dvp);
293 vdrop(*dvp);
838 struct vnode *dvp, **vpp; local
1001 struct vnode *dvp, **vpp; local
1327 struct vnode *dvp = ap->a_dvp; local
[all...]
/freebsd-10.1-release/sys/fs/nullfs/
H A Dnull_vnops.c361 struct vnode *dvp = ap->a_dvp; local
367 mp = dvp->v_mount;
375 ldvp = NULLVPTOLOWERVP(dvp);
378 ((dvp->v_vflag & VV_ROOT) != 0 && (flags & ISDOTDOT) == 0),
379 ("ldvp %p fl %#x dvp %p fl %#x flags %#x", ldvp, ldvp->v_vflag,
380 dvp, dvp->v_vflag, flags));
383 * Hold ldvp. The reference on it, owned by dvp, is lost in
384 * case of dvp reclamation, and we need ldvp to move our lock
385 * from ldvp to dvp
858 struct vnode **dvp = ap->a_vpp; local
[all...]
/freebsd-10.1-release/contrib/ntp/sntp/libevent/
H A Ddevpoll.c172 struct dvpoll dvp; local
181 dvp.dp_fds = devpollop->events;
182 dvp.dp_nfds = devpollop->nevents;
183 dvp.dp_timeout = timeout;
187 res = ioctl(devpollop->dpfd, DP_POLL, &dvp);

Completed in 4629 milliseconds

123