[U-Boot] [PATCH v3 03/14] dm: Split the simple malloc() implementation into its own file

2014-11-10 Thread Simon Glass
The simple malloc() implementation is used when memory is tight. It provides a simple buffer with an incrementing pointer. At present the implementation is inside dlmalloc. Move it into its own file so that it is easier to find. Rather than using relocation as a signal that the full malloc() is a

Re: [U-Boot] [PATCH v3 03/14] dm: Split the simple malloc() implementation into its own file

2014-11-23 Thread Simon Glass
On 11 November 2014 at 01:16, Simon Glass wrote: > The simple malloc() implementation is used when memory is tight. It provides > a simple buffer with an incrementing pointer. > > At present the implementation is inside dlmalloc. Move it into its own file > so that it is easier to find. > > Rather