Re: [dpdk-dev] [PATCH 03/41] eal: make malloc heap a doubly-linked list

2018-03-20 Thread Burakov, Anatoly
On 19-Mar-18 5:33 PM, Olivier Matz wrote: On Sat, Mar 03, 2018 at 01:45:51PM +, Anatoly Burakov wrote: As we are preparing for dynamic memory allocation, we need to be able to handle holes in our malloc heap, hence we're switching to doubly linked list, and prepare infrastructure to support

Re: [dpdk-dev] [PATCH 03/41] eal: make malloc heap a doubly-linked list

2018-03-19 Thread Olivier Matz
On Sat, Mar 03, 2018 at 01:45:51PM +, Anatoly Burakov wrote: > As we are preparing for dynamic memory allocation, we need to be > able to handle holes in our malloc heap, hence we're switching to > doubly linked list, and prepare infrastructure to support it. > > Since our heap is now aware wh

[dpdk-dev] [PATCH 03/41] eal: make malloc heap a doubly-linked list

2018-03-03 Thread Anatoly Burakov
As we are preparing for dynamic memory allocation, we need to be able to handle holes in our malloc heap, hence we're switching to doubly linked list, and prepare infrastructure to support it. Since our heap is now aware where are our first and last elements, there is no longer any need to have a