Commit e1be1606 authored by Aleksandar Markovic's avatar Aleksandar Markovic Committed by Leon Alrae
Browse files

linux-user: Fix TARGET_SIOCATMARK definition for Mips



This patch fixes wrong definition of TARGET_SIOCATMARK for mips,
alpha, and sh4.

The current definition is:

  #define SIOCATMARK      0x8905

while the correct definition is:

  #define SIOCATMARK      TARGET_IOR('s', 7, int)

See Linux kernel source file arch/mips/include/uapi/asm/sockios.h#L19
for reference.

This patch also a fixes LTP test failure for test sockioctl01, for
mips, alpha, and sh4.

Signed-off-by: default avatarAleksandar Rikalo <aleksandar.rikalo@imgtec.com>
Signed-off-by: default avatarAleksandar Markovic <aleksandar.markovic@imgtec.com>
Reviewed-by: default avatarLaurent Vivier <laurent@vivier.eu>
Reviewed-by: default avatarLeon Alrae <leon.alrae@imgtec.com>
Acked-by: default avatarRiku Voipio <riku.voipio@linaro.org>
Signed-off-by: default avatarLeon Alrae <leon.alrae@imgtec.com>
parent d208ac0c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -898,7 +898,11 @@ struct target_pollfd {
#define TARGET_KDSETLED        0x4B32	/* set led state [lights, not flags] */
#define TARGET_KDSIGACCEPT     0x4B4E

#if defined(TARGET_ALPHA) || defined(TARGET_MIPS) || defined(TARGET_SH4)
#define TARGET_SIOCATMARK      TARGET_IOR('s', 7, int)
#else
#define TARGET_SIOCATMARK      0x8905
#endif

/* Networking ioctls */
#define TARGET_SIOCADDRT       0x890B          /* add routing table entry */