Re: [PATCH 4/5] linux-user: Do nothing if too small brk is specified

2023-07-31 Thread Helge Deller
On 7/31/23 10:03, Akihiko Odaki wrote: Linux 6.4.7 does nothing when a value smaller than the initial brk is specified. Fixes: 86f04735ac ("linux-user: Fix brk() to release pages") Signed-off-by: Akihiko Odaki Reviewed-by: Helge Deller Helge --- linux-user/syscall.c | 6 +++--- 1 file

[PATCH 4/5] linux-user: Do nothing if too small brk is specified

2023-07-31 Thread Akihiko Odaki
Linux 6.4.7 does nothing when a value smaller than the initial brk is specified. Fixes: 86f04735ac ("linux-user: Fix brk() to release pages") Signed-off-by: Akihiko Odaki --- linux-user/syscall.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux-user/syscall.c b/lin