Re: [v2 PATCH] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt

From: Xin Long

Date: Wed Dec 31 2025 - 16:07:00 EST


On Sun, Dec 21, 2025 at 8:47 PM Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> wrote:
>
> On Fri, Dec 19, 2025 at 12:58:49PM -0500, Xin Long wrote:
> >
> > Which upstream git repo will this patch be applied to?
>
> I intend to push this to Linus for 6.19.
>
BTW, Do you think it might have the similar issue in essiv_aead_crypt()?

if (rctx->assoc && err != -EINPROGRESS && err != -EBUSY)
kfree(rctx->assoc);

since rctx comes from req.

Thanks.