Home
last modified time | relevance | path

Searched refs:taglen (Results 1 – 7 of 7) sorted by relevance

/fs/nfs/
Dcallback.h51 unsigned int taglen; member
60 unsigned int taglen; member
Dcallback_xdr.c146 status = decode_string(xdr, &hdr->taglen, &hdr->tag, CB_OP_TAGLEN_MAXSZ); in decode_compound_hdr_arg()
659 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res()
951 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
Dnfs4xdr.c958 uint32_t taglen; member
1038 hdr->replen = 3 + hdr->taglen; in encode_compound_hdr()
1040 WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN); in encode_compound_hdr()
1041 encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr()
3198 hdr->taglen = ret; in decode_compound_hdr()
/fs/nfsd/
Dxdr4.h721 u32 taglen; member
736 u32 taglen; member
Dtrace.h90 u32 taglen,
93 TP_ARGS(rqst, tag, taglen, opcnt),
97 __string_len(tag, tag, taglen)
102 __assign_str_len(tag, tag, taglen);
Dnfs4xdr.c2383 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0) in nfsd4_decode_compound()
2387 if (unlikely(argp->taglen)) { in nfsd4_decode_compound()
2388 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound()
2390 p = xdr_inline_decode(argp->xdr, argp->taglen); in nfsd4_decode_compound()
2393 argp->tag = svcxdr_savemem(argp, p, argp->taglen); in nfsd4_decode_compound()
2396 max_reply += xdr_align_size(argp->taglen); in nfsd4_decode_compound()
5483 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres()
5484 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres()
5485 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
Dnfs4proc.c2605 xdr_reserve_space(resp->xdr, XDR_UNIT * 2 + args->taglen); in nfsd4_proc_compound()
2606 resp->taglen = args->taglen; in nfsd4_proc_compound()
2636 trace_nfsd_compound(rqstp, args->tag, args->taglen, args->client_opcnt); in nfsd4_proc_compound()