Home
last modified time | relevance | path

Searched refs:MAX_SGL_ENTS (Results 1 – 2 of 2) sorted by relevance

/linux/crypto/
H A Daf_alg.c616 if (!sg || sgl->cur >= MAX_SGL_ENTS) { in af_alg_alloc_tsgl()
618 struct_size(sgl, sg, (MAX_SGL_ENTS + 1)), in af_alg_alloc_tsgl()
623 sg_init_table(sgl->sg, MAX_SGL_ENTS + 1); in af_alg_alloc_tsgl()
627 sg_unmark_end(sg + MAX_SGL_ENTS - 1); in af_alg_alloc_tsgl()
628 sg_chain(sg, MAX_SGL_ENTS + 1, sgl->sg); in af_alg_alloc_tsgl()
729 sock_kfree_s(sk, sgl, struct_size(sgl, sg, MAX_SGL_ENTS + 1)); in af_alg_pull_tsgl()
1030 MAX_SGL_ENTS - sgl->cur, 0); in af_alg_sendmsg()
1072 } while (len && sgl->cur < MAX_SGL_ENTS); in af_alg_sendmsg()
/linux/include/crypto/
H A Dif_alg.h71 #define MAX_SGL_ENTS ((4096 - sizeof(struct af_alg_tsgl)) / \ macro