From: Helge Deller Date: Tue, 31 Oct 2017 12:53:56 +0000 (+0100) Subject: linux-user/hppa: Fix TARGET_MAP_TYPE X-Git-Tag: v2.11.0-rc2~10^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e65be6a7cfe5c991d97ef259c6a88e99ca65e875;p=thirdparty%2Fqemu.git linux-user/hppa: Fix TARGET_MAP_TYPE TARGET_MAP_TYPE needs to be 0x03 instead of 0x0f on the hppa architecture, otherwise it conflicts with MAP_FIXED which is 0x04. Signed-off-by: Helge Deller Signed-off-by: Richard Henderson Message-ID: <20170311175019.GA7195@ls3530.fritz.box> Signed-off-by: Riku Voipio --- diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 38339ecb9a9..a6ed30d70e2 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -1336,7 +1336,11 @@ struct target_winsize { /* Common */ #define TARGET_MAP_SHARED 0x01 /* Share changes */ #define TARGET_MAP_PRIVATE 0x02 /* Changes are private */ -#define TARGET_MAP_TYPE 0x0f /* Mask for type of mapping */ +#if defined(TARGET_HPPA) +#define TARGET_MAP_TYPE 0x03 /* Mask for type of mapping */ +#else +#define TARGET_MAP_TYPE 0x0f /* Mask for type of mapping */ +#endif /* Target specific */ #if defined(TARGET_MIPS)