Home
last modified time | relevance | path

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

/linux/fs/nfs/
H A Dcallback.h33 unsigned int taglen; member
42 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()
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()
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()
3207 hdr->taglen = ret; in decode_compound_hdr()
/linux/net/ipv4/
H A Dcipso_ipv4.c1502 int taglen; in cipso_v4_optptr() local
1509 taglen = 1; in cipso_v4_optptr()
1512 taglen = optptr[1]; in cipso_v4_optptr()
1514 if (!taglen || taglen > optlen) in cipso_v4_optptr()
1519 optlen -= taglen; in cipso_v4_optptr()
1520 optptr += taglen; in cipso_v4_optptr()
/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()
/linux/fs/nfsd/
H A Dxdr4.h861 u32 taglen; member
877 u32 taglen; member
H A Dnfs4xdr.c2471 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0) in nfsd4_decode_compound()
2475 if (unlikely(argp->taglen)) { in nfsd4_decode_compound()
2476 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound()
2478 p = xdr_inline_decode(argp->xdr, argp->taglen); in nfsd4_decode_compound()
2481 argp->tag = svcxdr_savemem(argp, p, argp->taglen); in nfsd4_decode_compound()
2484 max_reply += xdr_align_size(argp->taglen); in nfsd4_decode_compound()
5874 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres()
5875 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres()
5876 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
H A Dtrace.h95 u32 taglen,
98 TP_ARGS(rqst, tag, taglen, opcnt),
102 __string_len(tag, tag, taglen)
H A Dnfs4proc.c2685 xdr_reserve_space(resp->xdr, XDR_UNIT * 2 + args->taglen); in nfsd4_proc_compound()
2686 resp->taglen = args->taglen; in nfsd4_proc_compound()
2716 trace_nfsd_compound(rqstp, args->tag, args->taglen, args->client_opcnt); in nfsd4_proc_compound()
/linux/scripts/mod/
H A Dmodpost.c675 unsigned int taglen = strlen(tag); in get_next_modinfo() local
685 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
686 return p + taglen + 1; in get_next_modinfo()
/linux/kernel/module/
H A Dmain.c1037 unsigned int taglen = strlen(tag); in get_next_modinfo() local
1053 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
1054 return p + taglen + 1; in get_next_modinfo()