1 /* SPDX-License-Identifier: GPL-2.0 */
3 * linux/arch/cris/entry.S
5 * Copyright (C) 2000, 2001, 2002 Axis Communications AB
7 * Authors: Bjorn Wesen (bjornw@axis.com)
11 * entry.S contains the system-call and fault low-level handling routines.
13 * NOTE: This code handles signal-recognition, which happens every time
14 * after a timer-interrupt and after each system call.
16 * Stack layout in 'ret_from_system_call':
17 * ptrace needs to have all regs on the stack.
18 * if the order here is changed, it needs to be
19 * updated in fork.c:copy_process, signal.c:do_signal,
20 * ptrace.c and ptrace.h
24 #include <linux/linkage.h>
25 #include <linux/sys.h>
26 #include <asm/unistd.h>
27 #include <arch/sv_addr_ag.h>
28 #include <asm/errno.h>
29 #include <asm/thread_info.h>
30 #include <asm/asm-offsets.h>
32 #include <asm/pgtable.h>
34 ;; functions exported from this file
39 .globl ret_from_kernel_thread
41 .globl multiple_interrupt
44 .globl spurious_interrupt
48 .globl gdb_handle_breakpoint
51 ;; below are various parts of system_call which are not in the fast-path
54 ; Check if preemptive kernel scheduling should be done
57 ; Load current task struct
58 movs.w -8192, $r0 ; THREAD_SIZE = 8192
60 move.d [$r0+TI_preempt_count], $r10 ; Preemption disabled?
64 move.d [$r0+TI_flags], $r10
65 btstq TIF_NEED_RESCHED, $r10 ; Check if need_resched is set
68 ; Ok, lets's do some preemptive kernel scheduling
69 jsr preempt_schedule_irq
70 ; Load new task struct
71 movs.w -8192, $r0 ; THREAD_SIZE = 8192
73 ; One more time (with new task)
77 #define _resume_kernel _Rexit
80 ; Called at exit from fork. schedule_tail must be called to drop
81 ; spinlock if CONFIG_PREEMPT
87 ret_from_kernel_thread:
89 move.d $r2, $r10 ; argument is here
90 jsr $r1 ; call the payload
91 moveq 0, $r9 ; no syscall restarts, TYVM...
95 ;; check for resched if preemptive kernel or if we're going back to user-mode
96 ;; this test matches the user_regs(regs) macro
97 ;; we cannot simply test $dccr, because that does not necessarily
98 ;; reflect what mode we'll return into.
100 move.d [$sp + PT_dccr], $r0; regs->dccr
101 btstq 8, $r0 ; U-flag
103 ; Note that di below is in delay slot
106 di ; so need_resched and sigpending don't change
108 movs.w -8192, $r0 ; THREAD_SIZE == 8192
111 move.d [$r0+TI_flags], $r10 ; current->work
112 and.d _TIF_WORK_MASK, $r10 ; is there any work to be done on return
118 ;; The system_call is called by a BREAK instruction, which works like
119 ;; an interrupt call but it stores the return PC in BRP instead of IRP.
120 ;; Since we dont really want to have two epilogues (one for system calls
121 ;; and one for interrupts) we push the contents of BRP instead of IRP in the
122 ;; system call prologue, to make it look like an ordinary interrupt on the
125 ;; Since we can't have system calls inside interrupts, it should not matter
126 ;; that we don't stack IRP.
128 ;; In r9 we have the wanted syscall number. Arguments come in r10,r11,r12,r13,mof,srp
130 ;; This function looks on the _surface_ like spaghetti programming, but it's
131 ;; really designed so that the fast-path does not force cache-loading of non-used
132 ;; instructions. Only the non-common cases cause the outlined code to run..
135 ;; stack-frame similar to the irq heads, which is reversed in ret_from_sys_call
136 move $brp,[$sp=$sp-16]; instruction pointer and room for a fake SBFS frame
140 subq 14*4, $sp ; make room for r0-r13
141 movem $r13, [$sp] ; push r0-r13
142 push $r10 ; push orig_r10
143 clear.d [$sp=$sp-4] ; frametype == 0, normal stackframe
146 move.d $r0, [$sp+PT_r10] ; put the default return value in r10 in the frame
148 ;; check if this process is syscall-traced
150 movs.w -8192, $r0 ; THREAD_SIZE == 8192
153 move.d [$r0+TI_flags], $r0
154 btstq TIF_SYSCALL_TRACE, $r0
155 bmi _syscall_trace_entry
160 ;; check for sanity in the requested syscall number
162 cmpu.w NR_syscalls, $r9
163 bcc ret_from_sys_call
164 lslq 2, $r9 ; multiply by 4, in the delay slot
166 ;; as a bonus 7th parameter, we give the location on the stack
167 ;; of the register structure itself. some syscalls need this.
171 ;; the parameter carrying registers r10, r11, r12 and 13 are intact.
172 ;; the fifth and sixth parameters (if any) was in mof and srp
173 ;; respectively, and we need to put them on the stack.
178 jsr [$r9+sys_call_table] ; actually do the system call
179 addq 3*4, $sp ; pop the mof, srp and regs parameters
180 move.d $r10, [$sp+PT_r10] ; save the return value
182 moveq 1, $r9 ; "parameter" to ret_from_sys_call to show it was a sys call
184 ;; fall through into ret_from_sys_call to return
187 ;; r9 is a parameter - if >=1 we came from a syscall, if 0, from an irq
189 ;; get the current task-struct pointer (see top for defs)
191 movs.w -8192, $r0 ; THREAD_SIZE == 8192
194 di ; make sure need_resched and sigpending don't change
195 move.d [$r0+TI_flags],$r1
196 and.d _TIF_ALLWORK_MASK, $r1
197 bne _syscall_exit_work
201 ;; this epilogue MUST match the prologues in multiple_interrupt, irq.h and ptregs.h
203 bne _RBFexit ; was not CRIS_FRAME_NORMAL, handle otherwise
204 addq 4, $sp ; skip orig_r10, in delayslot
205 movem [$sp+], $r13 ; registers r0-r13
206 pop $mof ; multiply overflow register
207 pop $dccr ; condition codes
208 pop $srp ; subroutine return pointer
209 ;; now we have a 4-word SBFS frame which we do not want to restore
210 ;; using RBF since it was not stacked with SBFS. instead we would like to
211 ;; just get the PC value to restart it with, and skip the rest of
213 ;; Also notice that it's important to use instructions here that
214 ;; keep the interrupts disabled (since we've already popped DCCR)
215 move [$sp=$sp+16], $p8; pop the SBFS frame from the sp
216 jmpu [$sp-16] ; return through the irp field in the sbfs frame
219 movem [$sp+], $r13 ; registers r0-r13, in delay slot
220 pop $mof ; multiply overflow register
221 pop $dccr ; condition codes
222 pop $srp ; subroutine return pointer
223 rbf [$sp+] ; return by popping the CPU status
225 ;; We get here after doing a syscall if extra work might need to be done
226 ;; perform syscall exit tracing if needed
229 ;; $r0 contains current at this point and irq's are disabled
231 move.d [$r0+TI_flags], $r1
232 btstq TIF_SYSCALL_TRACE, $r1
238 move.d $r9, $r1 ; preserve r9
246 move.d [$r0+TI_flags], $r1
247 btstq TIF_NEED_RESCHED, $r1
248 bpl _work_notifysig ; was neither trace nor sched, must be signal/notify
252 move.d $r9, $r1 ; preserve r9
257 move.d [$r0+TI_flags], $r1
258 and.d _TIF_WORK_MASK, $r1; ignore the syscall trace counter
261 btstq TIF_NEED_RESCHED, $r1
262 bmi _work_resched ; current->work.need_resched
266 ;; deal with pending signals and notify-resume requests
268 move.d $r9, $r10 ; do_notify_resume syscall/irq param
269 move.d $sp, $r11 ; the regs param
270 move.d $r1, $r12 ; the thread_info_flags parameter
276 ;; We get here as a sidetrack when we've entered a syscall with the
277 ;; trace-bit set. We need to call do_syscall_trace and then continue
280 _syscall_trace_entry:
281 ;; PT_r10 in the frame contains -ENOSYS as required, at this point
285 ;; now re-enter the syscall code to do the syscall itself
286 ;; we need to restore $r9 here to contain the wanted syscall, and
287 ;; the other parameter-bearing registers
289 move.d [$sp+PT_r9], $r9
290 move.d [$sp+PT_orig_r10], $r10 ; PT_r10 is already filled with -ENOSYS.
291 move.d [$sp+PT_r11], $r11
292 move.d [$sp+PT_r12], $r12
293 move.d [$sp+PT_r13], $r13
294 move [$sp+PT_mof], $mof
295 move [$sp+PT_srp], $srp
300 ;; resume performs the actual task-switching, by switching stack pointers
301 ;; input arguments: r10 = prev, r11 = next, r12 = thread offset in task struct
302 ;; returns old current in r10
304 ;; TODO: see the i386 version. The switch_to which calls resume in our version
305 ;; could really be an inline asm of this.
308 push $srp ; we keep the old/new PC on the stack
309 add.d $r12, $r10 ; r10 = current tasks tss
310 move $dccr, [$r10+THREAD_dccr]; save irq enable state
313 move $usp, [$r10+ THREAD_usp] ; save user-mode stackpointer
315 ;; See copy_thread for the reason why register R9 is saved.
317 movem $r9, [$sp] ; save non-scratch registers and R9.
319 move.d $sp, [$r10+THREAD_ksp] ; save the kernel stack pointer for the old task
320 move.d $sp, $r10 ; return last running task in r10
321 and.d -8192, $r10 ; get thread_info from stackpointer
322 move.d [$r10+TI_task], $r10 ; get task
323 add.d $r12, $r11 ; find the new tasks tss
324 move.d [$r11+THREAD_ksp], $sp ; switch into the new stackframe by restoring kernel sp
326 movem [$sp+], $r9 ; restore non-scratch registers and R9.
328 move [$r11+THREAD_usp], $usp ; restore user-mode stackpointer
330 move [$r11+THREAD_dccr], $dccr ; restore irq enable status
331 jump [$sp+] ; restore PC
333 ;; This is the MMU bus fault handler.
334 ;; It needs to stack the CPU status and overall is different
335 ;; from the other interrupt handlers.
338 ;; For refills we try to do a quick page table lookup. If it is
339 ;; a real fault we let the mm subsystem handle it.
341 ;; the first longword in the sbfs frame was the interrupted PC
342 ;; which fits nicely with the "IRP" slot in pt_regs normally used to
343 ;; contain the return address. used by Oops to print kernel errors.
344 sbfs [$sp=$sp-16] ; push the internal CPU status
349 move.d [R_MMU_CAUSE], $r1
350 ;; ETRAX 100LX TR89 bugfix: if the second half of an unaligned
351 ;; write causes a MMU-fault, it will not be restarted correctly.
352 ;; This could happen if a write crosses a page-boundary and the
353 ;; second page is not yet COW'ed or even loaded. The workaround
354 ;; is to clear the unaligned bit in the CPU status record, so
355 ;; that the CPU will rerun both the first and second halves of
356 ;; the instruction. This will not have any sideeffects unless
357 ;; the first half goes to any device or memory that can't be
358 ;; written twice, and which is mapped through the MMU.
360 ;; We only need to do this for writes.
361 btstq 8, $r1 ; Write access?
364 move.d [$sp+16], $r0 ; Clear unaligned bit in csrinstr
367 1: btstq 12, $r1 ; Refill?
369 lsrq 24, $r1 ; Get PGD index (bit 24-31)
370 move.d [current_pgd], $r0 ; PGD for the current process
371 move.d [$r0+$r1.d], $r0 ; Get PMD
374 and.w PAGE_MASK, $r0 ; Remove PMD flags
375 move.d [R_MMU_CAUSE], $r1
377 and.d 0x7ff, $r1 ; Get PTE index into PGD (bit 13-23)
378 move.d [$r0+$r1.d], $r1 ; Get PTE
382 move.d $r1, [R_TLB_LO]
386 rbf [$sp+] ; return by popping the CPU status
388 2: ; PMD or PTE missing, let the mm subsystem fix it up.
392 ; Ok, not that easy, pass it on to the mm subsystem
393 ; The MMU status record is now on the stack
394 push $srp ; make a stackframe similar to pt_regs
400 push $r10 ; dummy orig_r10
402 push $r10 ; frametype == 1, BUSFAULT frame type
404 move.d $sp, $r10 ; pt_regs argument to handle_mmu_bus_fault
406 jsr handle_mmu_bus_fault ; in arch/cris/arch-v10/mm/fault.c
408 ;; now we need to return through the normal path, we cannot just
409 ;; do the RBFexit since we might have killed off the running
410 ;; process due to a SEGV, scheduled due to a page blocking or
413 moveq 0, $r9 ; busfault is equivalent to an irq
418 ;; special handlers for breakpoint and NMI
424 move.d [hw_bp_trig_ptr],$r10
427 move.d $r10,[hw_bp_trig_ptr]
435 ;; this prologue MUST match the one in irq.h and the struct in ptregs.h!!!
436 move $brp,[$sp=$sp-16]; instruction pointer and room for a fake SBFS frame
443 push $r10 ; push orig_r10
444 clear.d [$sp=$sp-4] ; frametype == 0, normal frame
446 ;; If there is a glitch on the NMI pin shorter than ~100ns
447 ;; (i.e. non-active by the time we get here) then the nmi_pin bit
448 ;; in R_IRQ_MASK0_RD will already be cleared. The watchdog_nmi bit
449 ;; is cleared by us however (when feeding the watchdog), which is why
450 ;; we use that bit to determine what brought us here.
452 move.d [R_IRQ_MASK0_RD], $r1 ; External NMI or watchdog?
457 setf m ; Enable NMI again
458 ba _Rexit ; Return the standard way
461 #if defined(CONFIG_ETRAX_WATCHDOG)
462 ;; Check if we're waiting for reset to happen, as signalled by
463 ;; hard_reset_now setting cause_of_death to a magic value. If so, just
464 ;; get stuck until reset happens.
465 .comm cause_of_death, 4 ;; Don't declare this anywhere.
466 move.d [cause_of_death], $r10
472 ;; We'll see this in ksymoops dumps.
475 #ifdef CONFIG_ETRAX_WATCHDOG_NICE_DOGGY
476 ;; We just restart the watchdog here to be sure we dont get
477 ;; hit while printing the watchdogmsg below
478 ;; This restart is compatible with the rest of the C-code, so
479 ;; the C-code can keep restarting the watchdog after this point.
480 ;; The non-NICE_DOGGY code below though, disables the possibility
481 ;; to restart since it changes the watchdog key, to avoid any
482 ;; buggy loops etc. keeping the watchdog alive after this.
486 ;; We need to extend the 3.3ms after the NMI at watchdog bite, so we have
487 ;; time for an oops-dump over a 115k2 serial wire. Another 100ms should do.
489 ;; Change the watchdog key to an arbitrary 3-bit value and restart the
492 moveq IO_FIELD (R_WATCHDOG, key, WD_INIT), $r10
493 move.d R_WATCHDOG, $r11
496 moveq IO_FIELD (R_WATCHDOG, key, \
497 IO_EXTRACT (R_WATCHDOG, key, \
498 IO_MASK (R_WATCHDOG, key)) \
500 | IO_STATE (R_WATCHDOG, enable, start), $r10
505 ;; Note that we don't do "setf m" here (or after two necessary NOPs),
506 ;; since *not* doing that saves us from re-entrancy checks. We don't want
507 ;; to get here again due to possible subsequent NMIs; we want the watchdog
510 move.d _watchdogmsg,$r10
514 jsr watchdog_bite_hook
516 ;; This nop is here so we see the "Watchdog_bite" label in ksymoops dumps
517 ;; rather than "spurious_interrupt".
519 ;; At this point we drop down into spurious_interrupt, which will do a
524 .ascii "Oops: bitten by watchdog\n\0"
527 #endif /* CONFIG_ETRAX_WATCHDOG */
533 ;; this handles the case when multiple interrupts arrive at the same time
534 ;; we jump to the first set interrupt bit in a priority fashion
535 ;; the hardware will call the unserved interrupts after the handler finishes
538 ;; this prologue MUST match the one in irq.h and the struct in ptregs.h!!!
539 move $irp,[$sp=$sp-16]; instruction pointer and room for a fake SBFS frame
546 push $r10 ; push orig_r10
547 clear.d [$sp=$sp-4] ; frametype == 0, normal frame
556 ;; SIGTRAP the process that executed the break instruction.
557 ;; Make a frame that Rexit in entry.S expects.
559 move $brp, [$sp=$sp-16] ; Push BRP while faking a cpu status record.
560 push $srp ; Push subroutine return pointer.
561 push $dccr ; Push condition codes.
562 push $mof ; Push multiply overflow reg.
563 di ; Need to disable irq's at this point.
564 subq 14*4, $sp ; Make room for r0-r13.
565 movem $r13, [$sp] ; Push the r0-r13 registers.
566 push $r10 ; Push orig_r10.
567 clear.d [$sp=$sp-4] ; Frametype - this is a normal stackframe.
569 movs.w -8192,$r9 ; THREAD_SIZE == 8192
571 move.d [$r9+TI_task], $r10
572 move.d [$r10+TASK_pid], $r10 ; current->pid as arg1.
573 moveq 5, $r11 ; SIGTRAP as arg2.
575 jump ret_from_intr ; Use the return routine for interrupts.
577 gdb_handle_breakpoint:
580 #ifdef CONFIG_ETRAX_KGDB
581 move $dccr, $r0 ; U-flag not affected by previous insns.
582 btstq 8, $r0 ; Test the U-flag.
583 bmi _ugdb_handle_breakpoint ; Go to user mode debugging.
584 nop ; Empty delay slot (cannot pop r0 here).
585 pop $r0 ; Restore r0.
586 ba kgdb_handle_breakpoint ; Go to kernel debugging.
587 pop $dccr ; Restore dccr in delay slot.
590 _ugdb_handle_breakpoint:
591 move $brp, $r0 ; Use r0 temporarily for calculation.
592 subq 2, $r0 ; Set to address of previous instruction.
594 pop $r0 ; Restore r0.
595 ba do_sigtrap ; SIGTRAP the offending process.
596 pop $dccr ; Restore dccr in delay slot.
607 .long sys_restart_syscall /* 0 - old "setup()" system call, used for restarting */
612 .long sys_open /* 5 */
617 .long sys_unlink /* 10 */
622 .long sys_chmod /* 15 */
624 .long sys_ni_syscall /* old break syscall holder */
627 .long sys_getpid /* 20 */
632 .long sys_stime /* 25 */
637 .long sys_utime /* 30 */
638 .long sys_ni_syscall /* old stty syscall holder */
639 .long sys_ni_syscall /* old gtty syscall holder */
642 .long sys_ni_syscall /* 35 old ftime syscall holder */
647 .long sys_rmdir /* 40 */
651 .long sys_ni_syscall /* old prof syscall holder */
652 .long sys_brk /* 45 */
657 .long sys_getegid16 /* 50 */
659 .long sys_umount /* recycled never used phys( */
660 .long sys_ni_syscall /* old lock syscall holder */
662 .long sys_fcntl /* 55 */
663 .long sys_ni_syscall /* old mpx syscall holder */
665 .long sys_ni_syscall /* old ulimit syscall holder */
666 .long sys_ni_syscall /* old sys_olduname holder */
667 .long sys_umask /* 60 */
672 .long sys_getpgrp /* 65 */
677 .long sys_setreuid16 /* 70 */
681 .long sys_sethostname
682 .long sys_setrlimit /* 75 */
683 .long sys_old_getrlimit
685 .long sys_gettimeofday
686 .long sys_settimeofday
687 .long sys_getgroups16 /* 80 */
688 .long sys_setgroups16
689 .long sys_select /* was old_select in Linux/E100 */
692 .long sys_readlink /* 85 */
696 .long sys_old_readdir
697 .long sys_old_mmap /* 90 */
702 .long sys_fchown16 /* 95 */
703 .long sys_getpriority
704 .long sys_setpriority
705 .long sys_ni_syscall /* old profil syscall holder */
707 .long sys_fstatfs /* 100 */
708 .long sys_ni_syscall /* sys_ioperm in i386 */
712 .long sys_getitimer /* 105 */
716 .long sys_ni_syscall /* old sys_uname holder */
717 .long sys_ni_syscall /* 110 */ /* sys_iopl in i386 */
719 .long sys_ni_syscall /* old "idle" system call */
720 .long sys_ni_syscall /* vm86old in i386 */
722 .long sys_swapoff /* 115 */
727 .long sys_clone /* 120 */
728 .long sys_setdomainname
730 .long sys_ni_syscall /* sys_modify_ldt */
732 .long sys_mprotect /* 125 */
733 .long sys_sigprocmask
734 .long sys_ni_syscall /* old "create_module" */
735 .long sys_init_module
736 .long sys_delete_module
737 .long sys_ni_syscall /* 130: old "get_kernel_syms" */
742 .long sys_sysfs /* 135 */
743 .long sys_personality
744 .long sys_ni_syscall /* for afs_syscall */
747 .long sys_llseek /* 140 */
752 .long sys_readv /* 145 */
757 .long sys_mlock /* 150 */
761 .long sys_sched_setparam
762 .long sys_sched_getparam /* 155 */
763 .long sys_sched_setscheduler
764 .long sys_sched_getscheduler
765 .long sys_sched_yield
766 .long sys_sched_get_priority_max
767 .long sys_sched_get_priority_min /* 160 */
768 .long sys_sched_rr_get_interval
771 .long sys_setresuid16
772 .long sys_getresuid16 /* 165 */
773 .long sys_ni_syscall /* sys_vm86 */
774 .long sys_ni_syscall /* Old sys_query_module */
776 .long sys_ni_syscall /* old nfsservctl */
777 .long sys_setresgid16 /* 170 */
778 .long sys_getresgid16
780 .long sys_rt_sigreturn
781 .long sys_rt_sigaction
782 .long sys_rt_sigprocmask /* 175 */
783 .long sys_rt_sigpending
784 .long sys_rt_sigtimedwait
785 .long sys_rt_sigqueueinfo
786 .long sys_rt_sigsuspend
787 .long sys_pread64 /* 180 */
792 .long sys_capset /* 185 */
793 .long sys_sigaltstack
795 .long sys_ni_syscall /* streams1 */
796 .long sys_ni_syscall /* streams2 */
797 .long sys_vfork /* 190 */
799 .long sys_mmap2 /* mmap_pgoff */
801 .long sys_ftruncate64
802 .long sys_stat64 /* 195 */
807 .long sys_getgid /* 200 */
812 .long sys_getgroups /* 205 */
817 .long sys_setresgid /* 210 */
822 .long sys_setfsuid /* 215 */
827 .long sys_getdents64 /* 220 */
829 .long sys_ni_syscall /* reserved for TUX */
832 .long sys_readahead /* 225 */
837 .long sys_lgetxattr /* 230 */
842 .long sys_removexattr /* 235 */
843 .long sys_lremovexattr
844 .long sys_fremovexattr
847 .long sys_futex /* 240 */
848 .long sys_sched_setaffinity
849 .long sys_sched_getaffinity
850 .long sys_ni_syscall /* sys_set_thread_area */
851 .long sys_ni_syscall /* sys_get_thread_area */
852 .long sys_io_setup /* 245 */
854 .long sys_io_getevents
857 .long sys_fadvise64 /* 250 */
860 .long sys_lookup_dcookie
861 .long sys_epoll_create
862 .long sys_epoll_ctl /* 255 */
864 .long sys_remap_file_pages
865 .long sys_set_tid_address
866 .long sys_timer_create
867 .long sys_timer_settime /* 260 */
868 .long sys_timer_gettime
869 .long sys_timer_getoverrun
870 .long sys_timer_delete
871 .long sys_clock_settime
872 .long sys_clock_gettime /* 265 */
873 .long sys_clock_getres
874 .long sys_clock_nanosleep
877 .long sys_tgkill /* 270 */
879 .long sys_fadvise64_64
880 .long sys_ni_syscall /* sys_vserver */
881 .long sys_ni_syscall /* sys_mbind */
882 .long sys_ni_syscall /* 275 sys_get_mempolicy */
883 .long sys_ni_syscall /* sys_set_mempolicy */
886 .long sys_mq_timedsend
887 .long sys_mq_timedreceive /* 280 */
889 .long sys_mq_getsetattr
892 .long sys_ni_syscall /* 285 */ /* available */
894 .long sys_request_key
897 .long sys_ioprio_get /* 290 */
898 .long sys_inotify_init
899 .long sys_inotify_add_watch
900 .long sys_inotify_rm_watch
901 .long sys_migrate_pages
902 .long sys_openat /* 295 */
907 .long sys_fstatat64 /* 300 */
912 .long sys_readlinkat /* 305 */
917 .long sys_unshare /* 310 */
918 .long sys_set_robust_list
919 .long sys_get_robust_list
921 .long sys_sync_file_range
922 .long sys_tee /* 315 */
926 .long sys_epoll_pwait
927 .long sys_utimensat /* 320 */
929 .long sys_timerfd_create
932 .long sys_timerfd_settime /* 325 */
933 .long sys_timerfd_gettime
936 .long sys_epoll_create1
937 .long sys_dup3 /* 330 */
939 .long sys_inotify_init1
942 .long sys_setns /* 335 */
943 .long sys_name_to_handle_at
944 .long sys_open_by_handle_at
945 .long sys_rt_tgsigqueueinfo
946 .long sys_perf_event_open
947 .long sys_recvmmsg /* 340 */
949 .long sys_fanotify_init
950 .long sys_fanotify_mark
952 .long sys_clock_adjtime /* 345 */
955 .long sys_process_vm_readv
956 .long sys_process_vm_writev
957 .long sys_kcmp /* 350 */
958 .long sys_finit_module
959 .long sys_sched_setattr
960 .long sys_sched_getattr
962 .long sys_seccomp /* 355 */
964 .long sys_memfd_create
969 * NOTE!! This doesn't have to be exact - we just have
970 * to make sure we have _enough_ of the "sys_ni_syscall"
971 * entries. Don't panic if you notice that this hasn't
972 * been shrunk every time we add a new system call.
975 .rept NR_syscalls-(.-sys_call_table)/4