Re: [U-Boot] [PATCH] board_f: reserve noncached space below malloc area

2019-08-09 Thread Vikas MANOCHA
Hi Simon, > -Original Message- > From: Simon Glass > Sent: Friday, August 9, 2019 10:00 AM > To: Vikas MANOCHA > Cc: U-Boot Mailing List ; Bin Meng > ; CITOOLS revi...@lists.codex.cro.st.com>; Mario Six ; Patrick > DELAUNAY > Subject: Re: [PATCH] board_f: reserve noncached space below

Re: [U-Boot] [PATCH] board_f: reserve noncached space below malloc area

2019-08-09 Thread Simon Glass
Hi Vikas, On Thu, 8 Aug 2019 at 18:24, Vikas Manocha wrote: > > Noncached area at present is being initialized to random space after malloc > area. It works in most the cases as it goes to stack area & stack is not > overwriting it being far from it. Please can you add a motivation for this

[U-Boot] [PATCH] board_f: reserve noncached space below malloc area

2019-08-08 Thread Vikas Manocha
Noncached area at present is being initialized to random space after malloc area. It works in most the cases as it goes to stack area & stack is not overwriting it being far from it. Signed-off-by: Vikas Manocha --- common/board_f.c | 13 + 1 file changed, 13 insertions(+) diff