On 6/6/2024 10:20 AM, Alexander Sapozhnikov wrote: > From: Alexandr Sapozhnikov <alsp705@xxxxxxxxx> > > Found by Linux Verification Center (linuxtesting.org) with SVACE. > > Signed-off-by: Alexandr Sapozhnikov <alsp705@xxxxxxxxx> > --- > crypto/algif_aead.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/crypto/algif_aead.c b/crypto/algif_aead.c > index 42493b4..f757907 100644 > --- a/crypto/algif_aead.c > +++ b/crypto/algif_aead.c > @@ -191,7 +191,7 @@ static int _aead_recvmsg(struct socket *sock, struct msghdr *msg, > if (tsgl_src) > break; > } > - if (processed && !tsgl_src) { > + if (processed || !tsgl_src) { > err = -EFAULT; > goto free; > } Please see https://www.kernel.org/doc/html/latest/process/submitting-patches.html#the-canonical-patch-format and format your subject line accordingly. Thanks, Easwar