Re: [PATCH 0/8] net: ethernet: reduce calls to memset(,0)

2019-02-28 Thread Christoph Hellwig
On Tue, Feb 26, 2019 at 10:04:54PM -0800, Robert Eshleman wrote: > This patch series removes calls to memset(,0) that are > redundant when used in conjunction with a zalloc call or > by simple zero-assignment of structs. NAK. pci_zalloc_consistent is just as deprecated as pci_alloc_consistent, an

[PATCH 0/8] net: ethernet: reduce calls to memset(,0)

2019-02-26 Thread Robert Eshleman
This patch series removes calls to memset(,0) that are redundant when used in conjunction with a zalloc call or by simple zero-assignment of structs. Robert Eshleman (8): net/mlx4: use kzalloc instead of kmalloc net/mlxsw: use pci_zalloc_consistent instead of pci_alloc_consistent tlan: use p