Home
last modified time | relevance | path

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

/linux-6.15/fs/nfs/
H A Dcallback.h33 unsigned int taglen; member
42 unsigned int taglen; member
H A 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()
991 hdr_res.taglen = hdr_arg.taglen; in nfs4_callback_compound()
H A 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.15/arch/x86/crypto/
H A Daesni-intel_glue.c1119 const u8 tag[16], int taglen);
1124 const u8 tag[16], int taglen);
1129 const u8 tag[16], int taglen);
1135 u8 tag[16], int taglen, int flags) in aes_gcm_dec_final() argument
1141 tag, taglen); in aes_gcm_dec_final()
1146 tag, taglen); in aes_gcm_dec_final()
1151 tag, taglen); in aes_gcm_dec_final()
1360 int taglen; in gcm_crypt() local
1427 taglen = crypto_aead_authsize(tfm); in gcm_crypt()
1435 req->cryptlen, taglen, 1); in gcm_crypt()
[all …]
/linux-6.15/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-6.15/arch/s390/crypto/
H A Daes_s390.c927 unsigned int taglen = crypto_aead_authsize(tfm); in gcm_aes_crypt() local
958 pclen -= taglen; in gcm_aes_crypt()
1013 scatterwalk_map_and_copy(tag, req->src, len, taglen, 0); in gcm_aes_crypt()
1014 if (crypto_memneq(tag, param.t, taglen)) in gcm_aes_crypt()
1017 scatterwalk_map_and_copy(param.t, req->dst, len, taglen, 1); in gcm_aes_crypt()
/linux-6.15/fs/nfsd/
H A Dxdr4.h867 u32 taglen; member
883 u32 taglen; member
H A Dnfs4xdr.c2485 if (xdr_stream_decode_u32(argp->xdr, &argp->taglen) < 0) in nfsd4_decode_compound()
2489 if (unlikely(argp->taglen)) { in nfsd4_decode_compound()
2490 if (argp->taglen > NFSD4_MAX_TAGLEN) in nfsd4_decode_compound()
2492 p = xdr_inline_decode(argp->xdr, argp->taglen); in nfsd4_decode_compound()
2495 argp->tag = svcxdr_savemem(argp, p, argp->taglen); in nfsd4_decode_compound()
2498 max_reply += xdr_align_size(argp->taglen); in nfsd4_decode_compound()
6004 *p++ = htonl(resp->taglen); in nfs4svc_encode_compoundres()
6005 memcpy(p, resp->tag, resp->taglen); in nfs4svc_encode_compoundres()
6006 p += XDR_QUADLEN(resp->taglen); in nfs4svc_encode_compoundres()
H A Dnfs4proc.c2800 xdr_reserve_space(resp->xdr, XDR_UNIT * 2 + args->taglen); in nfsd4_proc_compound()
2801 resp->taglen = args->taglen; in nfsd4_proc_compound()
2831 trace_nfsd_compound(rqstp, args->tag, args->taglen, args->client_opcnt); in nfsd4_proc_compound()
H A Dtrace.h96 u32 taglen,
99 TP_ARGS(rqst, tag, taglen, opcnt),
103 __string_len(tag, tag, taglen)
/linux-6.15/scripts/mod/
H A Dmodpost.c678 unsigned int taglen = strlen(tag); in get_next_modinfo() local
688 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
689 return p + taglen + 1; in get_next_modinfo()
/linux-6.15/kernel/module/
H A Dmain.c1059 unsigned int taglen = strlen(tag); in get_next_modinfo() local
1075 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
1076 return p + taglen + 1; in get_next_modinfo()