fhlen 2470 nfs/nfs_vnops.c int error = 0, fhlen, attrflag;
fhlen 2482 nfs/nfs_vnops.c nfsm_getfh(nfhp, fhlen, v3);
fhlen 2485 nfs/nfs_vnops.c if (np->n_fhsize > NFS_SMALLFH && fhlen <= NFS_SMALLFH) {
fhlen 2488 nfs/nfs_vnops.c } else if (np->n_fhsize <= NFS_SMALLFH && fhlen>NFS_SMALLFH)
fhlen 2489 nfs/nfs_vnops.c np->n_fhp =(nfsfh_t *)malloc(fhlen,M_NFSBIGFH,M_WAITOK);
fhlen 2490 nfs/nfs_vnops.c bcopy((caddr_t)nfhp, (caddr_t)np->n_fhp, fhlen);
fhlen 2491 nfs/nfs_vnops.c np->n_fhsize = fhlen;
fhlen 2493 nfs/nfs_vnops.c } else if (NFS_CMPFH(dnp, nfhp, fhlen)) {
fhlen 2497 nfs/nfs_vnops.c error = nfs_nget(dvp->v_mount, nfhp, fhlen, &np);