diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2012-08-27 00:40:42 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2012-09-17 23:25:17 -0400 |
commit | 921eeadbbdd7ffba16937a3b63e408c980c39db6 (patch) | |
tree | 962e2735076b8704ea62003b0c41bb06dda8b250 /drivers/dma/ioat | |
parent | 5557a419d44d063be665100086adf4721d41ea49 (diff) |
dmaengine: use kmem_cache_zalloc instead of kmem_cache_alloc/memset
Using kmem_cache_zalloc() instead of kmem_cache_alloc() and memset().
spatch with a semantic match is used to found this problem.
(http://coccinelle.lip6.fr/)
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma/ioat')
-rw-r--r-- | drivers/dma/ioat/dma_v2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dma/ioat/dma_v2.c b/drivers/dma/ioat/dma_v2.c index 86895760b598..b9d667851445 100644 --- a/drivers/dma/ioat/dma_v2.c +++ b/drivers/dma/ioat/dma_v2.c | |||
@@ -434,12 +434,11 @@ static struct ioat_ring_ent *ioat2_alloc_ring_ent(struct dma_chan *chan, gfp_t f | |||
434 | return NULL; | 434 | return NULL; |
435 | memset(hw, 0, sizeof(*hw)); | 435 | memset(hw, 0, sizeof(*hw)); |
436 | 436 | ||
437 | desc = kmem_cache_alloc(ioat2_cache, flags); | 437 | desc = kmem_cache_zalloc(ioat2_cache, flags); |
438 | if (!desc) { | 438 | if (!desc) { |
439 | pci_pool_free(dma->dma_pool, hw, phys); | 439 | pci_pool_free(dma->dma_pool, hw, phys); |
440 | return NULL; | 440 | return NULL; |
441 | } | 441 | } |
442 | memset(desc, 0, sizeof(*desc)); | ||
443 | 442 | ||
444 | dma_async_tx_descriptor_init(&desc->txd, chan); | 443 | dma_async_tx_descriptor_init(&desc->txd, chan); |
445 | desc->txd.tx_submit = ioat2_tx_submit_unlock; | 444 | desc->txd.tx_submit = ioat2_tx_submit_unlock; |