Re: [U-Boot] [PATCH] malloc: Fix memalign not honoring alignment prior to full malloc init

2019-04-16 Thread Andreas Dannenberg
Hi Tom et al., On Wed, Mar 27, 2019 at 01:17:26PM -0500, Andreas Dannenberg wrote: > When using memalign() in a scenario where U-Boot is configured for full > malloc support with simple malloc not explicitly enabled and before the > full malloc support is initialized, a memory block is being alloc

Re: [U-Boot] [PATCH] malloc: Fix memalign not honoring alignment prior to full malloc init

2019-03-27 Thread Lokesh Vutla
On 27/03/19 11:47 PM, Andreas Dannenberg wrote: > When using memalign() in a scenario where U-Boot is configured for full > malloc support with simple malloc not explicitly enabled and before the > full malloc support is initialized, a memory block is being allocated > and returned without the al

[U-Boot] [PATCH] malloc: Fix memalign not honoring alignment prior to full malloc init

2019-03-27 Thread Andreas Dannenberg
When using memalign() in a scenario where U-Boot is configured for full malloc support with simple malloc not explicitly enabled and before the full malloc support is initialized, a memory block is being allocated and returned without the alignment parameter getting honored. Fix this issue by repl