Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932546AbbELItx (ORCPT ); Tue, 12 May 2015 04:49:53 -0400 Received: from mail-ob0-f172.google.com ([209.85.214.172]:34633 "EHLO mail-ob0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932318AbbELIt2 (ORCPT ); Tue, 12 May 2015 04:49:28 -0400 MIME-Version: 1.0 In-Reply-To: <1431310042-52247-3-git-send-email-will@worrbase.com> References: <1431310042-52247-1-git-send-email-will@worrbase.com> <1431310042-52247-3-git-send-email-will@worrbase.com> From: Michael Kerrisk Date: Tue, 12 May 2015 10:49:01 +0200 X-Google-Sender-Auth: caX0rZ_louWukW3_SYJA9IkBeuA Message-ID: Subject: Re: [PATCH 2/2] Define syscall number for fchmodat4 To: William Orr Cc: Linux Kernel , Andrew Ayer , Al Viro , Linux-Fsdevel , Miklos Szeredi , Linux API Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2561 Lines: 67 [expanding CC] On Mon, May 11, 2015 at 4:07 AM, William Orr wrote: > --- > arch/x86/syscalls/syscall_32.tbl | 1 + > arch/x86/syscalls/syscall_64.tbl | 1 + > include/uapi/asm-generic/unistd.h | 4 +++- > 3 files changed, 5 insertions(+), 1 deletion(-) > > diff --git a/arch/x86/syscalls/syscall_32.tbl b/arch/x86/syscalls/syscall_32.tbl > index ef8187f..cc8ada8 100644 > --- a/arch/x86/syscalls/syscall_32.tbl > +++ b/arch/x86/syscalls/syscall_32.tbl > @@ -365,3 +365,4 @@ > 356 i386 memfd_create sys_memfd_create > 357 i386 bpf sys_bpf > 358 i386 execveat sys_execveat stub32_execveat > +359 i386 fchmodat4 sys_fchmodat4 > diff --git a/arch/x86/syscalls/syscall_64.tbl b/arch/x86/syscalls/syscall_64.tbl > index 9ef32d5..bbf8c6b 100644 > --- a/arch/x86/syscalls/syscall_64.tbl > +++ b/arch/x86/syscalls/syscall_64.tbl > @@ -329,6 +329,7 @@ > 320 common kexec_file_load sys_kexec_file_load > 321 common bpf sys_bpf > 322 64 execveat stub_execveat > +323 common fchmodat4 sys_fchmodat4 > > # > # x32-specific system call numbers start at 512 to avoid cache impact > diff --git a/include/uapi/asm-generic/unistd.h b/include/uapi/asm-generic/unistd.h > index e016bd9..6e362a2 100644 > --- a/include/uapi/asm-generic/unistd.h > +++ b/include/uapi/asm-generic/unistd.h > @@ -709,9 +709,11 @@ __SYSCALL(__NR_memfd_create, sys_memfd_create) > __SYSCALL(__NR_bpf, sys_bpf) > #define __NR_execveat 281 > __SC_COMP(__NR_execveat, sys_execveat, compat_sys_execveat) > +#define __NR_fchmodat4 282 > +__SYSCALL(__NR_fchmodat4, sys_fchmodat4); > > #undef __NR_syscalls > -#define __NR_syscalls 282 > +#define __NR_syscalls 283 > > /* > * All syscalls below here should go away really, > -- > 2.1.0 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Author of "The Linux Programming Interface", http://blog.man7.org/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/