From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:42897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RuVRU-00086H-2l for qemu-devel@nongnu.org; Mon, 06 Feb 2012 15:45:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RuVRP-0000FU-QC for qemu-devel@nongnu.org; Mon, 06 Feb 2012 15:45:40 -0500 Received: from cantor2.suse.de ([195.135.220.15]:40491 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RuVRP-0000FO-Hp for qemu-devel@nongnu.org; Mon, 06 Feb 2012 15:45:35 -0500 From: Alexander Graf Date: Mon, 6 Feb 2012 21:45:33 +0100 Message-Id: <1328561133-5485-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH] linux-user: fix fallocate List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org Developers" Cc: Peter Maydell , Riku Voipio Fallocate gets off_t parameters passed in, so we should also read them out accordingly. Signed-off-by: Alexander Graf --- linux-user/syscall.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index ee8899e..ca63594 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -8237,7 +8237,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, #endif /* CONFIG_EVENTFD */ #if defined(CONFIG_FALLOCATE) && defined(TARGET_NR_fallocate) case TARGET_NR_fallocate: - ret = get_errno(fallocate(arg1, arg2, arg3, arg4)); + ret = get_errno(fallocate(arg1, arg2, target_offset64(arg3, arg4), + target_offset64(arg5, arg6))); break; #endif #if defined(CONFIG_SYNC_FILE_RANGE) -- 1.6.0.2