Re: [PATCH v3 17/24] ethernet: remove redundant memset

2019-07-15 Thread David Miller
From: Fuqian Huang Date: Mon, 15 Jul 2019 11:19:11 +0800 > kvzalloc already zeroes the memory during the allocation. > pci_alloc_consistent calls dma_alloc_coherent directly. > In commit 518a2f1925c3 > ("dma-mapping: zero memory returned from dma_alloc_*"), > dma_alloc_coherent has already

[PATCH v3 17/24] ethernet: remove redundant memset

2019-07-14 Thread Fuqian Huang
kvzalloc already zeroes the memory during the allocation. pci_alloc_consistent calls dma_alloc_coherent directly. In commit 518a2f1925c3 ("dma-mapping: zero memory returned from dma_alloc_*"), dma_alloc_coherent has already zeroed the memory. So the memset after these function is not needed.