diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-11 22:22:14 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-12 10:46:03 +0800 |
commit | aef73cfcb913eae3d0deeb60eb385f75039db40b (patch) | |
tree | 3529010110c3dba2c1cc375b6cfb30d04153b73d /include/linux/crypto.h | |
parent | 57cfe44bccb0e38ddb44a34a42f517deef1f4e82 (diff) | |
download | kernel_samsung_smdk4412-aef73cfcb913eae3d0deeb60eb385f75039db40b.zip kernel_samsung_smdk4412-aef73cfcb913eae3d0deeb60eb385f75039db40b.tar.gz kernel_samsung_smdk4412-aef73cfcb913eae3d0deeb60eb385f75039db40b.tar.bz2 |
crypto: async - Use kzfree for requests
This patch changes the kfree call to kzfree for async requests.
As the request may contain sensitive data it needs to be zeroed
before it can be reallocated by others.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux/crypto.h')
-rw-r--r-- | include/linux/crypto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index ec29fa2..274f9c7 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -770,7 +770,7 @@ static inline struct ablkcipher_request *ablkcipher_request_alloc( static inline void ablkcipher_request_free(struct ablkcipher_request *req) { - kfree(req); + kzfree(req); } static inline void ablkcipher_request_set_callback( @@ -901,7 +901,7 @@ static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, static inline void aead_request_free(struct aead_request *req) { - kfree(req); + kzfree(req); } static inline void aead_request_set_callback(struct aead_request *req, |