Re: [PATCH 05/40] spl: alloc: call full alloc functions if malloc pool is available

2024-07-29 Thread Simon Glass
Hi Sughosh, On Mon, 29 Jul 2024 at 01:46, Sughosh Ganu wrote: > > hi Simon, > > On Fri, 26 Jul 2024 at 05:02, Simon Glass wrote: > > > > Hi Sughosh, > > > > On Wed, 24 Jul 2024 at 00:03, Sughosh Ganu wrote: > > > > > > If the malloc simple functionality is enabled in SPL, it is not > > >

Re: [PATCH 05/40] spl: alloc: call full alloc functions if malloc pool is available

2024-07-29 Thread Sughosh Ganu
hi Simon, On Fri, 26 Jul 2024 at 05:02, Simon Glass wrote: > > Hi Sughosh, > > On Wed, 24 Jul 2024 at 00:03, Sughosh Ganu wrote: > > > > If the malloc simple functionality is enabled in SPL, it is not > > possible to call the full-implementation alloc functions even after > > the heap is set-up

Re: [PATCH 05/40] spl: alloc: call full alloc functions if malloc pool is available

2024-07-25 Thread Simon Glass
Hi Sughosh, On Wed, 24 Jul 2024 at 00:03, Sughosh Ganu wrote: > > If the malloc simple functionality is enabled in SPL, it is not > possible to call the full-implementation alloc functions even after > the heap is set-up in ram memory. Check for this condition and > call the functions when

[PATCH 05/40] spl: alloc: call full alloc functions if malloc pool is available

2024-07-24 Thread Sughosh Ganu
If the malloc simple functionality is enabled in SPL, it is not possible to call the full-implementation alloc functions even after the heap is set-up in ram memory. Check for this condition and call the functions when enabled. Signed-off-by: Sughosh Ganu --- Changes since rfc: New patch