]> Git Repo - qemu.git/commitdiff
linux-user: Fix TARGET_F_GETOWN definition for Mips
authorAleksandar Markovic <[email protected]>
Mon, 19 Sep 2016 11:44:39 +0000 (13:44 +0200)
committerLeon Alrae <[email protected]>
Fri, 23 Sep 2016 06:07:32 +0000 (07:07 +0100)
For some reason, Qemu's TARGET_F_GETOWN constant for Mips does not
match the correct value of correspondent F_GETOWN. This patch fixes
this problem.

For reference, see Mips' F_GETOWN definition in Linux kernel at
arch/mips/include/uapi/asm/fcntl.h#L44.

This patch also fixes some fcntl()-related LTP tests for Qemu
user mode for Mips.

Signed-off-by: Miodrag Dinic <[email protected]>
Signed-off-by: Aleksandar Markovic <[email protected]>
Reviewed-by: Laurent Vivier <[email protected]>
Reviewed-by: Leon Alrae <[email protected]>
Acked-by: Riku Voipio <[email protected]>
Signed-off-by: Leon Alrae <[email protected]>
linux-user/syscall_defs.h

index d50878b58f850084f4159177af02c9744b2e6db4..925feda6a6d9e0a238f4ef12c0233facf9dff458 100644 (file)
@@ -2164,7 +2164,7 @@ struct target_statfs64 {
 #define TARGET_F_SETLK         6
 #define TARGET_F_SETLKW        7
 #define TARGET_F_SETOWN        24       /*  for sockets. */
-#define TARGET_F_GETOWN        25       /*  for sockets. */
+#define TARGET_F_GETOWN        23       /*  for sockets. */
 #else
 #define TARGET_F_GETLK         5
 #define TARGET_F_SETLK         6
This page took 0.024415 seconds and 4 git commands to generate.