Okay?
Index: linux_dummy.c
===================================================================
RCS file: /cvs/src/sys/compat/linux/linux_dummy.c,v
retrieving revision 1.19
diff -u -p -r1.19 linux_dummy.c
--- linux_dummy.c 14 Dec 2011 08:33:18 -0000 1.19
+++ linux_dummy.c 19 Jun 2012 08:28:42 -0000
@@ -112,6 +112,14 @@ DUMMY(setfsgid); /* #216 */
DUMMY(pivot_root); /* #217 */
DUMMY(mincore); /* #218 */
DUMMY(fadvise64); /* #250 */
+DUMMY(epoll_create); /* #254 */
+DUMMY(epoll_ctl); /* #255 */
+DUMMY(epoll_wait); /* #256 */
+DUMMY(epoll_pwait); /* #319 */
+DUMMY(eventfd); /* #323 */
+DUMMY(eventfd2); /* #328 */
+DUMMY(epoll_create1); /* #329 */
+
#define DUMMY_XATTR(s) \
int \
Index: syscalls.master
===================================================================
RCS file: /cvs/src/sys/compat/linux/syscalls.master,v
retrieving revision 1.69
diff -u -p -r1.69 syscalls.master
--- syscalls.master 8 Jun 2012 14:28:23 -0000 1.69
+++ syscalls.master 19 Jun 2012 08:28:42 -0000
@@ -400,9 +400,9 @@
251 UNIMPL
252 NOARGS linux_exit_group { int sys_exit(int rval); }
253 UNIMPL linux_sys_lookup_dcookie
-254 UNIMPL linux_sys_epoll_create
-255 UNIMPL linux_sys_epoll_ctl
-256 UNIMPL linux_sys_epoll_wait
+254 NOARGS { int linux_sys_epoll_create(void); }
+255 NOARGS { int linux_sys_epoll_ctl(void); }
+256 NOARGS { int linux_sys_epoll_wait(void); }
257 UNIMPL linux_sys_remap_file_pages
258 STD { int linux_sys_set_tid_address(void *tidptr); }
259 UNIMPL linux_sys_timer_create
@@ -472,17 +472,17 @@
316 UNIMPL vmsplice
317 UNIMPL move_pages
318 UNIMPL getcpu
-319 UNIMPL epoll_wait
+319 NOARGS { int linux_sys_epoll_pwait(void); }
320 UNIMPL utimensat
321 UNIMPL signalfd
322 UNIMPL timerfd_create
-323 UNIMPL eventfd
+323 NOARGS { int linux_sys_eventfd(void); }
324 UNIMPL fallocate
325 UNIMPL timerfd_settime
326 UNIMPL timerfd_gettime
327 UNIMPL signalfd4
-328 UNIMPL eventfd2
-329 UNIMPL epoll_create1
+328 NOARGS { int linux_sys_eventfd2(void); }
+329 NOARGS { int linux_sys_epoll_create1(void); }
330 UNIMPL dup3
331 STD { int linux_sys_pipe2(int *fdp, int flags); }
332 UNIMPL inotify_init1