diff options
Diffstat (limited to 'include/linux')
| -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 ec29fa268b94..274f9c7da90c 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
| @@ -770,7 +770,7 @@ static inline struct ablkcipher_request *ablkcipher_request_alloc( | |||
| 770 | 770 | ||
| 771 | static inline void ablkcipher_request_free(struct ablkcipher_request *req) | 771 | static inline void ablkcipher_request_free(struct ablkcipher_request *req) |
| 772 | { | 772 | { |
| 773 | kfree(req); | 773 | kzfree(req); |
| 774 | } | 774 | } |
| 775 | 775 | ||
| 776 | static inline void ablkcipher_request_set_callback( | 776 | static inline void ablkcipher_request_set_callback( |
| @@ -901,7 +901,7 @@ static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, | |||
| 901 | 901 | ||
| 902 | static inline void aead_request_free(struct aead_request *req) | 902 | static inline void aead_request_free(struct aead_request *req) |
| 903 | { | 903 | { |
| 904 | kfree(req); | 904 | kzfree(req); |
| 905 | } | 905 | } |
| 906 | 906 | ||
| 907 | static inline void aead_request_set_callback(struct aead_request *req, | 907 | static inline void aead_request_set_callback(struct aead_request *req, |
