Re: [PATCH v2] crypto: acomp - search acomp with scomp backend in crypto_has_acomp

2020-05-07 Thread Herbert Xu
On Thu, Apr 30, 2020 at 05:10:18PM +1200, Barry Song wrote: > users may call crypto_has_acomp to confirm the existence of acomp before using > crypto_acomp APIs. Right now, many acomp have scomp backend, for example, lz4, > lzo, deflate etc. crypto_has_acomp will return false for them even though t

[PATCH v2] crypto: acomp - search acomp with scomp backend in crypto_has_acomp

2020-04-29 Thread Barry Song
users may call crypto_has_acomp to confirm the existence of acomp before using crypto_acomp APIs. Right now, many acomp have scomp backend, for example, lz4, lzo, deflate etc. crypto_has_acomp will return false for them even though they support acomp APIs. Signed-off-by: Barry Song --- -v2: fixe