diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-06-28 12:43:36 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-07-02 16:56:46 +0200 |
commit | bf9136722c47ce964715fa3fcff4b16cbbd08d58 (patch) | |
tree | 6aa8f99cbdd39738c2bc59417d58891f6d8e25fa /linux-user/mips | |
parent | d42744fe0417a3b88f04f32881b7af9f48de3d2c (diff) | |
download | qemu-bf9136722c47ce964715fa3fcff4b16cbbd08d58.zip qemu-bf9136722c47ce964715fa3fcff4b16cbbd08d58.tar.gz qemu-bf9136722c47ce964715fa3fcff4b16cbbd08d58.tar.bz2 |
linux-user: Fix target_flock structure for MIPS O64 ABI
Among MIPS ABIs, only MIPS O32 and N32 have special (different
than other architectures) definition of structure flock in kernel.
Bring target_flock definition in QEMU for MIPS O64 ABI to the
correct state, which is currently different than the most common
definition, and it should actually be the same.
Reported-by: Dragan Mladjenovic <dmladjenovic@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <1561718618-20218-4-git-send-email-aleksandar.markovic@rt-rk.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/mips')
-rw-r--r-- | linux-user/mips/target_fcntl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/mips/target_fcntl.h b/linux-user/mips/target_fcntl.h index 000527c..795bba7 100644 --- a/linux-user/mips/target_fcntl.h +++ b/linux-user/mips/target_fcntl.h @@ -27,7 +27,11 @@ #define TARGET_F_SETOWN 24 /* for sockets. */ #define TARGET_F_GETOWN 23 /* for sockets. */ +#if (TARGET_ABI_BITS == 32) #define TARGET_ARCH_FLOCK_PAD abi_long pad[4]; +#else +#define TARGET_ARCH_FLOCK_PAD +#endif #define TARGET_ARCH_FLOCK64_PAD #define TARGET_F_GETLK64 33 /* using 'struct flock64' */ |