2 * Compatibility mode system call entry point for x86-64.
4 * Copyright 2000-2002 Andi Kleen, SuSE Labs.
7 #include <asm/dwarf2.h>
8 #include <asm/calling.h>
9 #include <asm/asm-offsets.h>
10 #include <asm/current.h>
11 #include <asm/errno.h>
12 #include <asm/ia32_unistd.h>
13 #include <asm/thread_info.h>
14 #include <asm/segment.h>
15 #include <asm/irqflags.h>
16 #include <linux/linkage.h>
18 /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
19 #include <linux/elf-em.h>
20 #define AUDIT_ARCH_I386 (EM_386|__AUDIT_ARCH_LE)
21 #define __AUDIT_ARCH_LE 0x40000000
23 #ifndef CONFIG_AUDITSYSCALL
24 #define sysexit_audit ia32_ret_from_sys_call
25 #define sysretl_audit ia32_ret_from_sys_call
28 #define IA32_NR_syscalls ((ia32_syscall_end - ia32_sys_call_table)/8)
30 .macro IA32_ARG_FIXUP noebp=0
38 movl %edx,%edx /* zero extension */
42 .macro CLEAR_RREGS offset=0, _r9=rax
44 movq %rax,\offset+R11(%rsp)
45 movq %rax,\offset+R10(%rsp)
46 movq %\_r9,\offset+R9(%rsp)
47 movq %rax,\offset+R8(%rsp)
51 * Reload arg registers from stack in case ptrace changed them.
52 * We don't reload %eax because syscall_trace_enter() returned
53 * the value it wants us to use in the table lookup.
55 .macro LOAD_ARGS32 offset, _r9=0
57 movl \offset+16(%rsp),%r9d
59 movl \offset+40(%rsp),%ecx
60 movl \offset+48(%rsp),%edx
61 movl \offset+56(%rsp),%esi
62 movl \offset+64(%rsp),%edi
65 .macro CFI_STARTPROC32 simple
77 #ifdef CONFIG_PARAVIRT
78 ENTRY(native_usergs_sysret32)
81 ENDPROC(native_usergs_sysret32)
83 ENTRY(native_irq_enable_sysexit)
87 ENDPROC(native_irq_enable_sysexit)
91 * 32bit SYSENTER instruction entry.
94 * %eax System call number.
105 * This is purely a fast path. For anything complicated we use the int 0x80
106 * path below. Set up a complete hardware stack frame to share code
107 * with the int 0x80 path.
109 ENTRY(ia32_sysenter_target)
110 CFI_STARTPROC32 simple
115 movq PER_CPU_VAR(kernel_stack), %rsp
116 addq $(KERNEL_STACK_OFFSET),%rsp
118 * No need to follow this irqs on/off section: the syscall
119 * disabled irqs, here we enable it straight after entry:
121 ENABLE_INTERRUPTS(CLBR_NONE)
122 movl %ebp,%ebp /* zero extension */
124 CFI_ADJUST_CFA_OFFSET 8
125 /*CFI_REL_OFFSET ss,0*/
127 CFI_ADJUST_CFA_OFFSET 8
130 CFI_ADJUST_CFA_OFFSET 8
131 /*CFI_REL_OFFSET rflags,0*/
132 movl 8*3-THREAD_SIZE+TI_sysenter_return(%rsp), %r10d
135 CFI_ADJUST_CFA_OFFSET 8
136 /*CFI_REL_OFFSET cs,0*/
139 CFI_ADJUST_CFA_OFFSET 8
142 CFI_ADJUST_CFA_OFFSET 8
145 /* no need to do an access_ok check here because rbp has been
146 32bit zero extended */
148 .section __ex_table,"a"
151 GET_THREAD_INFO(%r10)
152 orl $TS_COMPAT,TI_status(%r10)
153 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%r10)
155 jnz sysenter_tracesys
156 cmpl $(IA32_NR_syscalls-1),%eax
161 call *ia32_sys_call_table(,%rax,8)
162 movq %rax,RAX-ARGOFFSET(%rsp)
163 GET_THREAD_INFO(%r10)
164 DISABLE_INTERRUPTS(CLBR_NONE)
166 testl $_TIF_ALLWORK_MASK,TI_flags(%r10)
168 sysexit_from_sys_call:
169 andl $~TS_COMPAT,TI_status(%r10)
170 /* clear IF, that popfq doesn't enable interrupts early */
171 andl $~0x200,EFLAGS-R11(%rsp)
172 movl RIP-R11(%rsp),%edx /* User %eip */
174 RESTORE_ARGS 1,24,1,1,1,1
180 CFI_ADJUST_CFA_OFFSET -8
181 /*CFI_RESTORE rflags*/
182 popq %rcx /* User %esp */
183 CFI_ADJUST_CFA_OFFSET -8
186 ENABLE_INTERRUPTS_SYSEXIT32
188 #ifdef CONFIG_AUDITSYSCALL
189 .macro auditsys_entry_common
190 movl %esi,%r9d /* 6th arg: 4th syscall arg */
191 movl %edx,%r8d /* 5th arg: 3rd syscall arg */
192 /* (already in %ecx) 4th arg: 2nd syscall arg */
193 movl %ebx,%edx /* 3rd arg: 1st syscall arg */
194 movl %eax,%esi /* 2nd arg: syscall number */
195 movl $AUDIT_ARCH_I386,%edi /* 1st arg: audit arch */
196 call audit_syscall_entry
197 movl RAX-ARGOFFSET(%rsp),%eax /* reload syscall number */
198 cmpl $(IA32_NR_syscalls-1),%eax
200 movl %ebx,%edi /* reload 1st syscall arg */
201 movl RCX-ARGOFFSET(%rsp),%esi /* reload 2nd syscall arg */
202 movl RDX-ARGOFFSET(%rsp),%edx /* reload 3rd syscall arg */
203 movl RSI-ARGOFFSET(%rsp),%ecx /* reload 4th syscall arg */
204 movl RDI-ARGOFFSET(%rsp),%r8d /* reload 5th syscall arg */
207 .macro auditsys_exit exit
208 testl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),TI_flags(%r10)
209 jnz ia32_ret_from_sys_call
212 movl %eax,%esi /* second arg, syscall return value */
213 cmpl $0,%eax /* is it < 0? */
214 setl %al /* 1 if so, 0 if not */
215 movzbl %al,%edi /* zero-extend that into %edi */
216 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
217 call audit_syscall_exit
218 GET_THREAD_INFO(%r10)
219 movl RAX-ARGOFFSET(%rsp),%eax /* reload syscall return value */
220 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
223 testl %edi,TI_flags(%r10)
225 CLEAR_RREGS -ARGOFFSET
231 auditsys_entry_common
232 movl %ebp,%r9d /* reload 6th syscall arg */
233 jmp sysenter_dispatch
236 auditsys_exit sysexit_from_sys_call
240 #ifdef CONFIG_AUDITSYSCALL
241 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%r10)
246 movq $-ENOSYS,RAX(%rsp)/* ptrace can change this for a bad syscall */
247 movq %rsp,%rdi /* &pt_regs -> arg1 */
248 call syscall_trace_enter
249 LOAD_ARGS32 ARGOFFSET /* reload args from stack in case ptrace changed it */
251 cmpl $(IA32_NR_syscalls-1),%eax
252 ja int_ret_from_sys_call /* sysenter_tracesys has set RAX(%rsp) */
255 ENDPROC(ia32_sysenter_target)
258 * 32bit SYSCALL instruction entry.
261 * %eax System call number.
267 * %ebp Arg2 [note: not saved in the stack frame, should not be touched]
273 * This is purely a fast path. For anything complicated we use the int 0x80
274 * path below. Set up a complete hardware stack frame to share code
275 * with the int 0x80 path.
277 ENTRY(ia32_cstar_target)
278 CFI_STARTPROC32 simple
280 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
282 /*CFI_REGISTER rflags,r11*/
286 movq PER_CPU_VAR(kernel_stack),%rsp
288 * No need to follow this irqs on/off section: the syscall
289 * disabled irqs and here we enable it straight after entry:
291 ENABLE_INTERRUPTS(CLBR_NONE)
293 movl %eax,%eax /* zero extension */
294 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
295 movq %rcx,RIP-ARGOFFSET(%rsp)
296 CFI_REL_OFFSET rip,RIP-ARGOFFSET
297 movq %rbp,RCX-ARGOFFSET(%rsp) /* this lies slightly to ptrace */
299 movq $__USER32_CS,CS-ARGOFFSET(%rsp)
300 movq $__USER32_DS,SS-ARGOFFSET(%rsp)
301 movq %r11,EFLAGS-ARGOFFSET(%rsp)
302 /*CFI_REL_OFFSET rflags,EFLAGS-ARGOFFSET*/
303 movq %r8,RSP-ARGOFFSET(%rsp)
304 CFI_REL_OFFSET rsp,RSP-ARGOFFSET
305 /* no need to do an access_ok check here because r8 has been
306 32bit zero extended */
307 /* hardware stack frame is complete now */
309 .section __ex_table,"a"
312 GET_THREAD_INFO(%r10)
313 orl $TS_COMPAT,TI_status(%r10)
314 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%r10)
317 cmpl $IA32_NR_syscalls-1,%eax
322 call *ia32_sys_call_table(,%rax,8)
323 movq %rax,RAX-ARGOFFSET(%rsp)
324 GET_THREAD_INFO(%r10)
325 DISABLE_INTERRUPTS(CLBR_NONE)
327 testl $_TIF_ALLWORK_MASK,TI_flags(%r10)
329 sysretl_from_sys_call:
330 andl $~TS_COMPAT,TI_status(%r10)
331 RESTORE_ARGS 1,-ARG_SKIP,1,1,1
332 movl RIP-ARGOFFSET(%rsp),%ecx
334 movl EFLAGS-ARGOFFSET(%rsp),%r11d
335 /*CFI_REGISTER rflags,r11*/
340 movl RSP-ARGOFFSET(%rsp),%esp
344 #ifdef CONFIG_AUDITSYSCALL
347 movl %r9d,R9-ARGOFFSET(%rsp) /* register to be clobbered by call */
348 auditsys_entry_common
349 movl R9-ARGOFFSET(%rsp),%r9d /* reload 6th syscall arg */
353 auditsys_exit sysretl_from_sys_call
357 #ifdef CONFIG_AUDITSYSCALL
358 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%r10)
364 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
365 movq %rsp,%rdi /* &pt_regs -> arg1 */
366 call syscall_trace_enter
367 LOAD_ARGS32 ARGOFFSET, 1 /* reload args from stack in case ptrace changed it */
370 cmpl $(IA32_NR_syscalls-1),%eax
371 ja int_ret_from_sys_call /* cstar_tracesys has set RAX(%rsp) */
373 END(ia32_cstar_target)
381 * Emulated IA32 system calls via int 0x80.
384 * %eax System call number.
390 * %ebp Arg6 [note: not saved in the stack frame, should not be touched]
393 * Uses the same stack frame as the x86-64 version.
394 * All registers except %eax must be saved (but ptrace may violate that)
395 * Arguments are zero extended. For system calls that want sign extension and
396 * take long arguments a wrapper is needed. Most calls can just be called
398 * Assumes it is only called from user space and entered with interrupts off.
402 CFI_STARTPROC32 simple
404 CFI_DEF_CFA rsp,SS+8-RIP
405 /*CFI_REL_OFFSET ss,SS-RIP*/
406 CFI_REL_OFFSET rsp,RSP-RIP
407 /*CFI_REL_OFFSET rflags,EFLAGS-RIP*/
408 /*CFI_REL_OFFSET cs,CS-RIP*/
409 CFI_REL_OFFSET rip,RIP-RIP
410 PARAVIRT_ADJUST_EXCEPTION_FRAME
413 * No need to follow this irqs on/off section: the syscall
414 * disabled irqs and here we enable it straight after entry:
416 ENABLE_INTERRUPTS(CLBR_NONE)
419 CFI_ADJUST_CFA_OFFSET 8
421 /* note the registers are not zero extended to the sf.
422 this could be a problem. */
424 GET_THREAD_INFO(%r10)
425 orl $TS_COMPAT,TI_status(%r10)
426 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%r10)
428 cmpl $(IA32_NR_syscalls-1),%eax
432 call *ia32_sys_call_table(,%rax,8) # xxx: rip relative
434 movq %rax,RAX-ARGOFFSET(%rsp)
435 ia32_ret_from_sys_call:
436 CLEAR_RREGS -ARGOFFSET
437 jmp int_ret_from_sys_call
442 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
443 movq %rsp,%rdi /* &pt_regs -> arg1 */
444 call syscall_trace_enter
445 LOAD_ARGS32 ARGOFFSET /* reload args from stack in case ptrace changed it */
447 cmpl $(IA32_NR_syscalls-1),%eax
448 ja int_ret_from_sys_call /* ia32_tracesys has set RAX(%rsp) */
453 movq $0,ORIG_RAX-ARGOFFSET(%rsp)
462 .macro PTREGSCALL label, func, arg
465 leaq \func(%rip),%rax
466 leaq -ARGOFFSET+8(%rsp),\arg /* 8 for return address */
467 jmp ia32_ptregs_common
472 PTREGSCALL stub32_rt_sigreturn, sys32_rt_sigreturn, %rdi
473 PTREGSCALL stub32_sigreturn, sys32_sigreturn, %rdi
474 PTREGSCALL stub32_sigaltstack, sys32_sigaltstack, %rdx
475 PTREGSCALL stub32_execve, sys32_execve, %rcx
476 PTREGSCALL stub32_fork, sys_fork, %rdi
477 PTREGSCALL stub32_clone, sys32_clone, %rdx
478 PTREGSCALL stub32_vfork, sys_vfork, %rdi
479 PTREGSCALL stub32_iopl, sys_iopl, %rsi
481 ENTRY(ia32_ptregs_common)
484 CFI_STARTPROC32 simple
486 CFI_DEF_CFA rsp,SS+8-ARGOFFSET
487 CFI_REL_OFFSET rax,RAX-ARGOFFSET
488 CFI_REL_OFFSET rcx,RCX-ARGOFFSET
489 CFI_REL_OFFSET rdx,RDX-ARGOFFSET
490 CFI_REL_OFFSET rsi,RSI-ARGOFFSET
491 CFI_REL_OFFSET rdi,RDI-ARGOFFSET
492 CFI_REL_OFFSET rip,RIP-ARGOFFSET
493 /* CFI_REL_OFFSET cs,CS-ARGOFFSET*/
494 /* CFI_REL_OFFSET rflags,EFLAGS-ARGOFFSET*/
495 CFI_REL_OFFSET rsp,RSP-ARGOFFSET
496 /* CFI_REL_OFFSET ss,SS-ARGOFFSET*/
500 jmp ia32_sysret /* misbalances the return cache */
502 END(ia32_ptregs_common)
507 .quad sys_restart_syscall
512 .quad compat_sys_open /* 5 */
517 .quad sys_unlink /* 10 */
520 .quad compat_sys_time
522 .quad sys_chmod /* 15 */
524 .quad quiet_ni_syscall /* old break syscall holder */
527 .quad sys_getpid /* 20 */
528 .quad compat_sys_mount /* mount */
529 .quad sys_oldumount /* old_umount */
532 .quad compat_sys_stime /* stime */ /* 25 */
533 .quad compat_sys_ptrace /* ptrace */
535 .quad sys_fstat /* (old)fstat */
537 .quad compat_sys_utime /* 30 */
538 .quad quiet_ni_syscall /* old stty syscall holder */
539 .quad quiet_ni_syscall /* old gtty syscall holder */
542 .quad quiet_ni_syscall /* 35 */ /* old ftime syscall holder */
547 .quad sys_rmdir /* 40 */
550 .quad compat_sys_times
551 .quad quiet_ni_syscall /* old prof syscall holder */
552 .quad sys_brk /* 45 */
557 .quad sys_getegid16 /* 50 */
559 .quad sys_umount /* new_umount */
560 .quad quiet_ni_syscall /* old lock syscall holder */
561 .quad compat_sys_ioctl
562 .quad compat_sys_fcntl64 /* 55 */
563 .quad quiet_ni_syscall /* old mpx syscall holder */
565 .quad quiet_ni_syscall /* old ulimit syscall holder */
567 .quad sys_umask /* 60 */
569 .quad compat_sys_ustat
572 .quad sys_getpgrp /* 65 */
574 .quad sys32_sigaction
577 .quad sys_setreuid16 /* 70 */
579 .quad sys32_sigsuspend
580 .quad compat_sys_sigpending
581 .quad sys_sethostname
582 .quad compat_sys_setrlimit /* 75 */
583 .quad compat_sys_old_getrlimit /* old_getrlimit */
584 .quad compat_sys_getrusage
585 .quad compat_sys_gettimeofday
586 .quad compat_sys_settimeofday
587 .quad sys_getgroups16 /* 80 */
588 .quad sys_setgroups16
589 .quad compat_sys_old_select
592 .quad sys_readlink /* 85 */
596 .quad compat_sys_old_readdir
597 .quad sys32_mmap /* 90 */
602 .quad sys_fchown16 /* 95 */
603 .quad sys_getpriority
604 .quad sys_setpriority
605 .quad quiet_ni_syscall /* old profil syscall holder */
606 .quad compat_sys_statfs
607 .quad compat_sys_fstatfs /* 100 */
609 .quad compat_sys_socketcall
611 .quad compat_sys_setitimer
612 .quad compat_sys_getitimer /* 105 */
613 .quad compat_sys_newstat
614 .quad compat_sys_newlstat
615 .quad compat_sys_newfstat
617 .quad stub32_iopl /* 110 */
619 .quad quiet_ni_syscall /* old "idle" system call */
620 .quad sys32_vm86_warning /* vm86old */
621 .quad compat_sys_wait4
622 .quad sys_swapoff /* 115 */
623 .quad compat_sys_sysinfo
626 .quad stub32_sigreturn
627 .quad stub32_clone /* 120 */
628 .quad sys_setdomainname
631 .quad compat_sys_adjtimex
632 .quad sys32_mprotect /* 125 */
633 .quad compat_sys_sigprocmask
634 .quad quiet_ni_syscall /* create_module */
635 .quad sys_init_module
636 .quad sys_delete_module
637 .quad quiet_ni_syscall /* 130 get_kernel_syms */
641 .quad quiet_ni_syscall /* bdflush */
642 .quad sys_sysfs /* 135 */
643 .quad sys_personality
644 .quad quiet_ni_syscall /* for afs_syscall */
647 .quad sys_llseek /* 140 */
648 .quad compat_sys_getdents
649 .quad compat_sys_select
652 .quad compat_sys_readv /* 145 */
653 .quad compat_sys_writev
656 .quad compat_sys_sysctl /* sysctl */
657 .quad sys_mlock /* 150 */
661 .quad sys_sched_setparam
662 .quad sys_sched_getparam /* 155 */
663 .quad sys_sched_setscheduler
664 .quad sys_sched_getscheduler
665 .quad sys_sched_yield
666 .quad sys_sched_get_priority_max
667 .quad sys_sched_get_priority_min /* 160 */
668 .quad sys32_sched_rr_get_interval
669 .quad compat_sys_nanosleep
671 .quad sys_setresuid16
672 .quad sys_getresuid16 /* 165 */
673 .quad sys32_vm86_warning /* vm86 */
674 .quad quiet_ni_syscall /* query_module */
676 .quad compat_sys_nfsservctl
677 .quad sys_setresgid16 /* 170 */
678 .quad sys_getresgid16
680 .quad stub32_rt_sigreturn
681 .quad sys32_rt_sigaction
682 .quad sys32_rt_sigprocmask /* 175 */
683 .quad sys32_rt_sigpending
684 .quad compat_sys_rt_sigtimedwait
685 .quad sys32_rt_sigqueueinfo
686 .quad sys_rt_sigsuspend
687 .quad sys32_pread /* 180 */
693 .quad stub32_sigaltstack
695 .quad quiet_ni_syscall /* streams1 */
696 .quad quiet_ni_syscall /* streams2 */
697 .quad stub32_vfork /* 190 */
698 .quad compat_sys_getrlimit
700 .quad sys32_truncate64
701 .quad sys32_ftruncate64
702 .quad sys32_stat64 /* 195 */
707 .quad sys_getgid /* 200 */
712 .quad sys_getgroups /* 205 */
717 .quad sys_setresgid /* 210 */
722 .quad sys_setfsuid /* 215 */
727 .quad compat_sys_getdents64 /* 220 getdents64 */
728 .quad compat_sys_fcntl64
729 .quad quiet_ni_syscall /* tux */
730 .quad quiet_ni_syscall /* security */
732 .quad sys32_readahead /* 225 */
737 .quad sys_lgetxattr /* 230 */
742 .quad sys_removexattr /* 235 */
743 .quad sys_lremovexattr
744 .quad sys_fremovexattr
747 .quad compat_sys_futex /* 240 */
748 .quad compat_sys_sched_setaffinity
749 .quad compat_sys_sched_getaffinity
750 .quad sys_set_thread_area
751 .quad sys_get_thread_area
752 .quad compat_sys_io_setup /* 245 */
754 .quad compat_sys_io_getevents
755 .quad compat_sys_io_submit
757 .quad sys32_fadvise64 /* 250 */
758 .quad quiet_ni_syscall /* free_huge_pages */
760 .quad sys32_lookup_dcookie
761 .quad sys_epoll_create
762 .quad sys_epoll_ctl /* 255 */
764 .quad sys_remap_file_pages
765 .quad sys_set_tid_address
766 .quad compat_sys_timer_create
767 .quad compat_sys_timer_settime /* 260 */
768 .quad compat_sys_timer_gettime
769 .quad sys_timer_getoverrun
770 .quad sys_timer_delete
771 .quad compat_sys_clock_settime
772 .quad compat_sys_clock_gettime /* 265 */
773 .quad compat_sys_clock_getres
774 .quad compat_sys_clock_nanosleep
775 .quad compat_sys_statfs64
776 .quad compat_sys_fstatfs64
777 .quad sys_tgkill /* 270 */
778 .quad compat_sys_utimes
779 .quad sys32_fadvise64_64
780 .quad quiet_ni_syscall /* sys_vserver */
782 .quad compat_sys_get_mempolicy /* 275 */
783 .quad sys_set_mempolicy
784 .quad compat_sys_mq_open
786 .quad compat_sys_mq_timedsend
787 .quad compat_sys_mq_timedreceive /* 280 */
788 .quad compat_sys_mq_notify
789 .quad compat_sys_mq_getsetattr
790 .quad compat_sys_kexec_load /* reserved for kexec */
791 .quad compat_sys_waitid
792 .quad quiet_ni_syscall /* 285: sys_altroot */
794 .quad sys_request_key
797 .quad sys_ioprio_get /* 290 */
798 .quad sys_inotify_init
799 .quad sys_inotify_add_watch
800 .quad sys_inotify_rm_watch
801 .quad sys_migrate_pages
802 .quad compat_sys_openat /* 295 */
806 .quad compat_sys_futimesat
807 .quad sys32_fstatat /* 300 */
812 .quad sys_readlinkat /* 305 */
815 .quad compat_sys_pselect6
816 .quad compat_sys_ppoll
817 .quad sys_unshare /* 310 */
818 .quad compat_sys_set_robust_list
819 .quad compat_sys_get_robust_list
821 .quad sys32_sync_file_range
822 .quad sys_tee /* 315 */
823 .quad compat_sys_vmsplice
824 .quad compat_sys_move_pages
826 .quad sys_epoll_pwait
827 .quad compat_sys_utimensat /* 320 */
828 .quad compat_sys_signalfd
829 .quad sys_timerfd_create
831 .quad sys32_fallocate
832 .quad compat_sys_timerfd_settime /* 325 */
833 .quad compat_sys_timerfd_gettime
834 .quad compat_sys_signalfd4
836 .quad sys_epoll_create1
837 .quad sys_dup3 /* 330 */
839 .quad sys_inotify_init1
840 .quad compat_sys_preadv
841 .quad compat_sys_pwritev
842 .quad compat_sys_rt_tgsigqueueinfo /* 335 */
843 .quad sys_perf_event_open
844 .quad compat_sys_recvmmsg