Home | History | Annotate | Download | only in server

Lines Matching defs:fhp

217 nfsvno_getfh(struct vnode *vp, fhandle_t *fhp, struct thread *p)
221 NFSBZERO((caddr_t)fhp, sizeof(fhandle_t));
222 fhp->fh_fsid = vp->v_mount->mnt_stat.f_fsid;
223 error = VOP_VPTOFH(vp, &fhp->fh_fid);
1534 struct nfsvattr *nvap, fhandle_t *fhp, int rderror, nfsattrbit_t *attrbitp,
1540 error = nfsv4_fillattr(nd, mp, vp, NULL, &nvap->na_vattr, fhp, rderror,
2729 nfsvno_fhtovp(struct mount *mp, fhandle_t *fhp, struct sockaddr *nam,
2737 error = VFS_FHTOVP(mp, &fhp->fh_fid, lktype, vpp);
2778 fhandle_t *fhp;
2780 fhp = (fhandle_t *)nfp->nfsrvfh_data;
2784 mp = vfs_busyfs(&fhp->fh_fsid);
2798 nd->nd_repstat = nfsvno_fhtovp(mp, fhp, nd->nd_nam, lktype, vpp, exp,
2982 nfsvno_getvp(fhandle_t *fhp)
2988 mp = vfs_busyfs(&fhp->fh_fsid);
2991 error = VFS_FHTOVP(mp, &fhp->fh_fid, LK_EXCLUSIVE, &vp);
3297 nfsrv_hashfh(fhandle_t *fhp)
3301 hashval = hash32_buf(&fhp->fh_fid, sizeof(struct fid), 0);