|
@@ -770,7 +770,7 @@ static inline struct ablkcipher_request *ablkcipher_request_alloc(
|
|
|
|
|
|
static inline void ablkcipher_request_free(struct ablkcipher_request *req)
|
|
static inline void ablkcipher_request_free(struct ablkcipher_request *req)
|
|
{
|
|
{
|
|
- kfree(req);
|
|
|
|
|
|
+ kzfree(req);
|
|
}
|
|
}
|
|
|
|
|
|
static inline void ablkcipher_request_set_callback(
|
|
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)
|
|
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,
|
|
static inline void aead_request_set_callback(struct aead_request *req,
|