From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH RFC 1/1] Documentation: describe how to add a system call Date: Tue, 28 Jul 2015 14:22:44 -0700 Message-ID: <55B7F2A4.2040902@infradead.org> References: <1438083663-24814-1-git-send-email-drysdale@google.com> <1438083663-24814-2-git-send-email-drysdale@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1438083663-24814-2-git-send-email-drysdale-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org> Sender: linux-api-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: David Drysdale , linux-api-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Michael Kerrisk , Andrew Morton , Arnd Bergmann , Shuah Khan , Jonathan Corbet Cc: Andrea Arcangeli , Thomas Gleixner , Eric B Munson , Ingo Molnar , "H. Peter Anvin" , Oleg Nesterov , Linus Torvalds , Greg Kroah-Hartman , Andy Lutomirski , Al Viro , Rusty Russell , Peter Zijlstra , Vivek Goyal , Alexei Starovoitov , David Herrmann , Theodore Ts'o , Kees Cook , Miklos Szeredi , Milosz Tanski , Fam Zheng , Josh Triplett , Mathieu Desnoyers , linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-fy+rA21nqHI@public.gmane.org List-Id: linux-api@vger.kernel.org On 07/28/15 04:41, David Drysdale wrote: > Add a document describing the process of adding a new system call, > including the need for a flags argument for future compatibility, and > covering 32-bit/64-bit concerns (albeit in an x86-centric way). > > Signed-off-by: David Drysdale > Reviewed-by: Michael Kerrisk Nice job. and long overdue. Thanks. Reviewed-by: Randy Dunlap > > --- > Documentation/adding-syscalls.txt | 454 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 454 insertions(+) > create mode 100644 Documentation/adding-syscalls.txt > > diff --git a/Documentation/adding-syscalls.txt b/Documentation/adding-syscalls.txt > new file mode 100644 > index 000000000000..5f52edda8951 > --- /dev/null > +++ b/Documentation/adding-syscalls.txt > @@ -0,0 +1,454 @@ -- ~Randy