aboutsummaryrefslogtreecommitdiff
path: root/linux-user/mips64/target_signal.h
diff options
context:
space:
mode:
authorEd Swierk <eswierk@skyportsystems.com>2014-12-16 12:55:31 -0800
committerRiku Voipio <riku.voipio@linaro.org>2015-01-27 22:33:57 +0200
commit9c6bf9c7d71d7da18a024182b69569969449d6f9 (patch)
tree328fb981bf2a6730b5630f530b5bde0f8745eb8e /linux-user/mips64/target_signal.h
parent95018018caeea209f58695645fd1d50a9d0ba6df (diff)
linux-user: Fix ioctl cmd type mismatch on 64-bit targets
linux-user passes the cmd argument of the ioctl syscall as a signed long, but compares it to an unsigned int when iterating through the ioctl_entries list. When the cmd is a large value like 0x80047476 (TARGET_TIOCSWINSZ on mips64) it gets sign-extended to 0xffffffff80047476, causing the comparison to fail and resulting in lots of spurious "Unsupported ioctl" errors. Changing the target_cmd field in the ioctl_entries list to a signed int causes those values to be sign-extended as well during the comparison. Signed-off-by: Ed Swierk <eswierk@skyportsystems.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/mips64/target_signal.h')
0 files changed, 0 insertions, 0 deletions