Home
last modified time | relevance | path

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

/openbmc/linux/fs/nfs/
H A Dcallback.h51 unsigned int taglen; member
60 unsigned int taglen; member
H A Dcallback_xdr.c146 status = decode_string(xdr, &hdr->taglen, &hdr->tag, CB_OP_TAGLEN_MAXSZ); in decode_compound_hdr_arg()
661 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res()
953 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
H A 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()
/openbmc/linux/net/ipv4/
H A Dcipso_ipv4.c1505 int taglen; in cipso_v4_optptr() local
1512 taglen = 1; in cipso_v4_optptr()
1515 taglen = optptr[1]; in cipso_v4_optptr()
1517 if (!taglen || taglen > optlen) in cipso_v4_optptr()
1522 optlen -= taglen; in cipso_v4_optptr()
1523 optptr += taglen; in cipso_v4_optptr()
/openbmc/linux/arch/s390/crypto/
H A Daes_s390.c831 unsigned int taglen = crypto_aead_authsize(tfm); in gcm_aes_crypt() local
862 pclen -= taglen; in gcm_aes_crypt()
917 scatterwalk_map_and_copy(tag, req->src, len, taglen, 0); in gcm_aes_crypt()
918 if (crypto_memneq(tag, param.t, taglen)) in gcm_aes_crypt()
921 scatterwalk_map_and_copy(param.t, req->dst, len, taglen, 1); in gcm_aes_crypt()
/openbmc/linux/fs/nfsd/
H A Dxdr4.h722 u32 taglen; member
737 u32 taglen; member
H A Dtrace.h93 u32 taglen,
96 TP_ARGS(rqst, tag, taglen, opcnt),
100 __string_len(tag, tag, taglen)
105 __assign_str_len(tag, tag, taglen);
H A Dnfs4xdr.c2434 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0) in nfsd4_decode_compound()
2438 if (unlikely(argp->taglen)) { in nfsd4_decode_compound()
2439 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound()
2441 p = xdr_inline_decode(argp->xdr, argp->taglen); in nfsd4_decode_compound()
2444 argp->tag = svcxdr_savemem(argp, p, argp->taglen); in nfsd4_decode_compound()
2447 max_reply += xdr_align_size(argp->taglen); in nfsd4_decode_compound()
5518 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres()
5519 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres()
5520 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
H A Dnfs4proc.c2636 xdr_reserve_space(resp->xdr, XDR_UNIT * 2 + args->taglen); in nfsd4_proc_compound()
2637 resp->taglen = args->taglen; in nfsd4_proc_compound()
2667 trace_nfsd_compound(rqstp, args->tag, args->taglen, args->client_opcnt); in nfsd4_proc_compound()
/openbmc/linux/scripts/mod/
H A Dmodpost.c691 unsigned int taglen = strlen(tag); in get_next_modinfo() local
701 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
702 return p + taglen + 1; in get_next_modinfo()
/openbmc/linux/kernel/module/
H A Dmain.c1035 unsigned int taglen = strlen(tag); in get_next_modinfo() local
1051 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
1052 return p + taglen + 1; in get_next_modinfo()