projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba354b2
)
crypto: skcipher - Use crypto_request_complete
author
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 31 Jan 2023 08:02:00 +0000
(16:02 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Mon, 13 Feb 2023 10:34:49 +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/skcipher.h
patch
|
blob
|
history
diff --git
a/include/crypto/internal/skcipher.h
b/include/crypto/internal/skcipher.h
index 06d0a5491cf38c7a6cbf4cd1d26fab67646d6f6e..fb3d9e899f526b08e9b456418860e49b6309f206 100644
(file)
--- a/
include/crypto/internal/skcipher.h
+++ b/
include/crypto/internal/skcipher.h
@@
-94,7
+94,7
@@
static inline void *skcipher_instance_ctx(struct skcipher_instance *inst)
static inline void skcipher_request_complete(struct skcipher_request *req, int err)
{
-
req->base.
complete(&req->base, err);
+
crypto_request_
complete(&req->base, err);
}
int crypto_grab_skcipher(struct crypto_skcipher_spawn *spawn,