Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: acompress - Use crypto_request_complete

Use the crypto_request_complete helper instead of calling the
completion function directly.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

+1 -1
+1 -1
include/crypto/internal/acompress.h
··· 28 28 static inline void acomp_request_complete(struct acomp_req *req, 29 29 int err) 30 30 { 31 - req->base.complete(&req->base, err); 31 + crypto_request_complete(&req->base, err); 32 32 } 33 33 34 34 static inline const char *acomp_alg_name(struct crypto_acomp *tfm)