Re: [PATCH v2 17/24] linux-user: Use 'last' instead of 'end' in target_mmap

2023-07-08 Thread Philippe Mathieu-Daudé
On 7/7/23 22:40, Richard Henderson wrote: Complete the transition within the mmap functions to a formulation that does not overflow at the end of the address space. Signed-off-by: Richard Henderson --- linux-user/mmap.c | 45 +++-- 1 file changed, 23 i

[PATCH v2 17/24] linux-user: Use 'last' instead of 'end' in target_mmap

2023-07-07 Thread Richard Henderson
Complete the transition within the mmap functions to a formulation that does not overflow at the end of the address space. Signed-off-by: Richard Henderson --- linux-user/mmap.c | 45 +++-- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/li