On Thu, May 08, 2025 at 12:41:17PM -0700, Kanchana P Sridhar wrote:
>
> diff --git a/crypto/acompress.c b/crypto/acompress.c
> index 82fb3c04e68f..d08e0fe8cd9e 100644
> --- a/crypto/acompress.c
> +++ b/crypto/acompress.c
> @@ -310,21 +310,13 @@ static int acomp_do_req_chain(struct acomp_req *req, bool comp)
>
> int crypto_acomp_compress(struct acomp_req *req)
> {
> - struct crypto_acomp *tfm = crypto_acomp_reqtfm(req);
> -
> - if (crypto_acomp_req_chain(tfm) || acomp_request_issg(req))
> - crypto_acomp_reqtfm(req)->compress(req);
> - return acomp_do_req_chain(req, true);
> + return crypto_acomp_reqtfm(req)->compress(req);
That's not right. Request chaining has already been removed.
What remains is linear address support which you've just removed
with this patch.
Cheers,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt