Re: [PATCH] mem: explicitly initialise shared locks

2024-02-01 Thread David Marchand
On Fri, Oct 27, 2023 at 10:01 AM David Marchand wrote: > > Locks in the DPDK shared memory were not initialised so far. > This is not really a problem as the early_mem_config structure is stored > in the bss section (and so set to 0 by default). > Yet, for consistency, explicitly initialise those

Re: [PATCH] mem: explicitly initialise shared locks

2023-10-27 Thread fengchengwen
Acked-by: Chengwen Feng On 2023/10/27 16:00, David Marchand wrote: > Locks in the DPDK shared memory were not initialised so far. > This is not really a problem as the early_mem_config structure is stored > in the bss section (and so set to 0 by default). > Yet, for consistency, explicitly initia

[PATCH] mem: explicitly initialise shared locks

2023-10-27 Thread David Marchand
Locks in the DPDK shared memory were not initialised so far. This is not really a problem as the early_mem_config structure is stored in the bss section (and so set to 0 by default). Yet, for consistency, explicitly initialise those locks with relevant initialiser macros. Suggested-by: Thomas Monj