[dpdk-dev] [PATCH 2/2] malloc: simplify heap initialisation

2014-04-30 Thread Thomas Monjalon
2014-04-18 09:09, Neil Horman: > On Fri, Apr 18, 2014 at 02:56:18PM +0200, David Marchand wrote: > > There should be no real need for this initialised field as the whole > > structure is set to 0 in rte_config_init() by primary process, and > > secondary processes wait for this to happen before any

[dpdk-dev] [PATCH 2/2] malloc: simplify heap initialisation

2014-04-18 Thread David Marchand
There should be no real need for this initialised field as the whole structure is set to 0 in rte_config_init() by primary process, and secondary processes wait for this to happen before anything else (looking at mem_config magic). Signed-off-by: David Marchand --- lib/librte_eal/common/include/

[dpdk-dev] [PATCH 2/2] malloc: simplify heap initialisation

2014-04-18 Thread Neil Horman
On Fri, Apr 18, 2014 at 02:56:18PM +0200, David Marchand wrote: > There should be no real need for this initialised field as the whole structure > is set to 0 in rte_config_init() by primary process, and secondary processes > wait for this to happen before anything else (looking at mem_config magic