blob: 4f76959397fa88a869dff276ba5ab0ccc9494071 [file] [log] [blame]
Arnd Bergmanne64a1612009-05-13 22:56:28 +00001#if !defined(_ASM_GENERIC_UNISTD_H) || defined(__SYSCALL)
2#define _ASM_GENERIC_UNISTD_H
3
4#include <asm/bitsperlong.h>
5
6/*
7 * This file contains the system call numbers, based on the
8 * layout of the x86-64 architecture, which embeds the
9 * pointer to the syscall in the table.
10 *
11 * As a basic principle, no duplication of functionality
12 * should be added, e.g. we don't use lseek when llseek
13 * is present. New architectures should use this file
14 * and implement the less feature-full calls in user space.
15 */
16
17#ifndef __SYSCALL
18#define __SYSCALL(x, y)
19#endif
20
Chris Metcalf5360bd72010-05-28 23:01:00 -040021#if __BITS_PER_LONG == 32 || defined(__SYSCALL_COMPAT)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000022#define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _32)
23#else
24#define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _64)
25#endif
26
Chris Metcalfbe84cb42011-05-09 13:12:30 -040027#ifdef __SYSCALL_COMPAT
28#define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _comp)
29#define __SC_COMP_3264(_nr, _32, _64, _comp) __SYSCALL(_nr, _comp)
30#else
31#define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _sys)
32#define __SC_COMP_3264(_nr, _32, _64, _comp) __SC_3264(_nr, _32, _64)
33#endif
34
Arnd Bergmanne64a1612009-05-13 22:56:28 +000035#define __NR_io_setup 0
Chris Metcalfbe84cb42011-05-09 13:12:30 -040036__SC_COMP(__NR_io_setup, sys_io_setup, compat_sys_io_setup)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000037#define __NR_io_destroy 1
38__SYSCALL(__NR_io_destroy, sys_io_destroy)
39#define __NR_io_submit 2
Chris Metcalfbe84cb42011-05-09 13:12:30 -040040__SC_COMP(__NR_io_submit, sys_io_submit, compat_sys_io_submit)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000041#define __NR_io_cancel 3
42__SYSCALL(__NR_io_cancel, sys_io_cancel)
43#define __NR_io_getevents 4
Chris Metcalfbe84cb42011-05-09 13:12:30 -040044__SC_COMP(__NR_io_getevents, sys_io_getevents, compat_sys_io_getevents)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000045
46/* fs/xattr.c */
47#define __NR_setxattr 5
48__SYSCALL(__NR_setxattr, sys_setxattr)
49#define __NR_lsetxattr 6
50__SYSCALL(__NR_lsetxattr, sys_lsetxattr)
51#define __NR_fsetxattr 7
52__SYSCALL(__NR_fsetxattr, sys_fsetxattr)
53#define __NR_getxattr 8
54__SYSCALL(__NR_getxattr, sys_getxattr)
55#define __NR_lgetxattr 9
56__SYSCALL(__NR_lgetxattr, sys_lgetxattr)
57#define __NR_fgetxattr 10
58__SYSCALL(__NR_fgetxattr, sys_fgetxattr)
59#define __NR_listxattr 11
60__SYSCALL(__NR_listxattr, sys_listxattr)
61#define __NR_llistxattr 12
62__SYSCALL(__NR_llistxattr, sys_llistxattr)
63#define __NR_flistxattr 13
64__SYSCALL(__NR_flistxattr, sys_flistxattr)
65#define __NR_removexattr 14
66__SYSCALL(__NR_removexattr, sys_removexattr)
67#define __NR_lremovexattr 15
68__SYSCALL(__NR_lremovexattr, sys_lremovexattr)
69#define __NR_fremovexattr 16
70__SYSCALL(__NR_fremovexattr, sys_fremovexattr)
71
72/* fs/dcache.c */
73#define __NR_getcwd 17
74__SYSCALL(__NR_getcwd, sys_getcwd)
75
76/* fs/cookies.c */
77#define __NR_lookup_dcookie 18
Chris Metcalfbe84cb42011-05-09 13:12:30 -040078__SC_COMP(__NR_lookup_dcookie, sys_lookup_dcookie, compat_sys_lookup_dcookie)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000079
80/* fs/eventfd.c */
81#define __NR_eventfd2 19
82__SYSCALL(__NR_eventfd2, sys_eventfd2)
83
84/* fs/eventpoll.c */
85#define __NR_epoll_create1 20
86__SYSCALL(__NR_epoll_create1, sys_epoll_create1)
87#define __NR_epoll_ctl 21
88__SYSCALL(__NR_epoll_ctl, sys_epoll_ctl)
89#define __NR_epoll_pwait 22
Chris Metcalfbe84cb42011-05-09 13:12:30 -040090__SC_COMP(__NR_epoll_pwait, sys_epoll_pwait, compat_sys_epoll_pwait)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000091
92/* fs/fcntl.c */
93#define __NR_dup 23
94__SYSCALL(__NR_dup, sys_dup)
95#define __NR_dup3 24
96__SYSCALL(__NR_dup3, sys_dup3)
97#define __NR3264_fcntl 25
Chris Metcalfbe84cb42011-05-09 13:12:30 -040098__SC_COMP_3264(__NR3264_fcntl, sys_fcntl64, sys_fcntl, compat_sys_fcntl64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +000099
100/* fs/inotify_user.c */
101#define __NR_inotify_init1 26
102__SYSCALL(__NR_inotify_init1, sys_inotify_init1)
103#define __NR_inotify_add_watch 27
104__SYSCALL(__NR_inotify_add_watch, sys_inotify_add_watch)
105#define __NR_inotify_rm_watch 28
106__SYSCALL(__NR_inotify_rm_watch, sys_inotify_rm_watch)
107
108/* fs/ioctl.c */
109#define __NR_ioctl 29
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400110__SC_COMP(__NR_ioctl, sys_ioctl, compat_sys_ioctl)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000111
112/* fs/ioprio.c */
113#define __NR_ioprio_set 30
114__SYSCALL(__NR_ioprio_set, sys_ioprio_set)
115#define __NR_ioprio_get 31
116__SYSCALL(__NR_ioprio_get, sys_ioprio_get)
117
118/* fs/locks.c */
119#define __NR_flock 32
120__SYSCALL(__NR_flock, sys_flock)
121
122/* fs/namei.c */
123#define __NR_mknodat 33
124__SYSCALL(__NR_mknodat, sys_mknodat)
125#define __NR_mkdirat 34
126__SYSCALL(__NR_mkdirat, sys_mkdirat)
127#define __NR_unlinkat 35
128__SYSCALL(__NR_unlinkat, sys_unlinkat)
129#define __NR_symlinkat 36
130__SYSCALL(__NR_symlinkat, sys_symlinkat)
131#define __NR_linkat 37
132__SYSCALL(__NR_linkat, sys_linkat)
133#define __NR_renameat 38
134__SYSCALL(__NR_renameat, sys_renameat)
135
136/* fs/namespace.c */
137#define __NR_umount2 39
138__SYSCALL(__NR_umount2, sys_umount)
139#define __NR_mount 40
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400140__SC_COMP(__NR_mount, sys_mount, compat_sys_mount)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000141#define __NR_pivot_root 41
142__SYSCALL(__NR_pivot_root, sys_pivot_root)
143
144/* fs/nfsctl.c */
145#define __NR_nfsservctl 42
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400146__SC_COMP(__NR_nfsservctl, sys_nfsservctl, compat_sys_nfsservctl)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000147
148/* fs/open.c */
149#define __NR3264_statfs 43
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400150__SC_COMP_3264(__NR3264_statfs, sys_statfs64, sys_statfs, \
151 compat_sys_statfs64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000152#define __NR3264_fstatfs 44
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400153__SC_COMP_3264(__NR3264_fstatfs, sys_fstatfs64, sys_fstatfs, \
154 compat_sys_fstatfs64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000155#define __NR3264_truncate 45
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400156__SC_COMP_3264(__NR3264_truncate, sys_truncate64, sys_truncate, \
157 compat_sys_truncate64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000158#define __NR3264_ftruncate 46
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400159__SC_COMP_3264(__NR3264_ftruncate, sys_ftruncate64, sys_ftruncate, \
160 compat_sys_ftruncate64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000161
162#define __NR_fallocate 47
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400163__SC_COMP(__NR_fallocate, sys_fallocate, compat_sys_fallocate)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000164#define __NR_faccessat 48
165__SYSCALL(__NR_faccessat, sys_faccessat)
166#define __NR_chdir 49
167__SYSCALL(__NR_chdir, sys_chdir)
168#define __NR_fchdir 50
169__SYSCALL(__NR_fchdir, sys_fchdir)
170#define __NR_chroot 51
171__SYSCALL(__NR_chroot, sys_chroot)
172#define __NR_fchmod 52
173__SYSCALL(__NR_fchmod, sys_fchmod)
174#define __NR_fchmodat 53
175__SYSCALL(__NR_fchmodat, sys_fchmodat)
176#define __NR_fchownat 54
177__SYSCALL(__NR_fchownat, sys_fchownat)
178#define __NR_fchown 55
179__SYSCALL(__NR_fchown, sys_fchown)
180#define __NR_openat 56
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400181__SC_COMP(__NR_openat, sys_openat, compat_sys_openat)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000182#define __NR_close 57
183__SYSCALL(__NR_close, sys_close)
184#define __NR_vhangup 58
185__SYSCALL(__NR_vhangup, sys_vhangup)
186
187/* fs/pipe.c */
188#define __NR_pipe2 59
189__SYSCALL(__NR_pipe2, sys_pipe2)
190
191/* fs/quota.c */
192#define __NR_quotactl 60
193__SYSCALL(__NR_quotactl, sys_quotactl)
194
195/* fs/readdir.c */
196#define __NR_getdents64 61
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400197__SC_COMP(__NR_getdents64, sys_getdents64, compat_sys_getdents64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000198
199/* fs/read_write.c */
200#define __NR3264_lseek 62
201__SC_3264(__NR3264_lseek, sys_llseek, sys_lseek)
202#define __NR_read 63
203__SYSCALL(__NR_read, sys_read)
204#define __NR_write 64
205__SYSCALL(__NR_write, sys_write)
206#define __NR_readv 65
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400207__SC_COMP(__NR_readv, sys_readv, compat_sys_readv)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000208#define __NR_writev 66
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400209__SC_COMP(__NR_writev, sys_writev, compat_sys_writev)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000210#define __NR_pread64 67
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400211__SC_COMP(__NR_pread64, sys_pread64, compat_sys_pread64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000212#define __NR_pwrite64 68
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400213__SC_COMP(__NR_pwrite64, sys_pwrite64, compat_sys_pwrite64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000214#define __NR_preadv 69
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400215__SC_COMP(__NR_preadv, sys_preadv, compat_sys_preadv)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000216#define __NR_pwritev 70
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400217__SC_COMP(__NR_pwritev, sys_pwritev, compat_sys_pwritev)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000218
219/* fs/sendfile.c */
220#define __NR3264_sendfile 71
221__SC_3264(__NR3264_sendfile, sys_sendfile64, sys_sendfile)
222
223/* fs/select.c */
224#define __NR_pselect6 72
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400225__SC_COMP(__NR_pselect6, sys_pselect6, compat_sys_pselect6)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000226#define __NR_ppoll 73
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400227__SC_COMP(__NR_ppoll, sys_ppoll, compat_sys_ppoll)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000228
229/* fs/signalfd.c */
230#define __NR_signalfd4 74
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400231__SC_COMP(__NR_signalfd4, sys_signalfd4, compat_sys_signalfd4)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000232
233/* fs/splice.c */
234#define __NR_vmsplice 75
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400235__SC_COMP(__NR_vmsplice, sys_vmsplice, compat_sys_vmsplice)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000236#define __NR_splice 76
237__SYSCALL(__NR_splice, sys_splice)
238#define __NR_tee 77
239__SYSCALL(__NR_tee, sys_tee)
240
241/* fs/stat.c */
242#define __NR_readlinkat 78
243__SYSCALL(__NR_readlinkat, sys_readlinkat)
244#define __NR3264_fstatat 79
245__SC_3264(__NR3264_fstatat, sys_fstatat64, sys_newfstatat)
246#define __NR3264_fstat 80
247__SC_3264(__NR3264_fstat, sys_fstat64, sys_newfstat)
248
249/* fs/sync.c */
250#define __NR_sync 81
251__SYSCALL(__NR_sync, sys_sync)
252#define __NR_fsync 82
253__SYSCALL(__NR_fsync, sys_fsync)
254#define __NR_fdatasync 83
255__SYSCALL(__NR_fdatasync, sys_fdatasync)
Chris Metcalf5360bd72010-05-28 23:01:00 -0400256#ifdef __ARCH_WANT_SYNC_FILE_RANGE2
257#define __NR_sync_file_range2 84
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400258__SC_COMP(__NR_sync_file_range2, sys_sync_file_range2, \
259 compat_sys_sync_file_range2)
Chris Metcalf5360bd72010-05-28 23:01:00 -0400260#else
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000261#define __NR_sync_file_range 84
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400262__SC_COMP(__NR_sync_file_range, sys_sync_file_range, \
263 compat_sys_sync_file_range)
Chris Metcalf5360bd72010-05-28 23:01:00 -0400264#endif
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000265
266/* fs/timerfd.c */
267#define __NR_timerfd_create 85
268__SYSCALL(__NR_timerfd_create, sys_timerfd_create)
269#define __NR_timerfd_settime 86
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400270__SC_COMP(__NR_timerfd_settime, sys_timerfd_settime, \
271 compat_sys_timerfd_settime)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000272#define __NR_timerfd_gettime 87
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400273__SC_COMP(__NR_timerfd_gettime, sys_timerfd_gettime, \
274 compat_sys_timerfd_gettime)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000275
276/* fs/utimes.c */
277#define __NR_utimensat 88
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400278__SC_COMP(__NR_utimensat, sys_utimensat, compat_sys_utimensat)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000279
280/* kernel/acct.c */
281#define __NR_acct 89
282__SYSCALL(__NR_acct, sys_acct)
283
284/* kernel/capability.c */
285#define __NR_capget 90
286__SYSCALL(__NR_capget, sys_capget)
287#define __NR_capset 91
288__SYSCALL(__NR_capset, sys_capset)
289
290/* kernel/exec_domain.c */
291#define __NR_personality 92
292__SYSCALL(__NR_personality, sys_personality)
293
294/* kernel/exit.c */
295#define __NR_exit 93
296__SYSCALL(__NR_exit, sys_exit)
297#define __NR_exit_group 94
298__SYSCALL(__NR_exit_group, sys_exit_group)
299#define __NR_waitid 95
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400300__SC_COMP(__NR_waitid, sys_waitid, compat_sys_waitid)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000301
302/* kernel/fork.c */
303#define __NR_set_tid_address 96
304__SYSCALL(__NR_set_tid_address, sys_set_tid_address)
305#define __NR_unshare 97
306__SYSCALL(__NR_unshare, sys_unshare)
307
308/* kernel/futex.c */
309#define __NR_futex 98
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400310__SC_COMP(__NR_futex, sys_futex, compat_sys_futex)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000311#define __NR_set_robust_list 99
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400312__SC_COMP(__NR_set_robust_list, sys_set_robust_list, \
313 compat_sys_set_robust_list)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000314#define __NR_get_robust_list 100
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400315__SC_COMP(__NR_get_robust_list, sys_get_robust_list, \
316 compat_sys_get_robust_list)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000317
318/* kernel/hrtimer.c */
319#define __NR_nanosleep 101
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400320__SC_COMP(__NR_nanosleep, sys_nanosleep, compat_sys_nanosleep)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000321
322/* kernel/itimer.c */
323#define __NR_getitimer 102
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400324__SC_COMP(__NR_getitimer, sys_getitimer, compat_sys_getitimer)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000325#define __NR_setitimer 103
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400326__SC_COMP(__NR_setitimer, sys_setitimer, compat_sys_setitimer)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000327
328/* kernel/kexec.c */
329#define __NR_kexec_load 104
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400330__SC_COMP(__NR_kexec_load, sys_kexec_load, compat_sys_kexec_load)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000331
332/* kernel/module.c */
333#define __NR_init_module 105
334__SYSCALL(__NR_init_module, sys_init_module)
335#define __NR_delete_module 106
336__SYSCALL(__NR_delete_module, sys_delete_module)
337
338/* kernel/posix-timers.c */
339#define __NR_timer_create 107
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400340__SC_COMP(__NR_timer_create, sys_timer_create, compat_sys_timer_create)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000341#define __NR_timer_gettime 108
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400342__SC_COMP(__NR_timer_gettime, sys_timer_gettime, compat_sys_timer_gettime)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000343#define __NR_timer_getoverrun 109
344__SYSCALL(__NR_timer_getoverrun, sys_timer_getoverrun)
345#define __NR_timer_settime 110
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400346__SC_COMP(__NR_timer_settime, sys_timer_settime, compat_sys_timer_settime)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000347#define __NR_timer_delete 111
348__SYSCALL(__NR_timer_delete, sys_timer_delete)
349#define __NR_clock_settime 112
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400350__SC_COMP(__NR_clock_settime, sys_clock_settime, compat_sys_clock_settime)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000351#define __NR_clock_gettime 113
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400352__SC_COMP(__NR_clock_gettime, sys_clock_gettime, compat_sys_clock_gettime)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000353#define __NR_clock_getres 114
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400354__SC_COMP(__NR_clock_getres, sys_clock_getres, compat_sys_clock_getres)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000355#define __NR_clock_nanosleep 115
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400356__SC_COMP(__NR_clock_nanosleep, sys_clock_nanosleep, \
357 compat_sys_clock_nanosleep)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000358
359/* kernel/printk.c */
360#define __NR_syslog 116
361__SYSCALL(__NR_syslog, sys_syslog)
362
363/* kernel/ptrace.c */
364#define __NR_ptrace 117
365__SYSCALL(__NR_ptrace, sys_ptrace)
366
367/* kernel/sched.c */
368#define __NR_sched_setparam 118
369__SYSCALL(__NR_sched_setparam, sys_sched_setparam)
370#define __NR_sched_setscheduler 119
371__SYSCALL(__NR_sched_setscheduler, sys_sched_setscheduler)
372#define __NR_sched_getscheduler 120
373__SYSCALL(__NR_sched_getscheduler, sys_sched_getscheduler)
374#define __NR_sched_getparam 121
375__SYSCALL(__NR_sched_getparam, sys_sched_getparam)
376#define __NR_sched_setaffinity 122
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400377__SC_COMP(__NR_sched_setaffinity, sys_sched_setaffinity, \
378 compat_sys_sched_setaffinity)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000379#define __NR_sched_getaffinity 123
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400380__SC_COMP(__NR_sched_getaffinity, sys_sched_getaffinity, \
381 compat_sys_sched_getaffinity)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000382#define __NR_sched_yield 124
383__SYSCALL(__NR_sched_yield, sys_sched_yield)
384#define __NR_sched_get_priority_max 125
385__SYSCALL(__NR_sched_get_priority_max, sys_sched_get_priority_max)
386#define __NR_sched_get_priority_min 126
387__SYSCALL(__NR_sched_get_priority_min, sys_sched_get_priority_min)
388#define __NR_sched_rr_get_interval 127
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400389__SC_COMP(__NR_sched_rr_get_interval, sys_sched_rr_get_interval, \
390 compat_sys_sched_rr_get_interval)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000391
392/* kernel/signal.c */
393#define __NR_restart_syscall 128
394__SYSCALL(__NR_restart_syscall, sys_restart_syscall)
395#define __NR_kill 129
396__SYSCALL(__NR_kill, sys_kill)
397#define __NR_tkill 130
398__SYSCALL(__NR_tkill, sys_tkill)
399#define __NR_tgkill 131
400__SYSCALL(__NR_tgkill, sys_tgkill)
401#define __NR_sigaltstack 132
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400402__SC_COMP(__NR_sigaltstack, sys_sigaltstack, compat_sys_sigaltstack)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000403#define __NR_rt_sigsuspend 133
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400404__SC_COMP(__NR_rt_sigsuspend, sys_rt_sigsuspend, compat_sys_rt_sigsuspend)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000405#define __NR_rt_sigaction 134
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400406__SC_COMP(__NR_rt_sigaction, sys_rt_sigaction, compat_sys_rt_sigaction)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000407#define __NR_rt_sigprocmask 135
408__SYSCALL(__NR_rt_sigprocmask, sys_rt_sigprocmask)
409#define __NR_rt_sigpending 136
410__SYSCALL(__NR_rt_sigpending, sys_rt_sigpending)
411#define __NR_rt_sigtimedwait 137
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400412__SC_COMP(__NR_rt_sigtimedwait, sys_rt_sigtimedwait, \
413 compat_sys_rt_sigtimedwait)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000414#define __NR_rt_sigqueueinfo 138
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400415__SC_COMP(__NR_rt_sigqueueinfo, sys_rt_sigqueueinfo, \
416 compat_sys_rt_sigqueueinfo)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000417#define __NR_rt_sigreturn 139
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400418__SC_COMP(__NR_rt_sigreturn, sys_rt_sigreturn, compat_sys_rt_sigreturn)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000419
420/* kernel/sys.c */
421#define __NR_setpriority 140
422__SYSCALL(__NR_setpriority, sys_setpriority)
423#define __NR_getpriority 141
424__SYSCALL(__NR_getpriority, sys_getpriority)
425#define __NR_reboot 142
426__SYSCALL(__NR_reboot, sys_reboot)
427#define __NR_setregid 143
428__SYSCALL(__NR_setregid, sys_setregid)
429#define __NR_setgid 144
430__SYSCALL(__NR_setgid, sys_setgid)
431#define __NR_setreuid 145
432__SYSCALL(__NR_setreuid, sys_setreuid)
433#define __NR_setuid 146
434__SYSCALL(__NR_setuid, sys_setuid)
435#define __NR_setresuid 147
436__SYSCALL(__NR_setresuid, sys_setresuid)
437#define __NR_getresuid 148
438__SYSCALL(__NR_getresuid, sys_getresuid)
439#define __NR_setresgid 149
440__SYSCALL(__NR_setresgid, sys_setresgid)
441#define __NR_getresgid 150
442__SYSCALL(__NR_getresgid, sys_getresgid)
443#define __NR_setfsuid 151
444__SYSCALL(__NR_setfsuid, sys_setfsuid)
445#define __NR_setfsgid 152
446__SYSCALL(__NR_setfsgid, sys_setfsgid)
447#define __NR_times 153
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400448__SC_COMP(__NR_times, sys_times, compat_sys_times)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000449#define __NR_setpgid 154
450__SYSCALL(__NR_setpgid, sys_setpgid)
451#define __NR_getpgid 155
452__SYSCALL(__NR_getpgid, sys_getpgid)
453#define __NR_getsid 156
454__SYSCALL(__NR_getsid, sys_getsid)
455#define __NR_setsid 157
456__SYSCALL(__NR_setsid, sys_setsid)
457#define __NR_getgroups 158
458__SYSCALL(__NR_getgroups, sys_getgroups)
459#define __NR_setgroups 159
460__SYSCALL(__NR_setgroups, sys_setgroups)
461#define __NR_uname 160
462__SYSCALL(__NR_uname, sys_newuname)
463#define __NR_sethostname 161
464__SYSCALL(__NR_sethostname, sys_sethostname)
465#define __NR_setdomainname 162
466__SYSCALL(__NR_setdomainname, sys_setdomainname)
467#define __NR_getrlimit 163
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400468__SC_COMP(__NR_getrlimit, sys_getrlimit, compat_sys_getrlimit)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000469#define __NR_setrlimit 164
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400470__SC_COMP(__NR_setrlimit, sys_setrlimit, compat_sys_setrlimit)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000471#define __NR_getrusage 165
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400472__SC_COMP(__NR_getrusage, sys_getrusage, compat_sys_getrusage)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000473#define __NR_umask 166
474__SYSCALL(__NR_umask, sys_umask)
475#define __NR_prctl 167
476__SYSCALL(__NR_prctl, sys_prctl)
477#define __NR_getcpu 168
478__SYSCALL(__NR_getcpu, sys_getcpu)
479
480/* kernel/time.c */
481#define __NR_gettimeofday 169
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400482__SC_COMP(__NR_gettimeofday, sys_gettimeofday, compat_sys_gettimeofday)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000483#define __NR_settimeofday 170
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400484__SC_COMP(__NR_settimeofday, sys_settimeofday, compat_sys_settimeofday)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000485#define __NR_adjtimex 171
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400486__SC_COMP(__NR_adjtimex, sys_adjtimex, compat_sys_adjtimex)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000487
488/* kernel/timer.c */
489#define __NR_getpid 172
490__SYSCALL(__NR_getpid, sys_getpid)
491#define __NR_getppid 173
492__SYSCALL(__NR_getppid, sys_getppid)
493#define __NR_getuid 174
494__SYSCALL(__NR_getuid, sys_getuid)
495#define __NR_geteuid 175
496__SYSCALL(__NR_geteuid, sys_geteuid)
497#define __NR_getgid 176
498__SYSCALL(__NR_getgid, sys_getgid)
499#define __NR_getegid 177
500__SYSCALL(__NR_getegid, sys_getegid)
501#define __NR_gettid 178
502__SYSCALL(__NR_gettid, sys_gettid)
503#define __NR_sysinfo 179
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400504__SC_COMP(__NR_sysinfo, sys_sysinfo, compat_sys_sysinfo)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000505
506/* ipc/mqueue.c */
507#define __NR_mq_open 180
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400508__SC_COMP(__NR_mq_open, sys_mq_open, compat_sys_mq_open)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000509#define __NR_mq_unlink 181
510__SYSCALL(__NR_mq_unlink, sys_mq_unlink)
511#define __NR_mq_timedsend 182
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400512__SC_COMP(__NR_mq_timedsend, sys_mq_timedsend, compat_sys_mq_timedsend)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000513#define __NR_mq_timedreceive 183
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400514__SC_COMP(__NR_mq_timedreceive, sys_mq_timedreceive, \
515 compat_sys_mq_timedreceive)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000516#define __NR_mq_notify 184
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400517__SC_COMP(__NR_mq_notify, sys_mq_notify, compat_sys_mq_notify)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000518#define __NR_mq_getsetattr 185
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400519__SC_COMP(__NR_mq_getsetattr, sys_mq_getsetattr, compat_sys_mq_getsetattr)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000520
521/* ipc/msg.c */
522#define __NR_msgget 186
523__SYSCALL(__NR_msgget, sys_msgget)
524#define __NR_msgctl 187
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400525__SC_COMP(__NR_msgctl, sys_msgctl, compat_sys_msgctl)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000526#define __NR_msgrcv 188
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400527__SC_COMP(__NR_msgrcv, sys_msgrcv, compat_sys_msgrcv)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000528#define __NR_msgsnd 189
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400529__SC_COMP(__NR_msgsnd, sys_msgsnd, compat_sys_msgsnd)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000530
531/* ipc/sem.c */
532#define __NR_semget 190
533__SYSCALL(__NR_semget, sys_semget)
534#define __NR_semctl 191
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400535__SC_COMP(__NR_semctl, sys_semctl, compat_sys_semctl)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000536#define __NR_semtimedop 192
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400537__SC_COMP(__NR_semtimedop, sys_semtimedop, compat_sys_semtimedop)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000538#define __NR_semop 193
539__SYSCALL(__NR_semop, sys_semop)
540
541/* ipc/shm.c */
542#define __NR_shmget 194
543__SYSCALL(__NR_shmget, sys_shmget)
544#define __NR_shmctl 195
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400545__SC_COMP(__NR_shmctl, sys_shmctl, compat_sys_shmctl)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000546#define __NR_shmat 196
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400547__SC_COMP(__NR_shmat, sys_shmat, compat_sys_shmat)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000548#define __NR_shmdt 197
549__SYSCALL(__NR_shmdt, sys_shmdt)
550
551/* net/socket.c */
552#define __NR_socket 198
553__SYSCALL(__NR_socket, sys_socket)
554#define __NR_socketpair 199
555__SYSCALL(__NR_socketpair, sys_socketpair)
556#define __NR_bind 200
557__SYSCALL(__NR_bind, sys_bind)
558#define __NR_listen 201
559__SYSCALL(__NR_listen, sys_listen)
560#define __NR_accept 202
561__SYSCALL(__NR_accept, sys_accept)
562#define __NR_connect 203
563__SYSCALL(__NR_connect, sys_connect)
564#define __NR_getsockname 204
565__SYSCALL(__NR_getsockname, sys_getsockname)
566#define __NR_getpeername 205
567__SYSCALL(__NR_getpeername, sys_getpeername)
568#define __NR_sendto 206
569__SYSCALL(__NR_sendto, sys_sendto)
570#define __NR_recvfrom 207
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400571__SC_COMP(__NR_recvfrom, sys_recvfrom, compat_sys_recvfrom)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000572#define __NR_setsockopt 208
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400573__SC_COMP(__NR_setsockopt, sys_setsockopt, compat_sys_setsockopt)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000574#define __NR_getsockopt 209
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400575__SC_COMP(__NR_getsockopt, sys_getsockopt, compat_sys_getsockopt)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000576#define __NR_shutdown 210
577__SYSCALL(__NR_shutdown, sys_shutdown)
578#define __NR_sendmsg 211
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400579__SC_COMP(__NR_sendmsg, sys_sendmsg, compat_sys_sendmsg)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000580#define __NR_recvmsg 212
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400581__SC_COMP(__NR_recvmsg, sys_recvmsg, compat_sys_recvmsg)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000582
583/* mm/filemap.c */
584#define __NR_readahead 213
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400585__SC_COMP(__NR_readahead, sys_readahead, compat_sys_readahead)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000586
587/* mm/nommu.c, also with MMU */
588#define __NR_brk 214
589__SYSCALL(__NR_brk, sys_brk)
590#define __NR_munmap 215
591__SYSCALL(__NR_munmap, sys_munmap)
592#define __NR_mremap 216
593__SYSCALL(__NR_mremap, sys_mremap)
594
595/* security/keys/keyctl.c */
596#define __NR_add_key 217
597__SYSCALL(__NR_add_key, sys_add_key)
598#define __NR_request_key 218
599__SYSCALL(__NR_request_key, sys_request_key)
600#define __NR_keyctl 219
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400601__SC_COMP(__NR_keyctl, sys_keyctl, compat_sys_keyctl)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000602
603/* arch/example/kernel/sys_example.c */
604#define __NR_clone 220
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400605__SYSCALL(__NR_clone, sys_clone)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000606#define __NR_execve 221
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400607__SC_COMP(__NR_execve, sys_execve, compat_sys_execve)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000608
609#define __NR3264_mmap 222
610__SC_3264(__NR3264_mmap, sys_mmap2, sys_mmap)
611/* mm/fadvise.c */
612#define __NR3264_fadvise64 223
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400613__SC_COMP(__NR3264_fadvise64, sys_fadvise64_64, compat_sys_fadvise64_64)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000614
615/* mm/, CONFIG_MMU only */
616#ifndef __ARCH_NOMMU
617#define __NR_swapon 224
618__SYSCALL(__NR_swapon, sys_swapon)
619#define __NR_swapoff 225
620__SYSCALL(__NR_swapoff, sys_swapoff)
621#define __NR_mprotect 226
622__SYSCALL(__NR_mprotect, sys_mprotect)
623#define __NR_msync 227
624__SYSCALL(__NR_msync, sys_msync)
625#define __NR_mlock 228
626__SYSCALL(__NR_mlock, sys_mlock)
627#define __NR_munlock 229
628__SYSCALL(__NR_munlock, sys_munlock)
629#define __NR_mlockall 230
630__SYSCALL(__NR_mlockall, sys_mlockall)
631#define __NR_munlockall 231
632__SYSCALL(__NR_munlockall, sys_munlockall)
633#define __NR_mincore 232
634__SYSCALL(__NR_mincore, sys_mincore)
635#define __NR_madvise 233
636__SYSCALL(__NR_madvise, sys_madvise)
637#define __NR_remap_file_pages 234
638__SYSCALL(__NR_remap_file_pages, sys_remap_file_pages)
639#define __NR_mbind 235
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400640__SC_COMP(__NR_mbind, sys_mbind, compat_sys_mbind)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000641#define __NR_get_mempolicy 236
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400642__SC_COMP(__NR_get_mempolicy, sys_get_mempolicy, compat_sys_get_mempolicy)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000643#define __NR_set_mempolicy 237
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400644__SC_COMP(__NR_set_mempolicy, sys_set_mempolicy, compat_sys_set_mempolicy)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000645#define __NR_migrate_pages 238
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400646__SC_COMP(__NR_migrate_pages, sys_migrate_pages, compat_sys_migrate_pages)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000647#define __NR_move_pages 239
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400648__SC_COMP(__NR_move_pages, sys_move_pages, compat_sys_move_pages)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000649#endif
650
Arnd Bergmannfcec9bf2009-06-19 10:30:29 +0200651#define __NR_rt_tgsigqueueinfo 240
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400652__SC_COMP(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo, \
653 compat_sys_rt_tgsigqueueinfo)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200654#define __NR_perf_event_open 241
655__SYSCALL(__NR_perf_event_open, sys_perf_event_open)
Arnd Bergmann9ab87642009-12-10 22:10:31 +0100656#define __NR_accept4 242
657__SYSCALL(__NR_accept4, sys_accept4)
Arnd Bergmann3d770382009-12-10 22:15:20 +0100658#define __NR_recvmmsg 243
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400659__SC_COMP(__NR_recvmmsg, sys_recvmmsg, compat_sys_recvmmsg)
Arnd Bergmannfcec9bf2009-06-19 10:30:29 +0200660
Chris Metcalf5360bd72010-05-28 23:01:00 -0400661/*
662 * Architectures may provide up to 16 syscalls of their own
663 * starting with this value.
664 */
665#define __NR_arch_specific_syscall 244
666
Chris Metcalfb51cae22010-06-25 14:54:16 -0400667#define __NR_wait4 260
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400668__SC_COMP(__NR_wait4, sys_wait4, compat_sys_wait4)
Linus Torvaldsb34d8912010-08-10 12:07:51 -0700669#define __NR_prlimit64 261
Jiri Slabyf33ebbe2010-05-06 20:17:00 +0200670__SYSCALL(__NR_prlimit64, sys_prlimit64)
Chris Metcalffad9e932010-08-11 11:07:24 -0400671#define __NR_fanotify_init 262
672__SYSCALL(__NR_fanotify_init, sys_fanotify_init)
673#define __NR_fanotify_mark 263
674__SYSCALL(__NR_fanotify_mark, sys_fanotify_mark)
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400675#define __NR_name_to_handle_at 264
Aneesh Kumar K.Va51571c2011-01-29 18:43:38 +0530676__SYSCALL(__NR_name_to_handle_at, sys_name_to_handle_at)
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400677#define __NR_open_by_handle_at 265
678__SC_COMP(__NR_open_by_handle_at, sys_open_by_handle_at, \
679 compat_sys_open_by_handle_at)
Chris Metcalf339dc502011-03-19 11:47:53 -0400680#define __NR_clock_adjtime 266
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400681__SC_COMP(__NR_clock_adjtime, sys_clock_adjtime, compat_sys_clock_adjtime)
Andrew Mortonc7a1fcd2011-03-22 16:30:07 -0700682#define __NR_syncfs 267
Sage Weilb7ed78f2011-03-10 11:31:30 -0800683__SYSCALL(__NR_syncfs, sys_syncfs)
Eric W. Biederman7b21fdd2011-05-27 19:28:27 -0700684#define __NR_setns 268
685__SYSCALL(__NR_setns, sys_setns)
Chris Metcalfb36a9682011-06-02 14:21:45 -0400686#define __NR_sendmmsg 269
687__SC_COMP(__NR_sendmmsg, sys_sendmmsg, compat_sys_sendmmsg)
Chris Metcalfb51cae22010-06-25 14:54:16 -0400688
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000689#undef __NR_syscalls
Chris Metcalfb36a9682011-06-02 14:21:45 -0400690#define __NR_syscalls 270
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000691
692/*
693 * All syscalls below here should go away really,
694 * these are provided for both review and as a porting
695 * help for the C library version.
696*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200697 * Last chance: are any of these important enough to
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000698 * enable by default?
699 */
700#ifdef __ARCH_WANT_SYSCALL_NO_AT
701#define __NR_open 1024
702__SYSCALL(__NR_open, sys_open)
703#define __NR_link 1025
704__SYSCALL(__NR_link, sys_link)
705#define __NR_unlink 1026
706__SYSCALL(__NR_unlink, sys_unlink)
707#define __NR_mknod 1027
708__SYSCALL(__NR_mknod, sys_mknod)
709#define __NR_chmod 1028
710__SYSCALL(__NR_chmod, sys_chmod)
711#define __NR_chown 1029
712__SYSCALL(__NR_chown, sys_chown)
713#define __NR_mkdir 1030
714__SYSCALL(__NR_mkdir, sys_mkdir)
715#define __NR_rmdir 1031
716__SYSCALL(__NR_rmdir, sys_rmdir)
717#define __NR_lchown 1032
718__SYSCALL(__NR_lchown, sys_lchown)
719#define __NR_access 1033
720__SYSCALL(__NR_access, sys_access)
721#define __NR_rename 1034
722__SYSCALL(__NR_rename, sys_rename)
723#define __NR_readlink 1035
724__SYSCALL(__NR_readlink, sys_readlink)
725#define __NR_symlink 1036
726__SYSCALL(__NR_symlink, sys_symlink)
727#define __NR_utimes 1037
728__SYSCALL(__NR_utimes, sys_utimes)
729#define __NR3264_stat 1038
730__SC_3264(__NR3264_stat, sys_stat64, sys_newstat)
731#define __NR3264_lstat 1039
732__SC_3264(__NR3264_lstat, sys_lstat64, sys_newlstat)
733
734#undef __NR_syscalls
735#define __NR_syscalls (__NR3264_lstat+1)
736#endif /* __ARCH_WANT_SYSCALL_NO_AT */
737
738#ifdef __ARCH_WANT_SYSCALL_NO_FLAGS
739#define __NR_pipe 1040
740__SYSCALL(__NR_pipe, sys_pipe)
741#define __NR_dup2 1041
742__SYSCALL(__NR_dup2, sys_dup2)
743#define __NR_epoll_create 1042
744__SYSCALL(__NR_epoll_create, sys_epoll_create)
745#define __NR_inotify_init 1043
746__SYSCALL(__NR_inotify_init, sys_inotify_init)
747#define __NR_eventfd 1044
748__SYSCALL(__NR_eventfd, sys_eventfd)
749#define __NR_signalfd 1045
750__SYSCALL(__NR_signalfd, sys_signalfd)
751
752#undef __NR_syscalls
753#define __NR_syscalls (__NR_signalfd+1)
754#endif /* __ARCH_WANT_SYSCALL_NO_FLAGS */
755
Chris Metcalf5360bd72010-05-28 23:01:00 -0400756#if (__BITS_PER_LONG == 32 || defined(__SYSCALL_COMPAT)) && \
757 defined(__ARCH_WANT_SYSCALL_OFF_T)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000758#define __NR_sendfile 1046
759__SYSCALL(__NR_sendfile, sys_sendfile)
760#define __NR_ftruncate 1047
761__SYSCALL(__NR_ftruncate, sys_ftruncate)
762#define __NR_truncate 1048
763__SYSCALL(__NR_truncate, sys_truncate)
764#define __NR_stat 1049
765__SYSCALL(__NR_stat, sys_newstat)
766#define __NR_lstat 1050
767__SYSCALL(__NR_lstat, sys_newlstat)
768#define __NR_fstat 1051
769__SYSCALL(__NR_fstat, sys_newfstat)
770#define __NR_fcntl 1052
771__SYSCALL(__NR_fcntl, sys_fcntl)
772#define __NR_fadvise64 1053
773#define __ARCH_WANT_SYS_FADVISE64
774__SYSCALL(__NR_fadvise64, sys_fadvise64)
775#define __NR_newfstatat 1054
776#define __ARCH_WANT_SYS_NEWFSTATAT
777__SYSCALL(__NR_newfstatat, sys_newfstatat)
778#define __NR_fstatfs 1055
779__SYSCALL(__NR_fstatfs, sys_fstatfs)
780#define __NR_statfs 1056
781__SYSCALL(__NR_statfs, sys_statfs)
782#define __NR_lseek 1057
783__SYSCALL(__NR_lseek, sys_lseek)
784#define __NR_mmap 1058
785__SYSCALL(__NR_mmap, sys_mmap)
786
787#undef __NR_syscalls
788#define __NR_syscalls (__NR_mmap+1)
789#endif /* 32 bit off_t syscalls */
790
791#ifdef __ARCH_WANT_SYSCALL_DEPRECATED
792#define __NR_alarm 1059
793#define __ARCH_WANT_SYS_ALARM
794__SYSCALL(__NR_alarm, sys_alarm)
795#define __NR_getpgrp 1060
796#define __ARCH_WANT_SYS_GETPGRP
797__SYSCALL(__NR_getpgrp, sys_getpgrp)
798#define __NR_pause 1061
799#define __ARCH_WANT_SYS_PAUSE
800__SYSCALL(__NR_pause, sys_pause)
801#define __NR_time 1062
802#define __ARCH_WANT_SYS_TIME
Chris Metcalf5360bd72010-05-28 23:01:00 -0400803#define __ARCH_WANT_COMPAT_SYS_TIME
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000804__SYSCALL(__NR_time, sys_time)
805#define __NR_utime 1063
806#define __ARCH_WANT_SYS_UTIME
807__SYSCALL(__NR_utime, sys_utime)
808
809#define __NR_creat 1064
810__SYSCALL(__NR_creat, sys_creat)
811#define __NR_getdents 1065
812#define __ARCH_WANT_SYS_GETDENTS
813__SYSCALL(__NR_getdents, sys_getdents)
814#define __NR_futimesat 1066
815__SYSCALL(__NR_futimesat, sys_futimesat)
816#define __NR_select 1067
817#define __ARCH_WANT_SYS_SELECT
818__SYSCALL(__NR_select, sys_select)
819#define __NR_poll 1068
820__SYSCALL(__NR_poll, sys_poll)
821#define __NR_epoll_wait 1069
822__SYSCALL(__NR_epoll_wait, sys_epoll_wait)
823#define __NR_ustat 1070
824__SYSCALL(__NR_ustat, sys_ustat)
825#define __NR_vfork 1071
826__SYSCALL(__NR_vfork, sys_vfork)
Chris Metcalfb51cae22010-06-25 14:54:16 -0400827#define __NR_oldwait4 1072
828__SYSCALL(__NR_oldwait4, sys_wait4)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000829#define __NR_recv 1073
830__SYSCALL(__NR_recv, sys_recv)
831#define __NR_send 1074
832__SYSCALL(__NR_send, sys_send)
833#define __NR_bdflush 1075
834__SYSCALL(__NR_bdflush, sys_bdflush)
835#define __NR_umount 1076
836__SYSCALL(__NR_umount, sys_oldumount)
837#define __ARCH_WANT_SYS_OLDUMOUNT
838#define __NR_uselib 1077
839__SYSCALL(__NR_uselib, sys_uselib)
840#define __NR__sysctl 1078
841__SYSCALL(__NR__sysctl, sys_sysctl)
842
843#define __NR_fork 1079
844#ifdef CONFIG_MMU
845__SYSCALL(__NR_fork, sys_fork)
846#else
847__SYSCALL(__NR_fork, sys_ni_syscall)
848#endif /* CONFIG_MMU */
849
850#undef __NR_syscalls
851#define __NR_syscalls (__NR_fork+1)
852
853#endif /* __ARCH_WANT_SYSCALL_DEPRECATED */
854
855/*
856 * 32 bit systems traditionally used different
857 * syscalls for off_t and loff_t arguments, while
858 * 64 bit systems only need the off_t version.
859 * For new 32 bit platforms, there is no need to
860 * implement the old 32 bit off_t syscalls, so
861 * they take different names.
862 * Here we map the numbers so that both versions
863 * use the same syscall table layout.
864 */
Chris Metcalf5360bd72010-05-28 23:01:00 -0400865#if __BITS_PER_LONG == 64 && !defined(__SYSCALL_COMPAT)
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000866#define __NR_fcntl __NR3264_fcntl
867#define __NR_statfs __NR3264_statfs
868#define __NR_fstatfs __NR3264_fstatfs
869#define __NR_truncate __NR3264_truncate
Chen Liqin4029a91f2009-10-26 11:09:29 +0800870#define __NR_ftruncate __NR3264_ftruncate
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000871#define __NR_lseek __NR3264_lseek
872#define __NR_sendfile __NR3264_sendfile
873#define __NR_newfstatat __NR3264_fstatat
874#define __NR_fstat __NR3264_fstat
875#define __NR_mmap __NR3264_mmap
876#define __NR_fadvise64 __NR3264_fadvise64
877#ifdef __NR3264_stat
878#define __NR_stat __NR3264_stat
879#define __NR_lstat __NR3264_lstat
880#endif
881#else
882#define __NR_fcntl64 __NR3264_fcntl
883#define __NR_statfs64 __NR3264_statfs
884#define __NR_fstatfs64 __NR3264_fstatfs
885#define __NR_truncate64 __NR3264_truncate
Chen Liqin4029a91f2009-10-26 11:09:29 +0800886#define __NR_ftruncate64 __NR3264_ftruncate
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000887#define __NR_llseek __NR3264_lseek
888#define __NR_sendfile64 __NR3264_sendfile
889#define __NR_fstatat64 __NR3264_fstatat
890#define __NR_fstat64 __NR3264_fstat
891#define __NR_mmap2 __NR3264_mmap
892#define __NR_fadvise64_64 __NR3264_fadvise64
893#ifdef __NR3264_stat
894#define __NR_stat64 __NR3264_stat
895#define __NR_lstat64 __NR3264_lstat
896#endif
897#endif
898
899#ifdef __KERNEL__
900
901/*
902 * These are required system calls, we should
903 * invert the logic eventually and let them
904 * be selected by default.
905 */
906#if __BITS_PER_LONG == 32
907#define __ARCH_WANT_STAT64
908#define __ARCH_WANT_SYS_LLSEEK
909#endif
910#define __ARCH_WANT_SYS_RT_SIGACTION
911#define __ARCH_WANT_SYS_RT_SIGSUSPEND
Chris Metcalf5360bd72010-05-28 23:01:00 -0400912#define __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND
Arnd Bergmanne64a1612009-05-13 22:56:28 +0000913
914/*
915 * "Conditional" syscalls
916 *
917 * What we want is __attribute__((weak,alias("sys_ni_syscall"))),
918 * but it doesn't work on all toolchains, so we just do it by hand
919 */
920#ifndef cond_syscall
921#define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall")
922#endif
923
924#endif /* __KERNEL__ */
925#endif /* _ASM_GENERIC_UNISTD_H */