Re: [dpdk-dev] [PATCH 2/4] malloc: separate destroying memseg list and heap data

2018-12-14 Thread Yongseok Koh
On Thu, Nov 29, 2018 at 01:48:33PM +, Anatoly Burakov wrote: > Currently, destroying external heap chunk and its memseg list is > part of one process. When we will gain the ability to unregister > external memory from DPDK that doesn't have any heap structures > associated with it, we need to b

[dpdk-dev] [PATCH 2/4] malloc: separate destroying memseg list and heap data

2018-11-29 Thread Anatoly Burakov
Currently, destroying external heap chunk and its memseg list is part of one process. When we will gain the ability to unregister external memory from DPDK that doesn't have any heap structures associated with it, we need to be able to find and destroy memseg lists as well as heap data separately.