From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KchKv-00083M-SQ for qemu-devel@nongnu.org; Mon, 08 Sep 2008 10:03:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KchKs-00080r-Az for qemu-devel@nongnu.org; Mon, 08 Sep 2008 10:03:23 -0400 Received: from [199.232.76.173] (port=39236 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KchKs-00080i-4E for qemu-devel@nongnu.org; Mon, 08 Sep 2008 10:03:22 -0400 Received: from gv-out-0910.google.com ([216.239.58.191]:33180) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KchKr-0007FW-G2 for qemu-devel@nongnu.org; Mon, 08 Sep 2008 10:03:21 -0400 Received: by gv-out-0910.google.com with SMTP id n8so222137gve.36 for ; Mon, 08 Sep 2008 07:03:20 -0700 (PDT) From: "Kirill A. Shutemov" Date: Mon, 8 Sep 2008 17:03:34 +0300 Message-Id: <1220882616-18735-6-git-send-email-kirill@shutemov.name> In-Reply-To: <1220882616-18735-5-git-send-email-kirill@shutemov.name> References: <1220882616-18735-1-git-send-email-kirill@shutemov.name> <1220882616-18735-2-git-send-email-kirill@shutemov.name> <1220882616-18735-3-git-send-email-kirill@shutemov.name> <1220882616-18735-4-git-send-email-kirill@shutemov.name> <1220882616-18735-5-git-send-email-kirill@shutemov.name> Subject: [Qemu-devel] [PATCH] Implement futimesat() syscall Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: "Kirill A. Shutemov" Signed-off-by: Kirill A. Shutemov --- linux-user/syscall.c | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 863e319..faf0003 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -3656,6 +3656,26 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, unlock_user(p, arg1, 0); } break; +#ifdef TARGET_NR_futimesat + case TARGET_NR_futimesat: + { + struct timeval *tvp, tv[2]; + if (arg3) { + if (copy_from_user_timeval(&tv[0], arg3) + || copy_from_user_timeval(&tv[1], + arg3 + sizeof(struct target_timeval))) + goto efault; + tvp = tv; + } else { + tvp = NULL; + } + if (!(p = lock_user_string(arg2))) + goto efault; + ret = get_errno(futimesat(arg1, p, tvp)); + unlock_user(p, arg2, 0); + } + break; +#endif #ifdef TARGET_NR_stty case TARGET_NR_stty: goto unimplemented; -- 1.5.6.5.GIT