mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
m68k{,nommu}: Wire up new system calls
Wire up for m68k{,nommu} the system calls that were added in the last merge window: -4006553b06
("flag parameters: inotify_init") -ed8cae8ba0
("flag parameters: pipe") -336dd1f70f
("flag parameters: dup2") -a0998b50c3
("flag parameters: epoll_create") -9fe5ad9c8c
("flag parameters add-on: remove epoll_create size param") -b087498eb5
("flag parameters: eventfd") -9deb27baed
("flag parameters: signalfd") Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
3838f59fc2
commit
0e7d5bb848
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user