Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

parisc: add new syscalls

Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>

authored by

Kyle McMartin and committed by
Kyle McMartin
0be7d1fe 089d5528

+13 -1
+7 -1
arch/parisc/include/asm/unistd.h
··· 801 801 #define __NR_timerfd_create (__NR_Linux + 306) 802 802 #define __NR_timerfd_settime (__NR_Linux + 307) 803 803 #define __NR_timerfd_gettime (__NR_Linux + 308) 804 + #define __NR_signalfd4 (__NR_Linux + 309) 805 + #define __NR_eventfd2 (__NR_Linux + 310) 806 + #define __NR_epoll_create1 (__NR_Linux + 311) 807 + #define __NR_dup3 (__NR_Linux + 312) 808 + #define __NR_pipe2 (__NR_Linux + 313) 809 + #define __NR_inotify_init1 (__NR_Linux + 314) 804 810 805 - #define __NR_Linux_syscalls (__NR_timerfd_gettime + 1) 811 + #define __NR_Linux_syscalls (__NR_inotify_init1 + 1) 806 812 807 813 808 814 #define __IGNORE_select /* newselect */
+6
arch/parisc/kernel/syscall_table.S
··· 407 407 ENTRY_SAME(timerfd_create) 408 408 ENTRY_COMP(timerfd_settime) 409 409 ENTRY_COMP(timerfd_gettime) 410 + ENTRY_COMP(signalfd4) 411 + ENTRY_SAME(eventfd2) /* 310 */ 412 + ENTRY_SAME(epoll_create1) 413 + ENTRY_SAME(dup3) 414 + ENTRY_SAME(pipe2) 415 + ENTRY_SAME(inotify_init1) 410 416 411 417 /* Nothing yet */ 412 418