[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 21/36] linux-user: Split out do_munmap
From: |
Richard Henderson |
Subject: |
[PATCH v4 21/36] linux-user: Split out do_munmap |
Date: |
Wed, 14 Feb 2024 20:20:03 -1000 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/mmap.c | 23 ++++++++++++++++-------
1 file changed, 16 insertions(+), 7 deletions(-)
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index 1bbfeb25b1..8ebcca4444 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -267,6 +267,21 @@ int target_mprotect(abi_ulong start, abi_ulong len, int
target_prot)
return ret;
}
+/*
+ * Perform munmap on behalf of the target, with host parameters.
+ * If reserved_va, we must replace the memory reservation.
+ */
+static int do_munmap(void *addr, size_t len)
+{
+ if (reserved_va) {
+ void *ptr = mmap(addr, len, PROT_NONE,
+ MAP_FIXED | MAP_ANONYMOUS
+ | MAP_PRIVATE | MAP_NORESERVE, -1, 0);
+ return ptr == addr ? 0 : -1;
+ }
+ return munmap(addr, len);
+}
+
/* map an incomplete host page */
static bool mmap_frag(abi_ulong real_start, abi_ulong start, abi_ulong last,
int prot, int flags, int fd, off_t offset)
@@ -854,13 +869,7 @@ static int mmap_reserve_or_unmap(abi_ulong start,
abi_ulong len)
real_len = real_last - real_start + 1;
host_start = g2h_untagged(real_start);
- if (reserved_va) {
- void *ptr = mmap(host_start, real_len, PROT_NONE,
- MAP_FIXED | MAP_ANONYMOUS
- | MAP_PRIVATE | MAP_NORESERVE, -1, 0);
- return ptr == host_start ? 0 : -1;
- }
- return munmap(host_start, real_len);
+ return do_munmap(host_start, real_len);
}
int target_munmap(abi_ulong start, abi_ulong len)
--
2.34.1
- [PATCH v4 11/36] migration: Remove qemu_host_page_size, (continued)
- [PATCH v4 11/36] migration: Remove qemu_host_page_size, Richard Henderson, 2024/02/15
- [PATCH v4 14/36] softmmu/physmem: Remove HOST_PAGE_ALIGN, Richard Henderson, 2024/02/15
- [PATCH v4 13/36] softmmu/physmem: Remove qemu_host_page_size, Richard Henderson, 2024/02/15
- [PATCH v4 16/36] linux-user: Split out target_mmap__locked, Richard Henderson, 2024/02/15
- [PATCH v4 17/36] linux-user: Move some mmap checks outside the lock, Richard Henderson, 2024/02/15
- [PATCH v4 12/36] hw/tpm: Remove HOST_PAGE_ALIGN from tpm_ppi_init, Richard Henderson, 2024/02/15
- [PATCH v4 08/36] linux-user: Remove qemu_host_page_{size, mask} from mmap.c, Richard Henderson, 2024/02/15
- [PATCH v4 15/36] linux-user: Remove qemu_host_page_size from main, Richard Henderson, 2024/02/15
- [PATCH v4 18/36] linux-user: Fix sub-host-page mmap, Richard Henderson, 2024/02/15
- [PATCH v4 19/36] linux-user: Split out mmap_end, Richard Henderson, 2024/02/15
- [PATCH v4 21/36] linux-user: Split out do_munmap,
Richard Henderson <=
- [PATCH v4 22/36] linux-user: Use do_munmap for target_mmap failure, Richard Henderson, 2024/02/15
- [PATCH v4 20/36] linux-user: Do early mmap placement only for reserved_va, Richard Henderson, 2024/02/15
- [PATCH v4 23/36] linux-user: Split out mmap_h_eq_g, Richard Henderson, 2024/02/15
- [PATCH v4 24/36] linux-user: Split out mmap_h_lt_g, Richard Henderson, 2024/02/15
- [PATCH v4 25/36] linux-user: Split out mmap_h_gt_g, Richard Henderson, 2024/02/15
- [PATCH v4 26/36] tests/tcg: Remove run-test-mmap-*, Richard Henderson, 2024/02/15
- [PATCH v4 27/36] tests/tcg: Extend file in linux-madvise.c, Richard Henderson, 2024/02/15
- [PATCH v4 28/36] *-user: Deprecate and disable -p pagesize, Richard Henderson, 2024/02/15