projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cc01c7
)
crypto: aead - Use crypto_request_complete
author
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 31 Jan 2023 08:01:51 +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/aead.h
patch
|
blob
|
history
diff --git
a/include/crypto/internal/aead.h
b/include/crypto/internal/aead.h
index cd8cb1e921b7bd251b93dc49282006fde92b92df..28a95eb3182d06ec44b0dd788b5fa1bb650248a4 100644
(file)
--- a/
include/crypto/internal/aead.h
+++ b/
include/crypto/internal/aead.h
@@
-82,7
+82,7
@@
static inline void *aead_request_ctx_dma(struct aead_request *req)
static inline void aead_request_complete(struct aead_request *req, int err)
{
-
req->base.
complete(&req->base, err);
+
crypto_request_
complete(&req->base, err);
}
static inline u32 aead_request_flags(struct aead_request *req)