[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 18/33] linux-user: Fix sub-host-page mmap
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v3 18/33] linux-user: Fix sub-host-page mmap |
|
Date: |
Tue, 2 Jan 2024 12:57:53 +1100 |
We cannot skip over the_end1 to the_end, because we fail to
record the validity of the guest page with the interval tree.
Remove "the_end" and rename "the_end1" to "the_end".
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/mmap.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index fbaea832c5..48fcdd4a32 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -643,7 +643,7 @@ static abi_long target_mmap__locked(abi_ulong start,
abi_ulong len,
target_prot, flags, fd, offset)) {
return -1;
}
- goto the_end1;
+ goto the_end;
}
if (!mmap_frag(real_start, start,
real_start + host_page_size - 1,
@@ -690,7 +690,7 @@ static abi_long target_mmap__locked(abi_ulong start,
abi_ulong len,
passthrough_last = real_last;
}
}
- the_end1:
+ the_end:
if (flags & MAP_ANONYMOUS) {
page_flags |= PAGE_ANON;
}
@@ -708,7 +708,6 @@ static abi_long target_mmap__locked(abi_ulong start,
abi_ulong len,
}
}
shm_region_rm_complete(start, last);
- the_end:
trace_target_mmap_complete(start);
if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
FILE *f = qemu_log_trylock();
--
2.34.1
- Re: [PATCH v3 14/33] softmmu/physmem: Remove HOST_PAGE_ALIGN, (continued)
- [PATCH v3 15/33] linux-user: Remove qemu_host_page_size from main, Richard Henderson, 2024/01/01
- [PATCH v3 16/33] linux-user: Split out target_mmap__locked, Richard Henderson, 2024/01/01
- [PATCH v3 17/33] linux-user: Move some mmap checks outside the lock, Richard Henderson, 2024/01/01
- [PATCH v3 18/33] linux-user: Fix sub-host-page mmap,
Richard Henderson <=
- [PATCH v3 19/33] linux-user: Split out mmap_end, Richard Henderson, 2024/01/01
- [PATCH v3 21/33] linux-user: Split out mmap_h_eq_g, Richard Henderson, 2024/01/01
- [PATCH v3 24/33] tests/tcg: Remove run-test-mmap-*, Richard Henderson, 2024/01/01