entry.S 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. ###############################################################################
  2. #
  3. # MN10300 Exception and interrupt entry points
  4. #
  5. # Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
  6. # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  7. # Modified by David Howells (dhowells@redhat.com)
  8. #
  9. # This program is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU General Public Licence
  11. # as published by the Free Software Foundation; either version
  12. # 2 of the Licence, or (at your option) any later version.
  13. #
  14. ###############################################################################
  15. #include <linux/sys.h>
  16. #include <linux/linkage.h>
  17. #include <asm/smp.h>
  18. #include <asm/irqflags.h>
  19. #include <asm/thread_info.h>
  20. #include <asm/intctl-regs.h>
  21. #include <asm/busctl-regs.h>
  22. #include <asm/timer-regs.h>
  23. #include <unit/leds.h>
  24. #include <asm/page.h>
  25. #include <asm/pgtable.h>
  26. #include <asm/errno.h>
  27. #include <asm/asm-offsets.h>
  28. #include <asm/frame.inc>
  29. #if defined(CONFIG_SMP) && defined(CONFIG_GDBSTUB)
  30. #include <asm/gdb-stub.h>
  31. #endif /* CONFIG_SMP && CONFIG_GDBSTUB */
  32. #ifdef CONFIG_PREEMPT
  33. #define preempt_stop LOCAL_IRQ_DISABLE
  34. #else
  35. #define preempt_stop
  36. #define resume_kernel restore_all
  37. #endif
  38. .am33_2
  39. ###############################################################################
  40. #
  41. # the return path for a forked child
  42. # - on entry, D0 holds the address of the previous task to run
  43. #
  44. ###############################################################################
  45. ENTRY(ret_from_fork)
  46. call schedule_tail[],0
  47. GET_THREAD_INFO a2
  48. # return 0 to indicate child process
  49. clr d0
  50. mov d0,(REG_D0,fp)
  51. jmp syscall_exit
  52. ENTRY(ret_from_kernel_thread)
  53. call schedule_tail[],0
  54. mov (REG_D0,fp),d0
  55. mov (REG_A0,fp),a0
  56. calls (a0)
  57. GET_THREAD_INFO a2 # A2 must be set on return from sys_exit()
  58. clr d0
  59. mov d0,(REG_D0,fp)
  60. jmp syscall_exit
  61. ###############################################################################
  62. #
  63. # system call handler
  64. #
  65. ###############################################################################
  66. ENTRY(system_call)
  67. add -4,sp
  68. SAVE_ALL
  69. mov d0,(REG_ORIG_D0,fp)
  70. GET_THREAD_INFO a2
  71. cmp nr_syscalls,d0
  72. bcc syscall_badsys
  73. btst _TIF_SYSCALL_TRACE,(TI_flags,a2)
  74. bne syscall_entry_trace
  75. syscall_call:
  76. add d0,d0,a1
  77. add a1,a1
  78. mov (REG_A0,fp),d0
  79. mov (sys_call_table,a1),a0
  80. calls (a0)
  81. mov d0,(REG_D0,fp)
  82. syscall_exit:
  83. # make sure we don't miss an interrupt setting need_resched or
  84. # sigpending between sampling and the rti
  85. LOCAL_IRQ_DISABLE
  86. mov (TI_flags,a2),d2
  87. btst _TIF_ALLWORK_MASK,d2
  88. bne syscall_exit_work
  89. restore_all:
  90. RESTORE_ALL
  91. ###############################################################################
  92. #
  93. # perform work that needs to be done immediately before resumption and syscall
  94. # tracing
  95. #
  96. ###############################################################################
  97. ALIGN
  98. syscall_exit_work:
  99. mov (REG_EPSW,fp),d0
  100. and EPSW_nSL,d0
  101. beq resume_kernel # returning to supervisor mode
  102. LOCAL_IRQ_ENABLE # could let syscall_trace_exit() call
  103. # schedule() instead
  104. btst _TIF_SYSCALL_TRACE,d2
  105. beq work_pending
  106. mov fp,d0
  107. call syscall_trace_exit[],0 # do_syscall_trace(regs)
  108. jmp resume_userspace
  109. ALIGN
  110. work_pending:
  111. btst _TIF_NEED_RESCHED,d2
  112. beq work_notifysig
  113. work_resched:
  114. call schedule[],0
  115. resume_userspace:
  116. # make sure we don't miss an interrupt setting need_resched or
  117. # sigpending between sampling and the rti
  118. LOCAL_IRQ_DISABLE
  119. # is there any work to be done other than syscall tracing?
  120. mov (TI_flags,a2),d2
  121. btst _TIF_WORK_MASK,d2
  122. beq restore_all
  123. LOCAL_IRQ_ENABLE
  124. btst _TIF_NEED_RESCHED,d2
  125. bne work_resched
  126. # deal with pending signals and notify-resume requests
  127. work_notifysig:
  128. mov fp,d0
  129. mov d2,d1
  130. call do_notify_resume[],0
  131. jmp resume_userspace
  132. # perform syscall entry tracing
  133. syscall_entry_trace:
  134. mov -ENOSYS,d0
  135. mov d0,(REG_D0,fp)
  136. mov fp,d0
  137. call syscall_trace_entry[],0 # returns the syscall number to actually use
  138. mov (REG_D1,fp),d1
  139. cmp nr_syscalls,d0
  140. bcs syscall_call
  141. jmp syscall_exit
  142. syscall_badsys:
  143. mov -ENOSYS,d0
  144. mov d0,(REG_D0,fp)
  145. jmp resume_userspace
  146. # userspace resumption stub bypassing syscall exit tracing
  147. .globl ret_from_exception, ret_from_intr
  148. ALIGN
  149. ret_from_exception:
  150. preempt_stop
  151. ret_from_intr:
  152. GET_THREAD_INFO a2
  153. mov (REG_EPSW,fp),d0 # need to deliver signals before
  154. # returning to userspace
  155. and EPSW_nSL,d0
  156. bne resume_userspace # returning to userspace
  157. #ifdef CONFIG_PREEMPT
  158. resume_kernel:
  159. LOCAL_IRQ_DISABLE
  160. mov (TI_preempt_count,a2),d0 # non-zero preempt_count ?
  161. cmp 0,d0
  162. bne restore_all
  163. need_resched:
  164. btst _TIF_NEED_RESCHED,(TI_flags,a2)
  165. beq restore_all
  166. mov (REG_EPSW,fp),d0
  167. and EPSW_IM,d0
  168. cmp EPSW_IM_7,d0 # interrupts off (exception path) ?
  169. bne restore_all
  170. call preempt_schedule_irq[],0
  171. jmp need_resched
  172. #else
  173. jmp resume_kernel
  174. #endif
  175. ###############################################################################
  176. #
  177. # IRQ handler entry point
  178. # - intended to be entered at multiple priorities
  179. #
  180. ###############################################################################
  181. ENTRY(irq_handler)
  182. add -4,sp
  183. SAVE_ALL
  184. # it's not a syscall
  185. mov 0xffffffff,d0
  186. mov d0,(REG_ORIG_D0,fp)
  187. mov fp,d0
  188. call do_IRQ[],0 # do_IRQ(regs)
  189. jmp ret_from_intr
  190. ###############################################################################
  191. #
  192. # Double Fault handler entry point
  193. # - note that there will not be a stack, D0/A0 will hold EPSW/PC as were
  194. #
  195. ###############################################################################
  196. .section .bss
  197. .balign THREAD_SIZE
  198. .space THREAD_SIZE
  199. __df_stack:
  200. .previous
  201. ENTRY(double_fault)
  202. mov a0,(__df_stack-4) # PC as was
  203. mov d0,(__df_stack-8) # EPSW as was
  204. mn10300_set_dbfleds # display 'db-f' on the LEDs
  205. mov 0xaa55aa55,d0
  206. mov d0,(__df_stack-12) # no ORIG_D0
  207. mov sp,a0 # save corrupted SP
  208. mov __df_stack-12,sp # emergency supervisor stack
  209. SAVE_ALL
  210. mov a0,(REG_A0,fp) # save corrupted SP as A0 (which got
  211. # clobbered by the CPU)
  212. mov fp,d0
  213. calls do_double_fault
  214. double_fault_loop:
  215. bra double_fault_loop
  216. ###############################################################################
  217. #
  218. # Bus Error handler entry point
  219. # - handle external (async) bus errors separately
  220. #
  221. ###############################################################################
  222. ENTRY(raw_bus_error)
  223. add -4,sp
  224. mov d0,(sp)
  225. #if defined(CONFIG_ERRATUM_NEED_TO_RELOAD_MMUCTR)
  226. mov (MMUCTR),d0
  227. mov d0,(MMUCTR)
  228. #endif
  229. mov (BCBERR),d0 # what
  230. btst BCBERR_BEMR_DMA,d0 # see if it was an external bus error
  231. beq __common_exception_aux # it wasn't
  232. SAVE_ALL
  233. mov (BCBEAR),d1 # destination of erroneous access
  234. mov (REG_ORIG_D0,fp),d2
  235. mov d2,(REG_D0,fp)
  236. mov -1,d2
  237. mov d2,(REG_ORIG_D0,fp)
  238. add -4,sp
  239. mov fp,(12,sp) # frame pointer
  240. call io_bus_error[],0
  241. jmp restore_all
  242. ###############################################################################
  243. #
  244. # NMI exception entry points
  245. #
  246. # This is used by ordinary interrupt channels that have the GxICR_NMI bit set
  247. # in addition to the main NMI and Watchdog channels. SMP NMI IPIs use this
  248. # facility.
  249. #
  250. ###############################################################################
  251. ENTRY(nmi_handler)
  252. add -4,sp
  253. mov d0,(sp)
  254. mov (TBR),d0
  255. #ifdef CONFIG_SMP
  256. add -4,sp
  257. mov d0,(sp) # save d0(TBR)
  258. movhu (NMIAGR),d0
  259. and NMIAGR_GN,d0
  260. lsr 0x2,d0
  261. cmp CALL_FUNCTION_NMI_IPI,d0
  262. bne nmi_not_smp_callfunc # if not call function, jump
  263. # function call nmi ipi
  264. add 4,sp # no need to store TBR
  265. mov GxICR_DETECT,d0 # clear NMI request
  266. movbu d0,(GxICR(CALL_FUNCTION_NMI_IPI))
  267. movhu (GxICR(CALL_FUNCTION_NMI_IPI)),d0
  268. and ~EPSW_NMID,epsw # enable NMI
  269. mov (sp),d0 # restore d0
  270. SAVE_ALL
  271. call smp_nmi_call_function_interrupt[],0
  272. RESTORE_ALL
  273. nmi_not_smp_callfunc:
  274. #ifdef CONFIG_KERNEL_DEBUGGER
  275. cmp DEBUGGER_NMI_IPI,d0
  276. bne nmi_not_debugger # if not kernel debugger NMI IPI, jump
  277. # kernel debugger NMI IPI
  278. add 4,sp # no need to store TBR
  279. mov GxICR_DETECT,d0 # clear NMI
  280. movbu d0,(GxICR(DEBUGGER_NMI_IPI))
  281. movhu (GxICR(DEBUGGER_NMI_IPI)),d0
  282. and ~EPSW_NMID,epsw # enable NMI
  283. mov (sp),d0
  284. SAVE_ALL
  285. mov fp,d0 # arg 0: stacked register file
  286. mov a2,d1 # arg 1: exception number
  287. call debugger_nmi_interrupt[],0
  288. RESTORE_ALL
  289. nmi_not_debugger:
  290. #endif /* CONFIG_KERNEL_DEBUGGER */
  291. mov (sp),d0 # restore TBR to d0
  292. add 4,sp
  293. #endif /* CONFIG_SMP */
  294. bra __common_exception_nonmi
  295. ###############################################################################
  296. #
  297. # General exception entry point
  298. #
  299. ###############################################################################
  300. ENTRY(__common_exception)
  301. add -4,sp
  302. mov d0,(sp)
  303. #if defined(CONFIG_ERRATUM_NEED_TO_RELOAD_MMUCTR)
  304. mov (MMUCTR),d0
  305. mov d0,(MMUCTR)
  306. #endif
  307. __common_exception_aux:
  308. mov (TBR),d0
  309. and ~EPSW_NMID,epsw # turn NMIs back on if not NMI
  310. or EPSW_IE,epsw
  311. __common_exception_nonmi:
  312. and 0x0000FFFF,d0 # turn the exception code into a vector
  313. # table index
  314. btst 0x00000007,d0
  315. bne 1f
  316. cmp 0x00000400,d0
  317. bge 1f
  318. SAVE_ALL # build the stack frame
  319. mov (REG_D0,fp),a2 # get the exception number
  320. mov (REG_ORIG_D0,fp),d0
  321. mov d0,(REG_D0,fp)
  322. mov -1,d0
  323. mov d0,(REG_ORIG_D0,fp)
  324. #ifdef CONFIG_GDBSTUB
  325. #ifdef CONFIG_SMP
  326. call gdbstub_busy_check[],0
  327. and d0,d0 # check return value
  328. beq 2f
  329. #else /* CONFIG_SMP */
  330. btst 0x01,(gdbstub_busy)
  331. beq 2f
  332. #endif /* CONFIG_SMP */
  333. and ~EPSW_IE,epsw
  334. mov fp,d0
  335. mov a2,d1
  336. call gdbstub_exception[],0 # gdbstub itself caused an exception
  337. bra restore_all
  338. 2:
  339. #endif /* CONFIG_GDBSTUB */
  340. mov fp,d0 # arg 0: stacked register file
  341. mov a2,d1 # arg 1: exception number
  342. lsr 1,a2
  343. mov (exception_table,a2),a2
  344. calls (a2)
  345. jmp ret_from_exception
  346. 1: pi # BUG() equivalent
  347. ###############################################################################
  348. #
  349. # Exception handler functions table
  350. #
  351. ###############################################################################
  352. .data
  353. ENTRY(exception_table)
  354. .rept 0x400>>1
  355. .long uninitialised_exception
  356. .endr
  357. .previous
  358. ###############################################################################
  359. #
  360. # Change an entry in the exception table
  361. # - D0 exception code, D1 handler
  362. #
  363. ###############################################################################
  364. ENTRY(set_excp_vector)
  365. lsr 1,d0
  366. add exception_table,d0
  367. mov d1,(d0)
  368. mov 4,d1
  369. ret [],0
  370. ###############################################################################
  371. #
  372. # System call table
  373. #
  374. ###############################################################################
  375. .data
  376. ENTRY(sys_call_table)
  377. .long sys_restart_syscall /* 0 */
  378. .long sys_exit
  379. .long sys_fork
  380. .long sys_read
  381. .long sys_write
  382. .long sys_open /* 5 */
  383. .long sys_close
  384. .long sys_waitpid
  385. .long sys_creat
  386. .long sys_link
  387. .long sys_unlink /* 10 */
  388. .long sys_execve
  389. .long sys_chdir
  390. .long sys_time
  391. .long sys_mknod
  392. .long sys_chmod /* 15 */
  393. .long sys_lchown16
  394. .long sys_ni_syscall /* old break syscall holder */
  395. .long sys_stat
  396. .long sys_lseek
  397. .long sys_getpid /* 20 */
  398. .long sys_mount
  399. .long sys_oldumount
  400. .long sys_setuid16
  401. .long sys_getuid16
  402. .long sys_stime /* 25 */
  403. .long sys_ptrace
  404. .long sys_alarm
  405. .long sys_fstat
  406. .long sys_pause
  407. .long sys_utime /* 30 */
  408. .long sys_ni_syscall /* old stty syscall holder */
  409. .long sys_ni_syscall /* old gtty syscall holder */
  410. .long sys_access
  411. .long sys_nice
  412. .long sys_ni_syscall /* 35 - old ftime syscall holder */
  413. .long sys_sync
  414. .long sys_kill
  415. .long sys_rename
  416. .long sys_mkdir
  417. .long sys_rmdir /* 40 */
  418. .long sys_dup
  419. .long sys_pipe
  420. .long sys_times
  421. .long sys_ni_syscall /* old prof syscall holder */
  422. .long sys_brk /* 45 */
  423. .long sys_setgid16
  424. .long sys_getgid16
  425. .long sys_signal
  426. .long sys_geteuid16
  427. .long sys_getegid16 /* 50 */
  428. .long sys_acct
  429. .long sys_umount /* recycled never used phys() */
  430. .long sys_ni_syscall /* old lock syscall holder */
  431. .long sys_ioctl
  432. .long sys_fcntl /* 55 */
  433. .long sys_ni_syscall /* old mpx syscall holder */
  434. .long sys_setpgid
  435. .long sys_ni_syscall /* old ulimit syscall holder */
  436. .long sys_ni_syscall /* old sys_olduname */
  437. .long sys_umask /* 60 */
  438. .long sys_chroot
  439. .long sys_ustat
  440. .long sys_dup2
  441. .long sys_getppid
  442. .long sys_getpgrp /* 65 */
  443. .long sys_setsid
  444. .long sys_sigaction
  445. .long sys_sgetmask
  446. .long sys_ssetmask
  447. .long sys_setreuid16 /* 70 */
  448. .long sys_setregid16
  449. .long sys_sigsuspend
  450. .long sys_sigpending
  451. .long sys_sethostname
  452. .long sys_setrlimit /* 75 */
  453. .long sys_old_getrlimit
  454. .long sys_getrusage
  455. .long sys_gettimeofday
  456. .long sys_settimeofday
  457. .long sys_getgroups16 /* 80 */
  458. .long sys_setgroups16
  459. .long sys_old_select
  460. .long sys_symlink
  461. .long sys_lstat
  462. .long sys_readlink /* 85 */
  463. .long sys_uselib
  464. .long sys_swapon
  465. .long sys_reboot
  466. .long sys_old_readdir
  467. .long old_mmap /* 90 */
  468. .long sys_munmap
  469. .long sys_truncate
  470. .long sys_ftruncate
  471. .long sys_fchmod
  472. .long sys_fchown16 /* 95 */
  473. .long sys_getpriority
  474. .long sys_setpriority
  475. .long sys_ni_syscall /* old profil syscall holder */
  476. .long sys_statfs
  477. .long sys_fstatfs /* 100 */
  478. .long sys_ni_syscall /* ioperm */
  479. .long sys_socketcall
  480. .long sys_syslog
  481. .long sys_setitimer
  482. .long sys_getitimer /* 105 */
  483. .long sys_newstat
  484. .long sys_newlstat
  485. .long sys_newfstat
  486. .long sys_ni_syscall /* old sys_uname */
  487. .long sys_ni_syscall /* 110 - iopl */
  488. .long sys_vhangup
  489. .long sys_ni_syscall /* old "idle" system call */
  490. .long sys_ni_syscall /* vm86old */
  491. .long sys_wait4
  492. .long sys_swapoff /* 115 */
  493. .long sys_sysinfo
  494. .long sys_ipc
  495. .long sys_fsync
  496. .long sys_sigreturn
  497. .long sys_clone /* 120 */
  498. .long sys_setdomainname
  499. .long sys_newuname
  500. .long sys_ni_syscall /* modify_ldt */
  501. .long sys_adjtimex
  502. .long sys_mprotect /* 125 */
  503. .long sys_sigprocmask
  504. .long sys_ni_syscall /* old "create_module" */
  505. .long sys_init_module
  506. .long sys_delete_module
  507. .long sys_ni_syscall /* 130: old "get_kernel_syms" */
  508. .long sys_quotactl
  509. .long sys_getpgid
  510. .long sys_fchdir
  511. .long sys_bdflush
  512. .long sys_sysfs /* 135 */
  513. .long sys_personality
  514. .long sys_ni_syscall /* reserved for afs_syscall */
  515. .long sys_setfsuid16
  516. .long sys_setfsgid16
  517. .long sys_llseek /* 140 */
  518. .long sys_getdents
  519. .long sys_select
  520. .long sys_flock
  521. .long sys_msync
  522. .long sys_readv /* 145 */
  523. .long sys_writev
  524. .long sys_getsid
  525. .long sys_fdatasync
  526. .long sys_sysctl
  527. .long sys_mlock /* 150 */
  528. .long sys_munlock
  529. .long sys_mlockall
  530. .long sys_munlockall
  531. .long sys_sched_setparam
  532. .long sys_sched_getparam /* 155 */
  533. .long sys_sched_setscheduler
  534. .long sys_sched_getscheduler
  535. .long sys_sched_yield
  536. .long sys_sched_get_priority_max
  537. .long sys_sched_get_priority_min /* 160 */
  538. .long sys_sched_rr_get_interval
  539. .long sys_nanosleep
  540. .long sys_mremap
  541. .long sys_setresuid16
  542. .long sys_getresuid16 /* 165 */
  543. .long sys_ni_syscall /* vm86 */
  544. .long sys_ni_syscall /* Old sys_query_module */
  545. .long sys_poll
  546. .long sys_ni_syscall /* was nfsservctl */
  547. .long sys_setresgid16 /* 170 */
  548. .long sys_getresgid16
  549. .long sys_prctl
  550. .long sys_rt_sigreturn
  551. .long sys_rt_sigaction
  552. .long sys_rt_sigprocmask /* 175 */
  553. .long sys_rt_sigpending
  554. .long sys_rt_sigtimedwait
  555. .long sys_rt_sigqueueinfo
  556. .long sys_rt_sigsuspend
  557. .long sys_pread64 /* 180 */
  558. .long sys_pwrite64
  559. .long sys_chown16
  560. .long sys_getcwd
  561. .long sys_capget
  562. .long sys_capset /* 185 */
  563. .long sys_sigaltstack
  564. .long sys_sendfile
  565. .long sys_ni_syscall /* reserved for streams1 */
  566. .long sys_ni_syscall /* reserved for streams2 */
  567. .long sys_vfork /* 190 */
  568. .long sys_getrlimit
  569. .long sys_mmap_pgoff
  570. .long sys_truncate64
  571. .long sys_ftruncate64
  572. .long sys_stat64 /* 195 */
  573. .long sys_lstat64
  574. .long sys_fstat64
  575. .long sys_lchown
  576. .long sys_getuid
  577. .long sys_getgid /* 200 */
  578. .long sys_geteuid
  579. .long sys_getegid
  580. .long sys_setreuid
  581. .long sys_setregid
  582. .long sys_getgroups /* 205 */
  583. .long sys_setgroups
  584. .long sys_fchown
  585. .long sys_setresuid
  586. .long sys_getresuid
  587. .long sys_setresgid /* 210 */
  588. .long sys_getresgid
  589. .long sys_chown
  590. .long sys_setuid
  591. .long sys_setgid
  592. .long sys_setfsuid /* 215 */
  593. .long sys_setfsgid
  594. .long sys_pivot_root
  595. .long sys_mincore
  596. .long sys_madvise
  597. .long sys_getdents64 /* 220 */
  598. .long sys_fcntl64
  599. .long sys_ni_syscall /* reserved for TUX */
  600. .long sys_ni_syscall
  601. .long sys_gettid
  602. .long sys_readahead /* 225 */
  603. .long sys_setxattr
  604. .long sys_lsetxattr
  605. .long sys_fsetxattr
  606. .long sys_getxattr
  607. .long sys_lgetxattr /* 230 */
  608. .long sys_fgetxattr
  609. .long sys_listxattr
  610. .long sys_llistxattr
  611. .long sys_flistxattr
  612. .long sys_removexattr /* 235 */
  613. .long sys_lremovexattr
  614. .long sys_fremovexattr
  615. .long sys_tkill
  616. .long sys_sendfile64
  617. .long sys_futex /* 240 */
  618. .long sys_sched_setaffinity
  619. .long sys_sched_getaffinity
  620. .long sys_ni_syscall /* sys_set_thread_area */
  621. .long sys_ni_syscall /* sys_get_thread_area */
  622. .long sys_io_setup /* 245 */
  623. .long sys_io_destroy
  624. .long sys_io_getevents
  625. .long sys_io_submit
  626. .long sys_io_cancel
  627. .long sys_fadvise64 /* 250 */
  628. .long sys_ni_syscall
  629. .long sys_exit_group
  630. .long sys_lookup_dcookie
  631. .long sys_epoll_create
  632. .long sys_epoll_ctl /* 255 */
  633. .long sys_epoll_wait
  634. .long sys_remap_file_pages
  635. .long sys_set_tid_address
  636. .long sys_timer_create
  637. .long sys_timer_settime /* 260 */
  638. .long sys_timer_gettime
  639. .long sys_timer_getoverrun
  640. .long sys_timer_delete
  641. .long sys_clock_settime
  642. .long sys_clock_gettime /* 265 */
  643. .long sys_clock_getres
  644. .long sys_clock_nanosleep
  645. .long sys_statfs64
  646. .long sys_fstatfs64
  647. .long sys_tgkill /* 270 */
  648. .long sys_utimes
  649. .long sys_fadvise64_64
  650. .long sys_ni_syscall /* sys_vserver */
  651. .long sys_mbind
  652. .long sys_get_mempolicy /* 275 */
  653. .long sys_set_mempolicy
  654. .long sys_mq_open
  655. .long sys_mq_unlink
  656. .long sys_mq_timedsend
  657. .long sys_mq_timedreceive /* 280 */
  658. .long sys_mq_notify
  659. .long sys_mq_getsetattr
  660. .long sys_kexec_load
  661. .long sys_waitid
  662. .long sys_ni_syscall /* 285 */ /* available */
  663. .long sys_add_key
  664. .long sys_request_key
  665. .long sys_keyctl
  666. .long sys_cacheflush
  667. .long sys_ioprio_set /* 290 */
  668. .long sys_ioprio_get
  669. .long sys_inotify_init
  670. .long sys_inotify_add_watch
  671. .long sys_inotify_rm_watch
  672. .long sys_migrate_pages /* 295 */
  673. .long sys_openat
  674. .long sys_mkdirat
  675. .long sys_mknodat
  676. .long sys_fchownat
  677. .long sys_futimesat /* 300 */
  678. .long sys_fstatat64
  679. .long sys_unlinkat
  680. .long sys_renameat
  681. .long sys_linkat
  682. .long sys_symlinkat /* 305 */
  683. .long sys_readlinkat
  684. .long sys_fchmodat
  685. .long sys_faccessat
  686. .long sys_pselect6
  687. .long sys_ppoll /* 310 */
  688. .long sys_unshare
  689. .long sys_set_robust_list
  690. .long sys_get_robust_list
  691. .long sys_splice
  692. .long sys_sync_file_range /* 315 */
  693. .long sys_tee
  694. .long sys_vmsplice
  695. .long sys_move_pages
  696. .long sys_getcpu
  697. .long sys_epoll_pwait /* 320 */
  698. .long sys_utimensat
  699. .long sys_signalfd
  700. .long sys_timerfd_create
  701. .long sys_eventfd
  702. .long sys_fallocate /* 325 */
  703. .long sys_timerfd_settime
  704. .long sys_timerfd_gettime
  705. .long sys_signalfd4
  706. .long sys_eventfd2
  707. .long sys_epoll_create1 /* 330 */
  708. .long sys_dup3
  709. .long sys_pipe2
  710. .long sys_inotify_init1
  711. .long sys_preadv
  712. .long sys_pwritev /* 335 */
  713. .long sys_rt_tgsigqueueinfo
  714. .long sys_perf_event_open
  715. .long sys_recvmmsg
  716. .long sys_setns
  717. nr_syscalls=(.-sys_call_table)/4