Re: [PATCH 1/1] linux-user: Preserve NULL hit in target_mmap subroutines

2024-08-15 Thread Peter Maydell
On Thu, 15 Aug 2024 at 02:07, Richard Henderson wrote: > > Do not pass guest_base to the host mmap instead of zero hint. > > Cc: qemu-sta...@nongnu.org > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2353 > Signed-off-by: Richard Henderson Typo in subject line: s/hit/hint/. -- PMM

Re: [PATCH 1/1] linux-user: Preserve NULL hit in target_mmap subroutines

2024-08-15 Thread Philippe Mathieu-Daudé
On 15/8/24 03:05, Richard Henderson wrote: Do not pass guest_base to the host mmap instead of zero hint. Cc: qemu-sta...@nongnu.org Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2353 Signed-off-by: Richard Henderson FTR per https://lore.kernel.org/qemu-devel/6d425bd0-efd0-42ee-af3e

[PATCH 1/1] linux-user: Preserve NULL hit in target_mmap subroutines

2024-08-14 Thread Richard Henderson
Do not pass guest_base to the host mmap instead of zero hint. Cc: qemu-sta...@nongnu.org Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2353 Signed-off-by: Richard Henderson --- linux-user/mmap.c | 18 +++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/lin