[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 3/7] linux-user: Fix flock definition for mips64
From: |
Lena Djokic |
Subject: |
[Qemu-devel] [PATCH v2 3/7] linux-user: Fix flock definition for mips64 |
Date: |
Thu, 24 Nov 2016 17:08:54 +0100 |
Mips64 uses generic flock structure.
See /arch/mips/include/uapi/asm/fcntl.h#L63 for reference.
Signed-off-by: Lena Djokic <address@hidden>
---
linux-user/syscall_defs.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h
index 0b15466..099fd0e 100644
--- a/linux-user/syscall_defs.h
+++ b/linux-user/syscall_defs.h
@@ -2363,7 +2363,7 @@ struct target_flock {
short l_whence;
abi_long l_start;
abi_long l_len;
-#if defined(TARGET_MIPS)
+#if defined(TARGET_MIPS) && (TARGET_ABI_BITS == 32)
abi_long l_sysid;
#endif
int l_pid;
--
2.7.4
- [Qemu-devel] [PATCH v2 0/7] Improvements of qemu linux-user, Lena Djokic, 2016/11/24
- [Qemu-devel] [PATCH v2 2/7] linux-user: Fix inotify_init1 support, Lena Djokic, 2016/11/24
- [Qemu-devel] [PATCH v2 7/7] linux-user: Fix mq_open, Lena Djokic, 2016/11/24
- [Qemu-devel] [PATCH v2 4/7] linux-user: Fix fcnt, Lena Djokic, 2016/11/24
- [Qemu-devel] [PATCH v2 3/7] linux-user: Fix flock definition for mips64,
Lena Djokic <=
- [Qemu-devel] [PATCH v2 6/7] linux-user: Fix syslog, Lena Djokic, 2016/11/24
- [Qemu-devel] [PATCH v2 1/7] linux-user: Add fanotify implementation, Lena Djokic, 2016/11/24
- [Qemu-devel] [PATCH v2 5/7] linux-user: Fix readahead, Lena Djokic, 2016/11/24