Home
last modified time | relevance | path

Searched refs:fh3_xlen (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs3_xdr.c213 cp = (uchar_t *)&fhp->fh3_xlen; in xdr_inline_decode_nfs_fh3()
218 dsize = fhp->fh3_xlen < NFS_FHMAXDATA ? NFS_FHMAXDATA : fhp->fh3_xlen; in xdr_inline_decode_nfs_fh3()
326 xsize = fhp->fh3_xlen < NFS_FHMAXDATA ? NFS_FHMAXDATA : fhp->fh3_xlen; in xdr_inline_encode_nfs_fh3()
333 sizeof (fhp->fh3_xlen) + xsize; in xdr_inline_encode_nfs_fh3()
372 bcopy(&fhp->fh3_xlen, cp, sizeof (fhp->fh3_xlen) + xsize); in xdr_inline_encode_nfs_fh3()
373 cp += sizeof (fhp->fh3_xlen) + xsize; in xdr_inline_encode_nfs_fh3()
401 xsize = objp->fh3_xlen < NFS_FHMAXDATA ? NFS_FHMAXDATA : objp->fh3_xlen; in xdr_encode_nfs_fh3()
410 sizeof (objp->fh3_xlen) + xsize; in xdr_encode_nfs_fh3()
H A Dnfs_export.c2098 bcopy(&fh.fh3_xlen, &buf[i], sz); in nfs_getfh()
2100 bcopy(fh.fh3_xdata, &buf[i], fh.fh3_xlen); in nfs_getfh()
2101 i += fh.fh3_xlen; in nfs_getfh()
2102 pad = (NFS_FHMAXDATA - fh.fh3_xlen); in nfs_getfh()
2125 bcopy(&fh.fh3_xlen, &logbuf[i], sz); in nfs_getfh()
2383 fh->fh3_xlen = exi->exi_fid.fid_len; in makefh3()
2384 ASSERT(fh->fh3_xlen <= sizeof (fh->fh3_xdata)); in makefh3()
2385 bcopy(exi->exi_fid.fid_data, fh->fh3_xdata, fh->fh3_xlen); in makefh3()
2389 + sizeof (fh->fh3_xlen) + fh->fh3_xlen; in makefh3()
H A Dnfs_log_xdr.c912 if (objp->fh3_len > NFS_FHMAXDATA || objp->fh3_xlen > NFS_FHMAXDATA) { in xdr_nfslog_nfs_fh3()
915 fh.fh3_xlen = NFS_FHMAXDATA; in xdr_nfslog_nfs_fh3()
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs.h1137 #define fh3_xlen fh3_u.nfs_fh3_i.fh3_i._fh3_xlen macro
1140 #define FH3TOXFIDP(fh) ((fid_t *)&((fh)->fh3_xlen))