[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 23/24] linux-user: Remove can_passthrough_madvise
From: |
Richard Henderson |
Subject: |
[PATCH v2 23/24] linux-user: Remove can_passthrough_madvise |
Date: |
Fri, 7 Jul 2023 21:40:53 +0100 |
Use page_check_range instead, which uses the interval tree
instead of checking each page individually.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/mmap.c | 24 +++---------------------
1 file changed, 3 insertions(+), 21 deletions(-)
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index e6463ecd8d..a2bef1ebe6 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -898,23 +898,6 @@ abi_long target_mremap(abi_ulong old_addr, abi_ulong
old_size,
return new_addr;
}
-static bool can_passthrough_madvise(abi_ulong start, abi_ulong end)
-{
- ulong addr;
-
- if ((start | end) & ~qemu_host_page_mask) {
- return false;
- }
-
- for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
- if (!(page_get_flags(addr) & PAGE_PASSTHROUGH)) {
- return false;
- }
- }
-
- return true;
-}
-
abi_long target_madvise(abi_ulong start, abi_ulong len_in, int advice)
{
abi_ulong len, end;
@@ -964,9 +947,8 @@ abi_long target_madvise(abi_ulong start, abi_ulong len_in,
int advice)
*
* A straight passthrough for those may not be safe because qemu sometimes
* turns private file-backed mappings into anonymous mappings.
- * can_passthrough_madvise() helps to check if a passthrough is possible by
- * comparing mappings that are known to have the same semantics in the host
- * and the guest. In this case passthrough is safe.
+ * If all guest pages have PAGE_PASSTHROUGH set, mappings have the
+ * same semantics for the host as for the guest.
*
* We pass through MADV_WIPEONFORK and MADV_KEEPONFORK if possible and
* return failure if not.
@@ -984,7 +966,7 @@ abi_long target_madvise(abi_ulong start, abi_ulong len_in,
int advice)
ret = -EINVAL;
/* fall through */
case MADV_DONTNEED:
- if (can_passthrough_madvise(start, end)) {
+ if (page_check_range(start, len, PAGE_PASSTHROUGH)) {
ret = get_errno(madvise(g2h_untagged(start), len, advice));
if ((advice == MADV_DONTNEED) && (ret == 0)) {
page_reset_target_data(start, start + len - 1);
--
2.34.1
- [PATCH v2 08/24] bsd-user: Use page_check_range_empty for MAP_EXCL, (continued)
- [PATCH v2 08/24] bsd-user: Use page_check_range_empty for MAP_EXCL, Richard Henderson, 2023/07/07
- [PATCH v2 11/24] linux-user: Widen target_mmap offset argument to off_t, Richard Henderson, 2023/07/07
- [PATCH v2 10/24] linux-user: Split out target_to_host_prot, Richard Henderson, 2023/07/07
- [PATCH v2 17/24] linux-user: Use 'last' instead of 'end' in target_mmap, Richard Henderson, 2023/07/07
- [PATCH v2 12/24] linux-user: Rewrite target_mprotect, Richard Henderson, 2023/07/07
- [PATCH v2 16/24] linux-user: Use page_find_range_empty for mmap_find_vma_reserved, Richard Henderson, 2023/07/07
- [PATCH v2 18/24] linux-user: Rewrite mmap_reserve, Richard Henderson, 2023/07/07
- [PATCH v2 13/24] linux-user: Rewrite mmap_frag, Richard Henderson, 2023/07/07
- [PATCH v2 23/24] linux-user: Remove can_passthrough_madvise,
Richard Henderson <=
- [PATCH v2 19/24] linux-user: Rename mmap_reserve to mmap_reserve_or_unmap, Richard Henderson, 2023/07/07
- [PATCH v2 14/24] accel/tcg: Introduce page_find_range_empty, Richard Henderson, 2023/07/07
- [PATCH v2 15/24] bsd-user: Use page_find_range_empty for mmap_find_vma_reserved, Richard Henderson, 2023/07/07
- [PATCH v2 20/24] linux-user: Simplify target_munmap, Richard Henderson, 2023/07/07
- [PATCH v2 21/24] accel/tcg: Accept more page flags in page_check_range, Richard Henderson, 2023/07/07
- [PATCH v2 22/24] accel/tcg: Return bool from page_check_range, Richard Henderson, 2023/07/07
- [PATCH v2 24/24] linux-user: Simplify target_madvise, Richard Henderson, 2023/07/07