Searched refs:newdp (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/kern/ |
H A D | vfs_mount.c | 1121 struct vnode *newdp, *rootvp; in vfs_domount_first() local 1193 (error1 = VFS_ROOT(mp, LK_EXCLUSIVE, &newdp)) != 0) { in vfs_domount_first() 1234 vn_seqc_write_begin(newdp); in vfs_domount_first() 1235 VOP_UNLOCK(newdp); in vfs_domount_first() 1273 vn_lock_pair(vp, false, LK_EXCLUSIVE, newdp, false, LK_EXCLUSIVE); in vfs_domount_first() 1284 EVENTHANDLER_DIRECT_INVOKE(vfs_mounted, mp, newdp, td); in vfs_domount_first() 1285 VOP_UNLOCK(newdp); in vfs_domount_first() 1287 mountcheckdirs(vp, newdp); in vfs_domount_first() 1289 vn_seqc_write_end(newdp); in vfs_domount_first() 1290 vrele(newdp); in vfs_domount_first()
|
H A D | kern_descrip.c | 4191 mountcheckdirs(struct vnode *olddp, struct vnode *newdp) in mountcheckdirs() argument 4222 vrefact(newdp); in mountcheckdirs() 4223 newpwd->pwd_cdir = newdp; in mountcheckdirs() 4226 vrefact(newdp); in mountcheckdirs() 4227 newpwd->pwd_rdir = newdp; in mountcheckdirs() 4230 vrefact(newdp); in mountcheckdirs() 4231 newpwd->pwd_jdir = newdp; in mountcheckdirs() 4234 vrefact(newdp); in mountcheckdirs() 4235 newpwd->pwd_adir = newdp; in mountcheckdirs() 4247 vrefact(newdp); in mountcheckdirs() [all …]
|
/freebsd/sys/sys/ |
H A D | filedesc.h | 282 void mountcheckdirs(struct vnode *olddp, struct vnode *newdp);
|
/freebsd/usr.sbin/mountd/ |
H A D | mountd.c | 2601 add_dlist(struct dirlist **dpp, struct dirlist *newdp, struct grouplist *grp, in add_dlist() argument 2611 cmp = strcmp(dp->dp_dirp, newdp->dp_dirp); in add_dlist() 2613 add_dlist(&dp->dp_left, newdp, grp, flags, ep, anoncrp, in add_dlist() 2617 add_dlist(&dp->dp_right, newdp, grp, flags, ep, anoncrp, in add_dlist() 2621 free((caddr_t)newdp); in add_dlist() 2623 dp = newdp; in add_dlist()
|