public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Ungerer <gerg@snapgear.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Linux/m68k <linux-m68k@vger.kernel.org>,
	uClinux list <uclinux-dev@uclinux.org>,
	Linux Kernel Development <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] m68k{,nommu}: Wire up new system calls
Date: Mon, 11 Aug 2008 11:43:50 +1000	[thread overview]
Message-ID: <489F9956.5030009@snapgear.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0808101413390.10672@anakin>

Hi Geert,

Geert Uytterhoeven wrote:
> Wire up for m68k{,nommu} the system calls that were added in the last merge
> window:
> 
> commit 4006553b06306b34054529477b06b68a1c66249b (flag parameters: inotify_init)
> commit ed8cae8ba01348bfd83333f4648dd807b04d7f08 (flag parameters: pipe)
> commit 336dd1f70ff62d7dd8655228caed4c5bfc818c56 (flag parameters: dup2)
> commit a0998b50c3f0b8fdd265c63e0032f86ebe377dbf (flag parameters: epoll_create)
> commit 9fe5ad9c8cef9ad5873d8ee55d1cf00d9b607df0 (flag parameters add-on: remove
> 						 epoll_create size param)
> commit b087498eb5605673b0f260a7620d91818cd72304 (flag parameters: eventfd)
> commit 9deb27baedb79759c3ab9435a7d8b841842d56e9 (flag parameters: signalfd)
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
> Greg, please ack or forward to Linus. Thx!

Here is an ack:

Acked-by: Greg Ungerer <gerg@uclinux.org>

I am happy to send on if you want me too?

Regards
Greg



>  arch/m68k/kernel/entry.S             |    6 ++++++
>  arch/m68knommu/include/asm/unistd.h  |    8 +++++++-
>  arch/m68knommu/kernel/syscalltable.S |    6 ++++++
>  include/asm-m68k/unistd.h            |    8 +++++++-
>  4 files changed, 26 insertions(+), 2 deletions(-)
> 
> --- a/arch/m68k/kernel/entry.S
> +++ b/arch/m68k/kernel/entry.S
> @@ -747,4 +747,10 @@ sys_call_table:
>  	.long sys_fallocate		/* 320 */
>  	.long sys_timerfd_settime
>  	.long sys_timerfd_gettime
> +	.long sys_signalfd4
> +	.long sys_eventfd2
> +	.long sys_epoll_create1		/* 325 */
> +	.long sys_dup3
> +	.long sys_pipe2
> +	.long sys_inotify_init1
>  
> --- a/arch/m68knommu/include/asm/unistd.h
> +++ b/arch/m68knommu/include/asm/unistd.h
> @@ -326,10 +326,16 @@
>  #define __NR_fallocate		320
>  #define __NR_timerfd_settime	321
>  #define __NR_timerfd_gettime	322
> +#define __NR_signalfd4		323
> +#define __NR_eventfd2		324
> +#define __NR_epoll_create1	325
> +#define __NR_dup3		326
> +#define __NR_pipe2		327
> +#define __NR_inotify_init1	328
>  
>  #ifdef __KERNEL__
>  
> -#define NR_syscalls		323
> +#define NR_syscalls		329
>  
>  #define __ARCH_WANT_IPC_PARSE_VERSION
>  #define __ARCH_WANT_OLD_READDIR
> --- a/arch/m68knommu/kernel/syscalltable.S
> +++ b/arch/m68knommu/kernel/syscalltable.S
> @@ -341,6 +341,12 @@ ENTRY(sys_call_table)
>  	.long sys_fallocate		/* 320 */
>  	.long sys_timerfd_settime
>  	.long sys_timerfd_gettime
> +	.long sys_signalfd4
> +	.long sys_eventfd2
> +	.long sys_epoll_create1		/* 325 */
> +	.long sys_dup3
> +	.long sys_pipe2
> +	.long sys_inotify_init1
>  
>  	.rept NR_syscalls-(.-sys_call_table)/4
>  		.long sys_ni_syscall
> --- a/include/asm-m68k/unistd.h
> +++ b/include/asm-m68k/unistd.h
> @@ -325,10 +325,16 @@
>  #define __NR_fallocate		320
>  #define __NR_timerfd_settime	321
>  #define __NR_timerfd_gettime	322
> +#define __NR_signalfd4		323
> +#define __NR_eventfd2		324
> +#define __NR_epoll_create1	325
> +#define __NR_dup3		326
> +#define __NR_pipe2		327
> +#define __NR_inotify_init1	328
>  
>  #ifdef __KERNEL__
>  
> -#define NR_syscalls		323
> +#define NR_syscalls		329
>  
>  #define __ARCH_WANT_IPC_PARSE_VERSION
>  #define __ARCH_WANT_OLD_READDIR
> 
> Gr{oetje,eeting}s,
> 
> 						Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> 							    -- Linus Torvalds
> 

-- 
------------------------------------------------------------------------
Greg Ungerer  --  Chief Software Dude       EMAIL:     gerg@snapgear.com
Secure Computing Corporation                PHONE:       +61 7 3435 2888
825 Stanley St,                             FAX:         +61 7 3891 3630
Woolloongabba, QLD, 4102, Australia         WEB: http://www.SnapGear.com

  reply	other threads:[~2008-08-11  1:46 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-10 12:15 [PATCH] m68k{,nommu}: Wire up new system calls Geert Uytterhoeven
2008-08-11  1:43 ` Greg Ungerer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-08-11  7:00 Geert Uytterhoeven

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=489F9956.5030009@snapgear.com \
    --to=gerg@snapgear.com \
    --cc=geert@linux-m68k.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@vger.kernel.org \
    --cc=uclinux-dev@uclinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox