projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
372e6b8
)
crypto: akcipher - Use crypto_request_complete
author
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 31 Jan 2023 08:01:53 +0000
(16:01 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Mon, 13 Feb 2023 10:34:48 +0000
(18:34 +0800)
Use the crypto_request_complete helper instead of calling the
completion function directly.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
include/crypto/internal/akcipher.h
patch
|
blob
|
history
diff --git
a/include/crypto/internal/akcipher.h
b/include/crypto/internal/akcipher.h
index aaf1092b93b80e5cf4cecb3ac226c2d823a77793..a0fba4b2eccfa0c637855788da5660a8b30e5676 100644
(file)
--- a/
include/crypto/internal/akcipher.h
+++ b/
include/crypto/internal/akcipher.h
@@
-69,7
+69,7
@@
static inline void *akcipher_tfm_ctx_dma(struct crypto_akcipher *tfm)
static inline void akcipher_request_complete(struct akcipher_request *req,
int err)
{
-
req->base.
complete(&req->base, err);
+
crypto_request_
complete(&req->base, err);
}
static inline const char *akcipher_alg_name(struct crypto_akcipher *tfm)