Home
last modified time | relevance | path

Searched refs:nvp (Results 1 – 17 of 17) sorted by relevance

/dragonfly/sys/vfs/ufs/
H A Dufs_vfsops.c60 struct vnode *nvp; in ufs_root() local
63 error = VFS_VGET(mp, NULL, (ino_t)UFS_ROOTINO, &nvp); in ufs_root()
66 *vpp = nvp; in ufs_root()
207 struct vnode *nvp; in ufs_fhtovp() local
210 error = VFS_VGET(mp, NULL, ufhp->ufid_ino, &nvp); in ufs_fhtovp()
215 ip = VTOI(nvp); in ufs_fhtovp()
220 vput(nvp); in ufs_fhtovp()
224 *vpp = nvp; in ufs_fhtovp()
/dragonfly/sys/vfs/msdosfs/
H A Dmsdosfs_denode.c244 struct vnode *nvp; in deget() local
296 ldep->de_vnode = nvp; in deget()
310 nvp->v_type = VBAD; in deget()
311 vx_put(nvp); in deget()
315 nvp->v_type = VBAD; in deget()
316 vx_put(nvp); in deget()
321 nvp->v_data = ldep; in deget()
373 vx_put(nvp); in deget()
405 nvp->v_type = VDIR; in deget()
415 nvp->v_type = VREG; in deget()
[all …]
/dragonfly/sys/vfs/ntfs/
H A Dntfs_vfsops.c560 struct vnode *nvp; in ntfs_root() local
565 error = VFS_VGET(mp, NULL, (ino_t)NTFS_ROOTINO, &nvp); in ntfs_root()
571 *vpp = nvp; in ntfs_root()
658 struct vnode *nvp; in ntfs_fhtovp() local
664 if ((error = VFS_VGET(mp, NULL, ntfhp->ntfid_ino, &nvp)) != 0) { in ntfs_fhtovp()
670 *vpp = nvp; in ntfs_fhtovp()
H A Dntfs_subr.c856 struct vnode *nvp; in ntfs_ntlookupfile() local
949 curthread, &nvp); in ntfs_ntlookupfile()
960 nfp = VTOF(nvp); in ntfs_ntlookupfile()
963 *vpp = nvp; in ntfs_ntlookupfile()
978 nvp->v_type = f_type; in ntfs_ntlookupfile()
991 vput(nvp); in ntfs_ntlookupfile()
1000 if (nvp->v_type == VREG) in ntfs_ntlookupfile()
1001 vinitvmio(nvp, nfp->f_size, PAGE_SIZE, -1); in ntfs_ntlookupfile()
1002 *vpp = nvp; in ntfs_ntlookupfile()
/dragonfly/sys/vfs/autofs/
H A Dautofs_vnops.c150 struct vnode *nvp = NULL; in autofs_trigger_vn() local
164 if (nlookup_fs_root(anp, &nvp) == true) in autofs_trigger_vn()
174 if (nlookup_fs_root(anp, &nvp) == false) in autofs_trigger_vn()
185 *newvp = nvp; in autofs_trigger_vn()
/dragonfly/sys/vfs/isofs/cd9660/
H A Dcd9660_vfsops.c663 struct vnode *nvp; in cd9660_fhtovp() local
671 if ((error = VFS_VGET(mp, NULL, ifhp->ifid_ino, &nvp)) != 0) { in cd9660_fhtovp()
675 ip = VTOI(nvp); in cd9660_fhtovp()
677 vput(nvp); in cd9660_fhtovp()
681 *vpp = nvp; in cd9660_fhtovp()
/dragonfly/sys/vfs/hpfs/
H A Dhpfs_vfsops.c427 struct vnode *nvp; in hpfs_fhtovp() local
431 if ((error = VFS_VGET(mp, NULL, hpfhp->hpfid_ino, &nvp)) != 0) { in hpfs_fhtovp()
437 *vpp = nvp; in hpfs_fhtovp()
/dragonfly/sys/vfs/ext2fs/
H A Dext2_vfsops.c1449 struct vnode *nvp; in ext2_fhtovp() local
1459 error = VFS_VGET(mp, NULL, ufhp->ufid_ino, &nvp); in ext2_fhtovp()
1464 ip = VTOI(nvp); in ext2_fhtovp()
1467 vput(nvp); in ext2_fhtovp()
1471 *vpp = nvp; in ext2_fhtovp()
1604 struct vnode *nvp; in ext2_root() local
1607 error = VFS_VGET(mp, NULL, (ino_t)EXT2_ROOTINO, &nvp); in ext2_root()
1610 *vpp = nvp; in ext2_root()
/dragonfly/sys/kern/
H A Dvfs_subr.c1163 struct vnode *nvp; in bdevvp() local
1171 &nvp, 0, 0); in bdevvp()
1176 vp = nvp; in bdevvp()
1225 addaliasu(struct vnode *nvp, int x, int y) in addaliasu() argument
1227 if (nvp->v_type != VBLK && nvp->v_type != VCHR) in addaliasu()
1229 nvp->v_umajor = x; in addaliasu()
1230 nvp->v_uminor = y; in addaliasu()
H A Dvfs_cache.c4987 vfs_cache_setroot(struct vnode *nvp, struct nchandle *nch) in vfs_cache_setroot() argument
4994 rootvnode = nvp; in vfs_cache_setroot()
/dragonfly/sys/vfs/udf/
H A Dudf_vfsops.c596 struct vnode *nvp; in udf_fhtovp() local
601 if ((error = VFS_VGET(mp, NULL, ifhp->ifid_ino, &nvp)) != 0) { in udf_fhtovp()
606 *vpp = nvp; in udf_fhtovp()
/dragonfly/contrib/tcsh-6/
H A Dsh.glob.c227 expbrace(Char ***nvp, Char ***elp, int size) in expbrace() argument
231 vl = nv = *nvp; in expbrace()
262 *nvp = nv; /* To keep cleanups working */ in expbrace()
/dragonfly/sys/vfs/nfs/
H A Dnfs_serv.c3243 struct vnode *vp = NULL, *nvp; in nfsrv_readdirplus() local
3429 if (nvp) { in nfsrv_readdirplus()
3430 vput(nvp); in nfsrv_readdirplus()
3431 nvp = NULL; in nfsrv_readdirplus()
3459 vput(nvp); in nfsrv_readdirplus()
3460 nvp = NULL; in nfsrv_readdirplus()
3463 if (VOP_GETATTR(nvp, vap)) { in nfsrv_readdirplus()
3464 vput(nvp); in nfsrv_readdirplus()
3465 nvp = NULL; in nfsrv_readdirplus()
3468 vput(nvp); in nfsrv_readdirplus()
[all …]
H A Dnfs_vnops.c981 struct vnode *nvp; in nfs_nresolve() local
1003 nvp = NULL; in nfs_nresolve()
1058 nvp = dvp; in nfs_nresolve()
1068 nvp = NFSTOV(np); in nfs_nresolve()
1071 ERROROUT(nfsm_postop_attr(&info, nvp, &attrflag, in nfs_nresolve()
1076 ERROROUT(nfsm_loadattr(&info, nvp, NULL)); in nfs_nresolve()
1078 nfs_cache_setvp(ap->a_nch, nvp, nfspos_cache_timeout); in nfs_nresolve()
1084 if (nvp) { in nfs_nresolve()
1085 if (nvp == dvp) in nfs_nresolve()
1086 vrele(nvp); in nfs_nresolve()
[all …]
/dragonfly/sys/dev/disk/sym/
H A Dsym_hipd.c9118 switch(nvp->type) {
9123 sym_Tekram_setup_target (np, target, &nvp->data.Tekram);
9287 !sym_read_Symbios_nvram (np, &nvp->data.Symbios)) {
9288 nvp->type = SYM_SYMBIOS_NVRAM;
9290 sym_display_Symbios_nvram(np, &nvp->data.Symbios);
9294 !sym_read_Tekram_nvram (np, &nvp->data.Tekram)) {
9295 nvp->type = SYM_TEKRAM_NVRAM;
9297 sym_display_Tekram_nvram(np, &nvp->data.Tekram);
9301 nvp->type = 0;
9303 nvp->type = 0;
[all …]
/dragonfly/etc/
H A Dprotocols22 nvp 11 NVP-II # Network Voice Protocol
/dragonfly/sys/dev/disk/isp/
H A Disp_pci.c447 isp_get_generic_options(device_t dev, ispsoftc_t *isp, int *nvp) in isp_get_generic_options() argument
481 *nvp = tval; in isp_get_generic_options()
483 *nvp = 0; in isp_get_generic_options()