Re: [PATCH v8 14/17] linux-user: Properly set image_info.brk in flatload

2023-08-04 Thread Helge Deller
* Richard Henderson : > The heap starts at "brk" not "start_brk". With this fixed, > image_info.start_brk is unused and may be removed. > > Signed-off-by: Richard Henderson Reviewed-by: Helge Deller

Re: [PATCH v8 14/17] linux-user: Properly set image_info.brk in flatload

2023-08-03 Thread Akihiko Odaki
On 2023/08/04 10:45, Richard Henderson wrote: The heap starts at "brk" not "start_brk". With this fixed, image_info.start_brk is unused and may be removed. Signed-off-by: Richard Henderson Reviewed-by: Akihiko Odaki

[PATCH v8 14/17] linux-user: Properly set image_info.brk in flatload

2023-08-03 Thread Richard Henderson
The heap starts at "brk" not "start_brk". With this fixed, image_info.start_brk is unused and may be removed. Signed-off-by: Richard Henderson --- linux-user/qemu.h | 1 - linux-user/flatload.c | 2 +- linux-user/main.c | 2 -- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git