Home | History | Annotate | Download | only in nfs

Lines Matching defs:fhlen

2904 	int error = 0, ofhlen, fhlen;
2919 nfsm_getfh(nfhp, fhlen, v3);
2927 ofhp, ofhlen, nfhp, fhlen);
2933 if (np->n_fhsize > NFS_SMALLFH && fhlen <= NFS_SMALLFH) {
2938 else if (np->n_fhsize <= NFS_SMALLFH && fhlen > NFS_SMALLFH)
2939 np->n_fhp = kmem_alloc(fhlen, KM_SLEEP);
2941 memcpy(np->n_fhp, nfhp, fhlen);
2942 np->n_fhsize = fhlen;
2944 ofhp, ofhlen, np->n_fhp, fhlen);
2946 } else if (NFS_CMPFH(dnp, nfhp, fhlen)) {
2951 error = nfs_nget(dvp->v_mount, nfhp, fhlen, &np);