From: deller@kernel.org
To: Richard Henderson <richard.henderson@linaro.org>, qemu-devel@nongnu.org
Cc: "Laurent Vivier" <laurent@vivier.eu>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
deller@gmx.de, "Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PULL 11/11] linux-user: Fix MADV_XXX constants on hppa target
Date: Fri, 23 Jan 2026 21:52:30 +0100 [thread overview]
Message-ID: <20260123205230.33541-12-deller@kernel.org> (raw)
In-Reply-To: <20260123205230.33541-1-deller@kernel.org>
From: Helge Deller <deller@gmx.de>
Older hppa binaries may still use the old MADV_XXX constants for the
madivise() syscall. Fix it up in the same manner as it's done in the
Linux kernel in the parisc_madvise() function.
Signed-off-by: Helge Deller <deller@gmx.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
---
linux-user/syscall.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 64a2f1cbb2..2788c3239e 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -12922,6 +12922,20 @@ static abi_long do_syscall1(CPUArchState *cpu_env, int num, abi_long arg1,
#ifdef TARGET_NR_madvise
case TARGET_NR_madvise:
+#ifdef TARGET_HPPA
+ /* Emulate old hppa mapping of MADV_xxx constants. */
+ switch (arg3) {
+ case 65: arg3 = MADV_MERGEABLE; break;
+ case 66: arg3 = MADV_UNMERGEABLE; break;
+ case 67: arg3 = MADV_HUGEPAGE; break;
+ case 68: arg3 = MADV_NOHUGEPAGE; break;
+ case 69: arg3 = MADV_DONTDUMP; break;
+ case 70: arg3 = MADV_DODUMP; break;
+ case 71: arg3 = MADV_WIPEONFORK; break;
+ case 72: arg3 = MADV_KEEPONFORK; break;
+ case 73: arg3 = MADV_COLLAPSE; break;
+ }
+#endif /* TARGET_HPPA */
return target_madvise(arg1, arg2, arg3);
#endif
#ifdef TARGET_NR_fcntl64
--
2.52.0
next prev parent reply other threads:[~2026-01-23 20:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-23 20:52 [PULL 00/11] Linux user for v11 patches deller
2026-01-23 20:52 ` [PULL 01/11] linux-user: update statx emulation deller
2026-01-23 20:52 ` [PULL 02/11] linux-user: Add termios2 support deller
2026-01-23 20:52 ` [PULL 03/11] linux-user: Add termios2 support to alpha target deller
2026-01-23 20:52 ` [PULL 04/11] linux-user: Add termios2 support to hppa target deller
2026-01-23 20:52 ` [PULL 05/11] linux-user: Add termios2 support to mips target deller
2026-01-23 20:52 ` [PULL 06/11] linux-user: Add termios2 support to sh4 target deller
2026-01-23 20:52 ` [PULL 07/11] linux-user: Add termios2 support to sparc target deller
2026-01-23 20:52 ` [PULL 08/11] linux-user: Add missing termios baud rates deller
2026-01-23 20:52 ` [PULL 09/11] linux-user: fixup termios2 related things on PowerPC deller
2026-01-23 20:52 ` [PULL 10/11] linux-user: strace: Fix 5th argument of futex syscall deller
2026-01-23 20:52 ` deller [this message]
2026-01-24 0:56 ` [PULL 11/11] linux-user: Fix MADV_XXX constants on hppa target Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260123205230.33541-12-deller@kernel.org \
--to=deller@kernel.org \
--cc=deller@gmx.de \
--cc=jiaxun.yang@flygoat.com \
--cc=laurent@vivier.eu \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.