crypto: drivers - Use kmemdup rather than duplicating its implementation
kmemdup is introduced to duplicate a region of memory in a neat way. Rather than kmalloc/kzalloc + memcpy, which the programmer needs to write the size twice (sometimes lead to mistakes), kmemdup improves readability, leads to smaller code and also reduce the chances of mistakes. Suggestion to use kmemdup rather than using kmalloc/kzalloc + memcpy. Signed-off-by: Fuqian Huang <huangfq.daxian@gmail.com> Reviewed-by: Horia Geantă <horia.geanta@nxp.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
@@ -129,13 +129,11 @@ static int virtio_crypto_alg_ablkcipher_init_session(
|
||||
* Avoid to do DMA from the stack, switch to using
|
||||
* dynamically-allocated for the key
|
||||
*/
|
||||
uint8_t *cipher_key = kmalloc(keylen, GFP_ATOMIC);
|
||||
uint8_t *cipher_key = kmemdup(key, keylen, GFP_ATOMIC);
|
||||
|
||||
if (!cipher_key)
|
||||
return -ENOMEM;
|
||||
|
||||
memcpy(cipher_key, key, keylen);
|
||||
|
||||
spin_lock(&vcrypto->ctrl_lock);
|
||||
/* Pad ctrl header */
|
||||
vcrypto->ctrl.header.opcode =
|
||||
|
||||
Reference in New Issue
Block a user