Home
last modified time | relevance | path

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

/linux-6.12.1/fs/nfs/
Dcallback.h33 unsigned int taglen; member
42 unsigned int taglen; member
Dcallback_xdr.c149 status = decode_string(xdr, &hdr->taglen, &hdr->tag, CB_OP_TAGLEN_MAXSZ); in decode_compound_hdr_arg()
689 status = encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr_res()
990 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
Dnfs4xdr.c962 uint32_t taglen; member
1037 hdr->replen = 3 + hdr->taglen; in encode_compound_hdr()
1039 WARN_ON_ONCE(hdr->taglen > NFS4_MAXTAGLEN); in encode_compound_hdr()
1040 encode_string(xdr, hdr->taglen, hdr->tag); in encode_compound_hdr()
3234 hdr->taglen = ret; in decode_compound_hdr()
/linux-6.12.1/arch/x86/crypto/
Daesni-intel_glue.c1104 const u8 tag[16], int taglen);
1109 const u8 tag[16], int taglen);
1114 const u8 tag[16], int taglen);
1120 u8 tag[16], int taglen, int flags) in aes_gcm_dec_final() argument
1126 tag, taglen); in aes_gcm_dec_final()
1131 tag, taglen); in aes_gcm_dec_final()
1136 tag, taglen); in aes_gcm_dec_final()
1346 int taglen; in gcm_crypt() local
1413 taglen = crypto_aead_authsize(tfm); in gcm_crypt()
1421 req->cryptlen, taglen, 1); in gcm_crypt()
[all …]
/linux-6.12.1/net/ipv4/
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-6.12.1/arch/s390/crypto/
Daes_s390.c938 unsigned int taglen = crypto_aead_authsize(tfm); in gcm_aes_crypt() local
969 pclen -= taglen; in gcm_aes_crypt()
1024 scatterwalk_map_and_copy(tag, req->src, len, taglen, 0); in gcm_aes_crypt()
1025 if (crypto_memneq(tag, param.t, taglen)) in gcm_aes_crypt()
1028 scatterwalk_map_and_copy(param.t, req->dst, len, taglen, 1); in gcm_aes_crypt()
/linux-6.12.1/scripts/mod/
Dmodpost.c671 unsigned int taglen = strlen(tag); in get_next_modinfo() local
681 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
682 return p + taglen + 1; in get_next_modinfo()
/linux-6.12.1/fs/nfsd/
Dxdr4.h862 u32 taglen; member
878 u32 taglen; member
Dnfs4xdr.c2463 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0) in nfsd4_decode_compound()
2467 if (unlikely(argp->taglen)) { in nfsd4_decode_compound()
2468 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound()
2470 p = xdr_inline_decode(argp->xdr, argp->taglen); in nfsd4_decode_compound()
2473 argp->tag = svcxdr_savemem(argp, p, argp->taglen); in nfsd4_decode_compound()
2476 max_reply += xdr_align_size(argp->taglen); in nfsd4_decode_compound()
5887 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres()
5888 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres()
5889 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
Dnfs4proc.c2691 xdr_reserve_space(resp->xdr, XDR_UNIT * 2 + args->taglen); in nfsd4_proc_compound()
2692 resp->taglen = args->taglen; in nfsd4_proc_compound()
2722 trace_nfsd_compound(rqstp, args->tag, args->taglen, args->client_opcnt); in nfsd4_proc_compound()
Dtrace.h96 u32 taglen,
99 TP_ARGS(rqst, tag, taglen, opcnt),
103 __string_len(tag, tag, taglen)
/linux-6.12.1/kernel/module/
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()