Re: [dpdk-dev] [PATCH] net/bnxt: remove code to initialize SRAM slice node

2021-09-27 Thread Ferruh Yigit
On 9/25/2021 3:24 PM, Ajit Khaparde wrote: > From: Kishore Padmanabha > > Remove the code to initialize SRAM slice mode explicitly. The > code is redundanat as the memory allocated is initialized to > zero by the rte_zmalloc. This fixes the compilation issue for > uninitialized pointer when debug

[dpdk-dev] [PATCH] net/bnxt: remove code to initialize SRAM slice node

2021-09-25 Thread Ajit Khaparde
From: Kishore Padmanabha Remove the code to initialize SRAM slice mode explicitly. The code is redundanat as the memory allocated is initialized to zero by the rte_zmalloc. This fixes the compilation issue for uninitialized pointer when debug optimized configuration is used. Signed-off-by: Kisho