qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] linux-user: Do not treat madvise()'s advice as a bitmask


From: Laurent Vivier
Subject: Re: [PATCH] linux-user: Do not treat madvise()'s advice as a bitmask
Date: Fri, 29 Jul 2022 15:09:00 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0

Le 25/07/2022 à 15:41, Ilya Leoshkevich a écrit :
Advice is enum, not flags. Doing (advice & MADV_DONTNEED) also matches
e.g. MADV_MERGEABLE.

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
---
  linux-user/mmap.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index 4e7a6be6ee..edceaca4a8 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -891,7 +891,7 @@ abi_long target_madvise(abi_ulong start, abi_ulong len_in, 
int advice)
       * anonymous mappings. In this case passthrough is safe, so do it.
       */
      mmap_lock();
-    if ((advice & MADV_DONTNEED) &&
+    if (advice == MADV_DONTNEED &&
          can_passthrough_madv_dontneed(start, end)) {
          ret = get_errno(madvise(g2h_untagged(start), len, MADV_DONTNEED));
      }


Applied to my linux-user-for-7.1 branch.

Thanks,
Laurent



reply via email to

[Prev in Thread] Current Thread [Next in Thread]