From: Peter Maydell Date: Tue, 31 May 2016 14:45:11 +0000 (+0100) Subject: linux-user: Fix error conversion in 64-bit fadvise syscall X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=977d8241c10de4160a9377efd496395c98b7dee9;p=qemu.git linux-user: Fix error conversion in 64-bit fadvise syscall Fix a missing host-to-target errno conversion in the 64-bit fadvise syscall emulation. Signed-off-by: Peter Maydell Reviewed-by: Laurent Vivier Signed-off-by: Riku Voipio --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 5cff9f7879..8f8d9db78c 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -10035,8 +10035,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, default: break; } #endif - ret = -posix_fadvise(arg1, arg2, arg3, arg4); - break; + ret = -host_to_target_errno(posix_fadvise(arg1, arg2, arg3, arg4)); + break; #endif #endif /* end of 64-bit ABI fadvise handling */