Searched refs:taglen (Results 1 – 9 of 9) sorted by relevance
/linux-4.4.14/fs/nfs/ |
D | callback.h | 49 unsigned int taglen; member 58 unsigned int taglen; member
|
D | callback_xdr.c | 158 status = decode_string(xdr, &hdr->taglen, &hdr->tag); in decode_compound_hdr_arg() 162 if (hdr->taglen > CB_OP_TAGLEN_MAXSZ) { in decode_compound_hdr_arg() 164 __func__, hdr->taglen); in decode_compound_hdr_arg() 630 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res() 919 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
|
D | nfs4xdr.c | 904 uint32_t taglen; member 968 hdr->replen = RPC_REPHDRSIZE + auth->au_rslack + 3 + hdr->taglen; in encode_compound_hdr() 970 WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN); in encode_compound_hdr() 971 encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr() 3049 hdr->taglen = be32_to_cpup(p); in decode_compound_hdr() 3051 p = xdr_inline_decode(xdr, hdr->taglen + 4); in decode_compound_hdr() 3055 p += XDR_QUADLEN(hdr->taglen); in decode_compound_hdr()
|
/linux-4.4.14/fs/nfsd/ |
D | xdr4.h | 585 u32 taglen; member 599 u32 taglen; member
|
D | nfs4xdr.c | 1819 argp->taglen = be32_to_cpup(p++); in nfsd4_decode_compound() 1820 READ_BUF(argp->taglen); in nfsd4_decode_compound() 1821 SAVEMEM(argp->tag, argp->taglen); in nfsd4_decode_compound() 1825 max_reply += 4 + (XDR_QUADLEN(argp->taglen) << 2); in nfsd4_decode_compound() 1827 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound() 4481 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres() 4482 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres() 4483 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
|
D | nfs4proc.c | 1611 xdr_reserve_space(&resp->xdr, 8 + args->taglen); in nfsd4_proc_compound() 1612 resp->taglen = args->taglen; in nfsd4_proc_compound()
|
/linux-4.4.14/net/ipv4/ |
D | cipso_ipv4.c | 1593 int taglen; in cipso_v4_optptr() local 1598 taglen = optptr[1]; in cipso_v4_optptr() 1599 optlen -= taglen; in cipso_v4_optptr() 1600 optptr += taglen; in cipso_v4_optptr()
|
/linux-4.4.14/scripts/mod/ |
D | modpost.c | 708 unsigned int taglen = strlen(tag); in get_next_modinfo() local 717 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo() 718 return p + taglen + 1; in get_next_modinfo()
|
/linux-4.4.14/kernel/ |
D | module.c | 2339 unsigned int taglen = strlen(tag); in get_modinfo() local 2344 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_modinfo() 2345 return p + taglen + 1; in get_modinfo()
|