From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fQzxw-0005Y6-Cx for qemu-devel@nongnu.org; Thu, 07 Jun 2018 14:48:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fQzxv-0001j6-Pc for qemu-devel@nongnu.org; Thu, 07 Jun 2018 14:48:56 -0400 Received: from mail-pf0-x22d.google.com ([2607:f8b0:400e:c00::22d]:41821) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fQzxv-0001il-Jq for qemu-devel@nongnu.org; Thu, 07 Jun 2018 14:48:55 -0400 Received: by mail-pf0-x22d.google.com with SMTP id a11-v6so5338095pff.8 for ; Thu, 07 Jun 2018 11:48:55 -0700 (PDT) From: Richard Henderson Date: Thu, 7 Jun 2018 11:48:44 -0700 Message-Id: <20180607184844.30126-5-richard.henderson@linaro.org> In-Reply-To: <20180607184844.30126-1-richard.henderson@linaro.org> References: <20180607184844.30126-1-richard.henderson@linaro.org> Subject: [Qemu-devel] [PATCH 4/4] linux-user/sparc64: Add inotify_rm_watch and tee syscalls List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: laurent@vivier.eu Signed-off-by: Richard Henderson --- linux-user/sparc64/syscall_nr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-user/sparc64/syscall_nr.h b/linux-user/sparc64/syscall_nr.h index 9391645598..0b91b896da 100644 --- a/linux-user/sparc64/syscall_nr.h +++ b/linux-user/sparc64/syscall_nr.h @@ -154,7 +154,7 @@ #define TARGET_NR_poll 153 /* Common */ #define TARGET_NR_getdents64 154 /* Linux specific */ #define TARGET_NR_fcntl64 155 /* Linux sparc32 Specific */ -/* #define TARGET_NR_getdirentries 156 SunOS Specific */ +#define TARGET_NR_inotify_rm_watch 156 /* Linux specific */ #define TARGET_NR_statfs 157 /* Common */ #define TARGET_NR_fstatfs 158 /* Common */ #define TARGET_NR_umount 159 /* Common */ @@ -278,7 +278,7 @@ #define TARGET_NR_mq_notify 277 #define TARGET_NR_mq_getsetattr 278 #define TARGET_NR_waitid 279 -/*#define TARGET_NR_sys_setaltroot 280 available (was setaltroot) */ +#define TARGET_NR_tee 280 #define TARGET_NR_add_key 281 #define TARGET_NR_request_key 282 #define TARGET_NR_keyctl 283 -- 2.17.1