From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kh7i4-00071f-NL for qemu-devel@nongnu.org; Sat, 20 Sep 2008 15:01:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kh7i3-00071F-9v for qemu-devel@nongnu.org; Sat, 20 Sep 2008 15:01:35 -0400 Received: from [199.232.76.173] (port=55225 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kh7i3-00071A-3L for qemu-devel@nongnu.org; Sat, 20 Sep 2008 15:01:35 -0400 Received: from [84.20.150.76] (port=43682 helo=narury.org) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kh7i2-0003vx-SS for qemu-devel@nongnu.org; Sat, 20 Sep 2008 15:01:35 -0400 Date: Sat, 20 Sep 2008 22:01:28 +0300 From: Riku Voipio Message-ID: <20080920190128.GA27029@kos.to> References: <20080920182603.GA23970@kos.to> <1221936691-27969-1-git-send-email-kirill@shutemov.name> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1221936691-27969-1-git-send-email-kirill@shutemov.name> Subject: [Qemu-devel] Re: [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: "Kirill A. Shutemov" Cc: qemu-devel@nongnu.org On Sat, Sep 20, 2008 at 09:51:31PM +0300, Kirill A. Shutemov wrote: > 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 Ack. > --- > 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 489f632..f9aab47 100644 > --- a/linux-user/syscall.c > +++ b/linux-user/syscall.c > @@ -5572,6 +5572,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 -- "rm -rf" only sounds scary if you don't have backups