mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-19 19:14:01 +08:00
crypto: cavium/nitrox - use dma_pool_zalloc()
use dma_pool_zalloc() instead of dma_pool_alloc with __GFP_ZERO flag. crypto dma pool renamed to "nitrox-context". Signed-off-by: Srikanth Jampala <Jampala.Srikanth@cavium.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
910e3ca10b
commit
718f608c38
@ -122,7 +122,7 @@ static int create_crypto_dma_pool(struct nitrox_device *ndev)
|
||||
|
||||
/* Crypto context pool, 16 byte aligned */
|
||||
size = CRYPTO_CTX_SIZE + sizeof(struct ctx_hdr);
|
||||
ndev->ctx_pool = dma_pool_create("crypto-context",
|
||||
ndev->ctx_pool = dma_pool_create("nitrox-context",
|
||||
DEV(ndev), size, 16, 0);
|
||||
if (!ndev->ctx_pool)
|
||||
return -ENOMEM;
|
||||
@ -149,7 +149,7 @@ void *crypto_alloc_context(struct nitrox_device *ndev)
|
||||
void *vaddr;
|
||||
dma_addr_t dma;
|
||||
|
||||
vaddr = dma_pool_alloc(ndev->ctx_pool, (GFP_KERNEL | __GFP_ZERO), &dma);
|
||||
vaddr = dma_pool_zalloc(ndev->ctx_pool, GFP_KERNEL, &dma);
|
||||
if (!vaddr)
|
||||
return NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user