From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kl2Al-0000pq-DY for qemu-devel@nongnu.org; Wed, 01 Oct 2008 09:55:23 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kl2Ak-0000pW-Rq for qemu-devel@nongnu.org; Wed, 01 Oct 2008 09:55:23 -0400 Received: from [199.232.76.173] (port=54453 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kl2Ak-0000pT-Mh for qemu-devel@nongnu.org; Wed, 01 Oct 2008 09:55:22 -0400 Received: from ey-out-1920.google.com ([74.125.78.145]:2964) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Kl2Ak-0002so-8e for qemu-devel@nongnu.org; Wed, 01 Oct 2008 09:55:22 -0400 Received: by ey-out-1920.google.com with SMTP id 4so165801eyk.4 for ; Wed, 01 Oct 2008 06:55:19 -0700 (PDT) From: "Kirill A. Shutemov" Date: Wed, 1 Oct 2008 16:56:12 +0300 Message-Id: <1222869382-586-1-git-send-email-kirill@shutemov.name> Subject: [Qemu-devel] [PATCH] Add fadvise64 stubs 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" , Riku Voipio Since these are only hints, we happily fake them for now to make applications not barf on ENOSYS. Signed-off-by: Riku Voipio Signed-off-by: Kirill A. Shutemov --- linux-user/syscall.c | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 40c0ed8..4695416 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5578,6 +5578,27 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, case TARGET_NR_mincore: goto unimplemented; #endif +#ifdef TARGET_NR_arm_fadvise64_64 + case TARGET_NR_arm_fadvise64_64: + { + /* + * arm_fadvise64_64 looks like fadvise64_64 but + * with different argument order + */ + abi_long temp; + temp = arg3; + arg3 = arg4; + arg4 = temp; + } +#endif +#if defined(TARGET_NR_fadvise64_64) || defined(TARGET_NR_arm_fadvise64_64) +#ifdef TARGET_NR_fadvise64_64 + case TARGET_NR_fadvise64_64: +#endif + /* This is a hint, so ignoring and returning success is ok. */ + ret = get_errno(0); + break; +#endif #ifdef TARGET_NR_madvise case TARGET_NR_madvise: /* A straight passthrough may not be safe because qemu sometimes -- 1.5.6.5.GIT