On 1/30/2020 2:49 AM, Iuliana Prodan wrote: > @@ -1362,6 +1378,10 @@ static struct aead_edesc *aead_edesc_alloc(struct aead_request *req, > edesc->mapped_dst_nents = mapped_dst_nents; > edesc->sec4_sg = (void *)edesc + sizeof(struct aead_edesc) + > desc_bytes; > + > + edesc->bklog = false; Nitpick (similar to skcipher): not needed, edesc is allocated using kzalloc(). Horia