diff options
| author | Li Heng <[email protected]> | 2020-07-30 06:43:50 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2020-07-31 00:41:05 +0000 |
| commit | bbf1b94a733d823f195d9e9f960a2e60718acc3e (patch) | |
| tree | 1023fd9725eda27b8c9af1cfa493e1ce4bfcae7e | |
| parent | liquidio: Replace vmalloc with kmalloc in octeon_register_dispatch_fn() (diff) | |
| download | kernel-bbf1b94a733d823f195d9e9f960a2e60718acc3e.tar.gz kernel-bbf1b94a733d823f195d9e9f960a2e60718acc3e.zip | |
bnxt_en: Remove superfluous memset()
Fixes coccicheck warning:
./drivers/net/ethernet/broadcom/bnxt/bnxt.c:3730:19-37: WARNING:
dma_alloc_coherent use in stats -> hw_stats already zeroes out
memory, so memset is not needed
dma_alloc_coherent use in status already zeroes out memory,
so memset is not needed
Reported-by: Hulk Robot <[email protected]>
Signed-off-by: Li Heng <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/broadcom/bnxt/bnxt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c index 2622d3c2d766..31fb5a28e1c4 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -3732,8 +3732,6 @@ static int bnxt_alloc_stats_mem(struct bnxt *bp, struct bnxt_stats_mem *stats, if (!stats->hw_stats) return -ENOMEM; - memset(stats->hw_stats, 0, stats->len); - stats->sw_stats = kzalloc(stats->len, GFP_KERNEL); if (!stats->sw_stats) goto stats_mem_err; |
