From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQEig-00011r-LJ for qemu-devel@nongnu.org; Mon, 01 Feb 2016 08:40:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQEib-0000hH-LF for qemu-devel@nongnu.org; Mon, 01 Feb 2016 08:40:42 -0500 Received: from mout.kundenserver.de ([217.72.192.74]:60691) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQEib-0000hA-CV for qemu-devel@nongnu.org; Mon, 01 Feb 2016 08:40:37 -0500 References: <1453158514-5976-1-git-send-email-laurent@vivier.eu> From: Laurent Vivier Message-ID: <56AF604B.9080202@vivier.eu> Date: Mon, 1 Feb 2016 14:40:27 +0100 MIME-Version: 1.0 In-Reply-To: <1453158514-5976-1-git-send-email-laurent@vivier.eu> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH] linux-user,ppc: synchronize syscall_nr.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Riku Voipio Cc: qemu-devel@nongnu.org Ping ? Le 19/01/2016 00:08, Laurent Vivier a écrit : > Synchronize with include/uapi/asm/unistd.h from kernel v4.4 > > This allows to use timerfd_create(). > > Signed-off-by: Laurent Vivier > --- > linux-user/ppc/syscall_nr.h | 14 +++++++++++++- > 1 file changed, 13 insertions(+), 1 deletion(-) > > diff --git a/linux-user/ppc/syscall_nr.h b/linux-user/ppc/syscall_nr.h > index 1e1736e..7382294 100644 > --- a/linux-user/ppc/syscall_nr.h > +++ b/linux-user/ppc/syscall_nr.h > @@ -319,7 +319,7 @@ > #define TARGET_NR_epoll_pwait 303 > #define TARGET_NR_utimensat 304 > #define TARGET_NR_signalfd 305 > -#define TARGET_NR_timerfd 306 > +#define TARGET_NR_timerfd_create 306 > #define TARGET_NR_eventfd 307 > #define TARGET_NR_sync_file_range2 308 > #define TARGET_NR_fallocate 309 > @@ -368,3 +368,15 @@ > #define TARGET_NR_process_vm_writev 352 > #define TARGET_NR_finit_module 353 > #define TARGET_NR_kcmp 354 > +#define TARGET_NR_sched_setattr 355 > +#define TARGET_NR_sched_getattr 356 > +#define TARGET_NR_renameat2 357 > +#define TARGET_NR_seccomp 358 > +#define TARGET_NR_getrandom 359 > +#define TARGET_NR_memfd_create 360 > +#define TARGET_NR_bpf 361 > +#define TARGET_NR_execveat 362 > +#define TARGET_NR_switch_endian 363 > +#define TARGET_NR_userfaultfd 364 > +#define TARGET_NR_membarrier 365 > +#define TARGET_NR_mlock2 378 >