Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools include: Grab copies of arm64 dependent unistd.h files

Will be used for generating the syscall id/string translation table.

The arm64 unistd.h file simply #includes the asm-generic/unistd.h, so,
since we will want to know whether either change, we grab both:

arch/arm64/include/uapi/asm/unistd.h

and

include/uapi/asm-generic/unistd.h

Signed-off-by: Kim Phillips <kim.phillips@arm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>
Cc: Thomas Richter <tmricht@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/20180706163434.1b64ffbcc0284fb79982f53b@arm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Kim Phillips and committed by
Arnaldo Carvalho de Melo
34b009cf 60089e42

+805
+20
tools/arch/arm64/include/uapi/asm/unistd.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 + /* 3 + * Copyright (C) 2012 ARM Ltd. 4 + * 5 + * This program is free software; you can redistribute it and/or modify 6 + * it under the terms of the GNU General Public License version 2 as 7 + * published by the Free Software Foundation. 8 + * 9 + * This program is distributed in the hope that it will be useful, 10 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 + * GNU General Public License for more details. 13 + * 14 + * You should have received a copy of the GNU General Public License 15 + * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 + */ 17 + 18 + #define __ARCH_WANT_RENAMEAT 19 + 20 + #include <asm-generic/unistd.h>
+783
tools/include/uapi/asm-generic/unistd.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 + #include <asm/bitsperlong.h> 3 + 4 + /* 5 + * This file contains the system call numbers, based on the 6 + * layout of the x86-64 architecture, which embeds the 7 + * pointer to the syscall in the table. 8 + * 9 + * As a basic principle, no duplication of functionality 10 + * should be added, e.g. we don't use lseek when llseek 11 + * is present. New architectures should use this file 12 + * and implement the less feature-full calls in user space. 13 + */ 14 + 15 + #ifndef __SYSCALL 16 + #define __SYSCALL(x, y) 17 + #endif 18 + 19 + #if __BITS_PER_LONG == 32 || defined(__SYSCALL_COMPAT) 20 + #define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _32) 21 + #else 22 + #define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _64) 23 + #endif 24 + 25 + #ifdef __SYSCALL_COMPAT 26 + #define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _comp) 27 + #define __SC_COMP_3264(_nr, _32, _64, _comp) __SYSCALL(_nr, _comp) 28 + #else 29 + #define __SC_COMP(_nr, _sys, _comp) __SYSCALL(_nr, _sys) 30 + #define __SC_COMP_3264(_nr, _32, _64, _comp) __SC_3264(_nr, _32, _64) 31 + #endif 32 + 33 + #define __NR_io_setup 0 34 + __SC_COMP(__NR_io_setup, sys_io_setup, compat_sys_io_setup) 35 + #define __NR_io_destroy 1 36 + __SYSCALL(__NR_io_destroy, sys_io_destroy) 37 + #define __NR_io_submit 2 38 + __SC_COMP(__NR_io_submit, sys_io_submit, compat_sys_io_submit) 39 + #define __NR_io_cancel 3 40 + __SYSCALL(__NR_io_cancel, sys_io_cancel) 41 + #define __NR_io_getevents 4 42 + __SC_COMP(__NR_io_getevents, sys_io_getevents, compat_sys_io_getevents) 43 + 44 + /* fs/xattr.c */ 45 + #define __NR_setxattr 5 46 + __SYSCALL(__NR_setxattr, sys_setxattr) 47 + #define __NR_lsetxattr 6 48 + __SYSCALL(__NR_lsetxattr, sys_lsetxattr) 49 + #define __NR_fsetxattr 7 50 + __SYSCALL(__NR_fsetxattr, sys_fsetxattr) 51 + #define __NR_getxattr 8 52 + __SYSCALL(__NR_getxattr, sys_getxattr) 53 + #define __NR_lgetxattr 9 54 + __SYSCALL(__NR_lgetxattr, sys_lgetxattr) 55 + #define __NR_fgetxattr 10 56 + __SYSCALL(__NR_fgetxattr, sys_fgetxattr) 57 + #define __NR_listxattr 11 58 + __SYSCALL(__NR_listxattr, sys_listxattr) 59 + #define __NR_llistxattr 12 60 + __SYSCALL(__NR_llistxattr, sys_llistxattr) 61 + #define __NR_flistxattr 13 62 + __SYSCALL(__NR_flistxattr, sys_flistxattr) 63 + #define __NR_removexattr 14 64 + __SYSCALL(__NR_removexattr, sys_removexattr) 65 + #define __NR_lremovexattr 15 66 + __SYSCALL(__NR_lremovexattr, sys_lremovexattr) 67 + #define __NR_fremovexattr 16 68 + __SYSCALL(__NR_fremovexattr, sys_fremovexattr) 69 + 70 + /* fs/dcache.c */ 71 + #define __NR_getcwd 17 72 + __SYSCALL(__NR_getcwd, sys_getcwd) 73 + 74 + /* fs/cookies.c */ 75 + #define __NR_lookup_dcookie 18 76 + __SC_COMP(__NR_lookup_dcookie, sys_lookup_dcookie, compat_sys_lookup_dcookie) 77 + 78 + /* fs/eventfd.c */ 79 + #define __NR_eventfd2 19 80 + __SYSCALL(__NR_eventfd2, sys_eventfd2) 81 + 82 + /* fs/eventpoll.c */ 83 + #define __NR_epoll_create1 20 84 + __SYSCALL(__NR_epoll_create1, sys_epoll_create1) 85 + #define __NR_epoll_ctl 21 86 + __SYSCALL(__NR_epoll_ctl, sys_epoll_ctl) 87 + #define __NR_epoll_pwait 22 88 + __SC_COMP(__NR_epoll_pwait, sys_epoll_pwait, compat_sys_epoll_pwait) 89 + 90 + /* fs/fcntl.c */ 91 + #define __NR_dup 23 92 + __SYSCALL(__NR_dup, sys_dup) 93 + #define __NR_dup3 24 94 + __SYSCALL(__NR_dup3, sys_dup3) 95 + #define __NR3264_fcntl 25 96 + __SC_COMP_3264(__NR3264_fcntl, sys_fcntl64, sys_fcntl, compat_sys_fcntl64) 97 + 98 + /* fs/inotify_user.c */ 99 + #define __NR_inotify_init1 26 100 + __SYSCALL(__NR_inotify_init1, sys_inotify_init1) 101 + #define __NR_inotify_add_watch 27 102 + __SYSCALL(__NR_inotify_add_watch, sys_inotify_add_watch) 103 + #define __NR_inotify_rm_watch 28 104 + __SYSCALL(__NR_inotify_rm_watch, sys_inotify_rm_watch) 105 + 106 + /* fs/ioctl.c */ 107 + #define __NR_ioctl 29 108 + __SC_COMP(__NR_ioctl, sys_ioctl, compat_sys_ioctl) 109 + 110 + /* fs/ioprio.c */ 111 + #define __NR_ioprio_set 30 112 + __SYSCALL(__NR_ioprio_set, sys_ioprio_set) 113 + #define __NR_ioprio_get 31 114 + __SYSCALL(__NR_ioprio_get, sys_ioprio_get) 115 + 116 + /* fs/locks.c */ 117 + #define __NR_flock 32 118 + __SYSCALL(__NR_flock, sys_flock) 119 + 120 + /* fs/namei.c */ 121 + #define __NR_mknodat 33 122 + __SYSCALL(__NR_mknodat, sys_mknodat) 123 + #define __NR_mkdirat 34 124 + __SYSCALL(__NR_mkdirat, sys_mkdirat) 125 + #define __NR_unlinkat 35 126 + __SYSCALL(__NR_unlinkat, sys_unlinkat) 127 + #define __NR_symlinkat 36 128 + __SYSCALL(__NR_symlinkat, sys_symlinkat) 129 + #define __NR_linkat 37 130 + __SYSCALL(__NR_linkat, sys_linkat) 131 + #ifdef __ARCH_WANT_RENAMEAT 132 + /* renameat is superseded with flags by renameat2 */ 133 + #define __NR_renameat 38 134 + __SYSCALL(__NR_renameat, sys_renameat) 135 + #endif /* __ARCH_WANT_RENAMEAT */ 136 + 137 + /* fs/namespace.c */ 138 + #define __NR_umount2 39 139 + __SYSCALL(__NR_umount2, sys_umount) 140 + #define __NR_mount 40 141 + __SC_COMP(__NR_mount, sys_mount, compat_sys_mount) 142 + #define __NR_pivot_root 41 143 + __SYSCALL(__NR_pivot_root, sys_pivot_root) 144 + 145 + /* fs/nfsctl.c */ 146 + #define __NR_nfsservctl 42 147 + __SYSCALL(__NR_nfsservctl, sys_ni_syscall) 148 + 149 + /* fs/open.c */ 150 + #define __NR3264_statfs 43 151 + __SC_COMP_3264(__NR3264_statfs, sys_statfs64, sys_statfs, \ 152 + compat_sys_statfs64) 153 + #define __NR3264_fstatfs 44 154 + __SC_COMP_3264(__NR3264_fstatfs, sys_fstatfs64, sys_fstatfs, \ 155 + compat_sys_fstatfs64) 156 + #define __NR3264_truncate 45 157 + __SC_COMP_3264(__NR3264_truncate, sys_truncate64, sys_truncate, \ 158 + compat_sys_truncate64) 159 + #define __NR3264_ftruncate 46 160 + __SC_COMP_3264(__NR3264_ftruncate, sys_ftruncate64, sys_ftruncate, \ 161 + compat_sys_ftruncate64) 162 + 163 + #define __NR_fallocate 47 164 + __SC_COMP(__NR_fallocate, sys_fallocate, compat_sys_fallocate) 165 + #define __NR_faccessat 48 166 + __SYSCALL(__NR_faccessat, sys_faccessat) 167 + #define __NR_chdir 49 168 + __SYSCALL(__NR_chdir, sys_chdir) 169 + #define __NR_fchdir 50 170 + __SYSCALL(__NR_fchdir, sys_fchdir) 171 + #define __NR_chroot 51 172 + __SYSCALL(__NR_chroot, sys_chroot) 173 + #define __NR_fchmod 52 174 + __SYSCALL(__NR_fchmod, sys_fchmod) 175 + #define __NR_fchmodat 53 176 + __SYSCALL(__NR_fchmodat, sys_fchmodat) 177 + #define __NR_fchownat 54 178 + __SYSCALL(__NR_fchownat, sys_fchownat) 179 + #define __NR_fchown 55 180 + __SYSCALL(__NR_fchown, sys_fchown) 181 + #define __NR_openat 56 182 + __SC_COMP(__NR_openat, sys_openat, compat_sys_openat) 183 + #define __NR_close 57 184 + __SYSCALL(__NR_close, sys_close) 185 + #define __NR_vhangup 58 186 + __SYSCALL(__NR_vhangup, sys_vhangup) 187 + 188 + /* fs/pipe.c */ 189 + #define __NR_pipe2 59 190 + __SYSCALL(__NR_pipe2, sys_pipe2) 191 + 192 + /* fs/quota.c */ 193 + #define __NR_quotactl 60 194 + __SYSCALL(__NR_quotactl, sys_quotactl) 195 + 196 + /* fs/readdir.c */ 197 + #define __NR_getdents64 61 198 + __SYSCALL(__NR_getdents64, sys_getdents64) 199 + 200 + /* fs/read_write.c */ 201 + #define __NR3264_lseek 62 202 + __SC_3264(__NR3264_lseek, sys_llseek, sys_lseek) 203 + #define __NR_read 63 204 + __SYSCALL(__NR_read, sys_read) 205 + #define __NR_write 64 206 + __SYSCALL(__NR_write, sys_write) 207 + #define __NR_readv 65 208 + __SC_COMP(__NR_readv, sys_readv, compat_sys_readv) 209 + #define __NR_writev 66 210 + __SC_COMP(__NR_writev, sys_writev, compat_sys_writev) 211 + #define __NR_pread64 67 212 + __SC_COMP(__NR_pread64, sys_pread64, compat_sys_pread64) 213 + #define __NR_pwrite64 68 214 + __SC_COMP(__NR_pwrite64, sys_pwrite64, compat_sys_pwrite64) 215 + #define __NR_preadv 69 216 + __SC_COMP(__NR_preadv, sys_preadv, compat_sys_preadv) 217 + #define __NR_pwritev 70 218 + __SC_COMP(__NR_pwritev, sys_pwritev, compat_sys_pwritev) 219 + 220 + /* fs/sendfile.c */ 221 + #define __NR3264_sendfile 71 222 + __SYSCALL(__NR3264_sendfile, sys_sendfile64) 223 + 224 + /* fs/select.c */ 225 + #define __NR_pselect6 72 226 + __SC_COMP(__NR_pselect6, sys_pselect6, compat_sys_pselect6) 227 + #define __NR_ppoll 73 228 + __SC_COMP(__NR_ppoll, sys_ppoll, compat_sys_ppoll) 229 + 230 + /* fs/signalfd.c */ 231 + #define __NR_signalfd4 74 232 + __SC_COMP(__NR_signalfd4, sys_signalfd4, compat_sys_signalfd4) 233 + 234 + /* fs/splice.c */ 235 + #define __NR_vmsplice 75 236 + __SC_COMP(__NR_vmsplice, sys_vmsplice, compat_sys_vmsplice) 237 + #define __NR_splice 76 238 + __SYSCALL(__NR_splice, sys_splice) 239 + #define __NR_tee 77 240 + __SYSCALL(__NR_tee, sys_tee) 241 + 242 + /* fs/stat.c */ 243 + #define __NR_readlinkat 78 244 + __SYSCALL(__NR_readlinkat, sys_readlinkat) 245 + #define __NR3264_fstatat 79 246 + __SC_3264(__NR3264_fstatat, sys_fstatat64, sys_newfstatat) 247 + #define __NR3264_fstat 80 248 + __SC_3264(__NR3264_fstat, sys_fstat64, sys_newfstat) 249 + 250 + /* fs/sync.c */ 251 + #define __NR_sync 81 252 + __SYSCALL(__NR_sync, sys_sync) 253 + #define __NR_fsync 82 254 + __SYSCALL(__NR_fsync, sys_fsync) 255 + #define __NR_fdatasync 83 256 + __SYSCALL(__NR_fdatasync, sys_fdatasync) 257 + #ifdef __ARCH_WANT_SYNC_FILE_RANGE2 258 + #define __NR_sync_file_range2 84 259 + __SC_COMP(__NR_sync_file_range2, sys_sync_file_range2, \ 260 + compat_sys_sync_file_range2) 261 + #else 262 + #define __NR_sync_file_range 84 263 + __SC_COMP(__NR_sync_file_range, sys_sync_file_range, \ 264 + compat_sys_sync_file_range) 265 + #endif 266 + 267 + /* fs/timerfd.c */ 268 + #define __NR_timerfd_create 85 269 + __SYSCALL(__NR_timerfd_create, sys_timerfd_create) 270 + #define __NR_timerfd_settime 86 271 + __SC_COMP(__NR_timerfd_settime, sys_timerfd_settime, \ 272 + compat_sys_timerfd_settime) 273 + #define __NR_timerfd_gettime 87 274 + __SC_COMP(__NR_timerfd_gettime, sys_timerfd_gettime, \ 275 + compat_sys_timerfd_gettime) 276 + 277 + /* fs/utimes.c */ 278 + #define __NR_utimensat 88 279 + __SC_COMP(__NR_utimensat, sys_utimensat, compat_sys_utimensat) 280 + 281 + /* kernel/acct.c */ 282 + #define __NR_acct 89 283 + __SYSCALL(__NR_acct, sys_acct) 284 + 285 + /* kernel/capability.c */ 286 + #define __NR_capget 90 287 + __SYSCALL(__NR_capget, sys_capget) 288 + #define __NR_capset 91 289 + __SYSCALL(__NR_capset, sys_capset) 290 + 291 + /* kernel/exec_domain.c */ 292 + #define __NR_personality 92 293 + __SYSCALL(__NR_personality, sys_personality) 294 + 295 + /* kernel/exit.c */ 296 + #define __NR_exit 93 297 + __SYSCALL(__NR_exit, sys_exit) 298 + #define __NR_exit_group 94 299 + __SYSCALL(__NR_exit_group, sys_exit_group) 300 + #define __NR_waitid 95 301 + __SC_COMP(__NR_waitid, sys_waitid, compat_sys_waitid) 302 + 303 + /* kernel/fork.c */ 304 + #define __NR_set_tid_address 96 305 + __SYSCALL(__NR_set_tid_address, sys_set_tid_address) 306 + #define __NR_unshare 97 307 + __SYSCALL(__NR_unshare, sys_unshare) 308 + 309 + /* kernel/futex.c */ 310 + #define __NR_futex 98 311 + __SC_COMP(__NR_futex, sys_futex, compat_sys_futex) 312 + #define __NR_set_robust_list 99 313 + __SC_COMP(__NR_set_robust_list, sys_set_robust_list, \ 314 + compat_sys_set_robust_list) 315 + #define __NR_get_robust_list 100 316 + __SC_COMP(__NR_get_robust_list, sys_get_robust_list, \ 317 + compat_sys_get_robust_list) 318 + 319 + /* kernel/hrtimer.c */ 320 + #define __NR_nanosleep 101 321 + __SC_COMP(__NR_nanosleep, sys_nanosleep, compat_sys_nanosleep) 322 + 323 + /* kernel/itimer.c */ 324 + #define __NR_getitimer 102 325 + __SC_COMP(__NR_getitimer, sys_getitimer, compat_sys_getitimer) 326 + #define __NR_setitimer 103 327 + __SC_COMP(__NR_setitimer, sys_setitimer, compat_sys_setitimer) 328 + 329 + /* kernel/kexec.c */ 330 + #define __NR_kexec_load 104 331 + __SC_COMP(__NR_kexec_load, sys_kexec_load, compat_sys_kexec_load) 332 + 333 + /* kernel/module.c */ 334 + #define __NR_init_module 105 335 + __SYSCALL(__NR_init_module, sys_init_module) 336 + #define __NR_delete_module 106 337 + __SYSCALL(__NR_delete_module, sys_delete_module) 338 + 339 + /* kernel/posix-timers.c */ 340 + #define __NR_timer_create 107 341 + __SC_COMP(__NR_timer_create, sys_timer_create, compat_sys_timer_create) 342 + #define __NR_timer_gettime 108 343 + __SC_COMP(__NR_timer_gettime, sys_timer_gettime, compat_sys_timer_gettime) 344 + #define __NR_timer_getoverrun 109 345 + __SYSCALL(__NR_timer_getoverrun, sys_timer_getoverrun) 346 + #define __NR_timer_settime 110 347 + __SC_COMP(__NR_timer_settime, sys_timer_settime, compat_sys_timer_settime) 348 + #define __NR_timer_delete 111 349 + __SYSCALL(__NR_timer_delete, sys_timer_delete) 350 + #define __NR_clock_settime 112 351 + __SC_COMP(__NR_clock_settime, sys_clock_settime, compat_sys_clock_settime) 352 + #define __NR_clock_gettime 113 353 + __SC_COMP(__NR_clock_gettime, sys_clock_gettime, compat_sys_clock_gettime) 354 + #define __NR_clock_getres 114 355 + __SC_COMP(__NR_clock_getres, sys_clock_getres, compat_sys_clock_getres) 356 + #define __NR_clock_nanosleep 115 357 + __SC_COMP(__NR_clock_nanosleep, sys_clock_nanosleep, \ 358 + compat_sys_clock_nanosleep) 359 + 360 + /* kernel/printk.c */ 361 + #define __NR_syslog 116 362 + __SYSCALL(__NR_syslog, sys_syslog) 363 + 364 + /* kernel/ptrace.c */ 365 + #define __NR_ptrace 117 366 + __SYSCALL(__NR_ptrace, sys_ptrace) 367 + 368 + /* kernel/sched/core.c */ 369 + #define __NR_sched_setparam 118 370 + __SYSCALL(__NR_sched_setparam, sys_sched_setparam) 371 + #define __NR_sched_setscheduler 119 372 + __SYSCALL(__NR_sched_setscheduler, sys_sched_setscheduler) 373 + #define __NR_sched_getscheduler 120 374 + __SYSCALL(__NR_sched_getscheduler, sys_sched_getscheduler) 375 + #define __NR_sched_getparam 121 376 + __SYSCALL(__NR_sched_getparam, sys_sched_getparam) 377 + #define __NR_sched_setaffinity 122 378 + __SC_COMP(__NR_sched_setaffinity, sys_sched_setaffinity, \ 379 + compat_sys_sched_setaffinity) 380 + #define __NR_sched_getaffinity 123 381 + __SC_COMP(__NR_sched_getaffinity, sys_sched_getaffinity, \ 382 + compat_sys_sched_getaffinity) 383 + #define __NR_sched_yield 124 384 + __SYSCALL(__NR_sched_yield, sys_sched_yield) 385 + #define __NR_sched_get_priority_max 125 386 + __SYSCALL(__NR_sched_get_priority_max, sys_sched_get_priority_max) 387 + #define __NR_sched_get_priority_min 126 388 + __SYSCALL(__NR_sched_get_priority_min, sys_sched_get_priority_min) 389 + #define __NR_sched_rr_get_interval 127 390 + __SC_COMP(__NR_sched_rr_get_interval, sys_sched_rr_get_interval, \ 391 + compat_sys_sched_rr_get_interval) 392 + 393 + /* kernel/signal.c */ 394 + #define __NR_restart_syscall 128 395 + __SYSCALL(__NR_restart_syscall, sys_restart_syscall) 396 + #define __NR_kill 129 397 + __SYSCALL(__NR_kill, sys_kill) 398 + #define __NR_tkill 130 399 + __SYSCALL(__NR_tkill, sys_tkill) 400 + #define __NR_tgkill 131 401 + __SYSCALL(__NR_tgkill, sys_tgkill) 402 + #define __NR_sigaltstack 132 403 + __SC_COMP(__NR_sigaltstack, sys_sigaltstack, compat_sys_sigaltstack) 404 + #define __NR_rt_sigsuspend 133 405 + __SC_COMP(__NR_rt_sigsuspend, sys_rt_sigsuspend, compat_sys_rt_sigsuspend) 406 + #define __NR_rt_sigaction 134 407 + __SC_COMP(__NR_rt_sigaction, sys_rt_sigaction, compat_sys_rt_sigaction) 408 + #define __NR_rt_sigprocmask 135 409 + __SC_COMP(__NR_rt_sigprocmask, sys_rt_sigprocmask, compat_sys_rt_sigprocmask) 410 + #define __NR_rt_sigpending 136 411 + __SC_COMP(__NR_rt_sigpending, sys_rt_sigpending, compat_sys_rt_sigpending) 412 + #define __NR_rt_sigtimedwait 137 413 + __SC_COMP(__NR_rt_sigtimedwait, sys_rt_sigtimedwait, \ 414 + compat_sys_rt_sigtimedwait) 415 + #define __NR_rt_sigqueueinfo 138 416 + __SC_COMP(__NR_rt_sigqueueinfo, sys_rt_sigqueueinfo, \ 417 + compat_sys_rt_sigqueueinfo) 418 + #define __NR_rt_sigreturn 139 419 + __SC_COMP(__NR_rt_sigreturn, sys_rt_sigreturn, compat_sys_rt_sigreturn) 420 + 421 + /* kernel/sys.c */ 422 + #define __NR_setpriority 140 423 + __SYSCALL(__NR_setpriority, sys_setpriority) 424 + #define __NR_getpriority 141 425 + __SYSCALL(__NR_getpriority, sys_getpriority) 426 + #define __NR_reboot 142 427 + __SYSCALL(__NR_reboot, sys_reboot) 428 + #define __NR_setregid 143 429 + __SYSCALL(__NR_setregid, sys_setregid) 430 + #define __NR_setgid 144 431 + __SYSCALL(__NR_setgid, sys_setgid) 432 + #define __NR_setreuid 145 433 + __SYSCALL(__NR_setreuid, sys_setreuid) 434 + #define __NR_setuid 146 435 + __SYSCALL(__NR_setuid, sys_setuid) 436 + #define __NR_setresuid 147 437 + __SYSCALL(__NR_setresuid, sys_setresuid) 438 + #define __NR_getresuid 148 439 + __SYSCALL(__NR_getresuid, sys_getresuid) 440 + #define __NR_setresgid 149 441 + __SYSCALL(__NR_setresgid, sys_setresgid) 442 + #define __NR_getresgid 150 443 + __SYSCALL(__NR_getresgid, sys_getresgid) 444 + #define __NR_setfsuid 151 445 + __SYSCALL(__NR_setfsuid, sys_setfsuid) 446 + #define __NR_setfsgid 152 447 + __SYSCALL(__NR_setfsgid, sys_setfsgid) 448 + #define __NR_times 153 449 + __SC_COMP(__NR_times, sys_times, compat_sys_times) 450 + #define __NR_setpgid 154 451 + __SYSCALL(__NR_setpgid, sys_setpgid) 452 + #define __NR_getpgid 155 453 + __SYSCALL(__NR_getpgid, sys_getpgid) 454 + #define __NR_getsid 156 455 + __SYSCALL(__NR_getsid, sys_getsid) 456 + #define __NR_setsid 157 457 + __SYSCALL(__NR_setsid, sys_setsid) 458 + #define __NR_getgroups 158 459 + __SYSCALL(__NR_getgroups, sys_getgroups) 460 + #define __NR_setgroups 159 461 + __SYSCALL(__NR_setgroups, sys_setgroups) 462 + #define __NR_uname 160 463 + __SYSCALL(__NR_uname, sys_newuname) 464 + #define __NR_sethostname 161 465 + __SYSCALL(__NR_sethostname, sys_sethostname) 466 + #define __NR_setdomainname 162 467 + __SYSCALL(__NR_setdomainname, sys_setdomainname) 468 + #define __NR_getrlimit 163 469 + __SC_COMP(__NR_getrlimit, sys_getrlimit, compat_sys_getrlimit) 470 + #define __NR_setrlimit 164 471 + __SC_COMP(__NR_setrlimit, sys_setrlimit, compat_sys_setrlimit) 472 + #define __NR_getrusage 165 473 + __SC_COMP(__NR_getrusage, sys_getrusage, compat_sys_getrusage) 474 + #define __NR_umask 166 475 + __SYSCALL(__NR_umask, sys_umask) 476 + #define __NR_prctl 167 477 + __SYSCALL(__NR_prctl, sys_prctl) 478 + #define __NR_getcpu 168 479 + __SYSCALL(__NR_getcpu, sys_getcpu) 480 + 481 + /* kernel/time.c */ 482 + #define __NR_gettimeofday 169 483 + __SC_COMP(__NR_gettimeofday, sys_gettimeofday, compat_sys_gettimeofday) 484 + #define __NR_settimeofday 170 485 + __SC_COMP(__NR_settimeofday, sys_settimeofday, compat_sys_settimeofday) 486 + #define __NR_adjtimex 171 487 + __SC_COMP(__NR_adjtimex, sys_adjtimex, compat_sys_adjtimex) 488 + 489 + /* kernel/timer.c */ 490 + #define __NR_getpid 172 491 + __SYSCALL(__NR_getpid, sys_getpid) 492 + #define __NR_getppid 173 493 + __SYSCALL(__NR_getppid, sys_getppid) 494 + #define __NR_getuid 174 495 + __SYSCALL(__NR_getuid, sys_getuid) 496 + #define __NR_geteuid 175 497 + __SYSCALL(__NR_geteuid, sys_geteuid) 498 + #define __NR_getgid 176 499 + __SYSCALL(__NR_getgid, sys_getgid) 500 + #define __NR_getegid 177 501 + __SYSCALL(__NR_getegid, sys_getegid) 502 + #define __NR_gettid 178 503 + __SYSCALL(__NR_gettid, sys_gettid) 504 + #define __NR_sysinfo 179 505 + __SC_COMP(__NR_sysinfo, sys_sysinfo, compat_sys_sysinfo) 506 + 507 + /* ipc/mqueue.c */ 508 + #define __NR_mq_open 180 509 + __SC_COMP(__NR_mq_open, sys_mq_open, compat_sys_mq_open) 510 + #define __NR_mq_unlink 181 511 + __SYSCALL(__NR_mq_unlink, sys_mq_unlink) 512 + #define __NR_mq_timedsend 182 513 + __SC_COMP(__NR_mq_timedsend, sys_mq_timedsend, compat_sys_mq_timedsend) 514 + #define __NR_mq_timedreceive 183 515 + __SC_COMP(__NR_mq_timedreceive, sys_mq_timedreceive, \ 516 + compat_sys_mq_timedreceive) 517 + #define __NR_mq_notify 184 518 + __SC_COMP(__NR_mq_notify, sys_mq_notify, compat_sys_mq_notify) 519 + #define __NR_mq_getsetattr 185 520 + __SC_COMP(__NR_mq_getsetattr, sys_mq_getsetattr, compat_sys_mq_getsetattr) 521 + 522 + /* ipc/msg.c */ 523 + #define __NR_msgget 186 524 + __SYSCALL(__NR_msgget, sys_msgget) 525 + #define __NR_msgctl 187 526 + __SC_COMP(__NR_msgctl, sys_msgctl, compat_sys_msgctl) 527 + #define __NR_msgrcv 188 528 + __SC_COMP(__NR_msgrcv, sys_msgrcv, compat_sys_msgrcv) 529 + #define __NR_msgsnd 189 530 + __SC_COMP(__NR_msgsnd, sys_msgsnd, compat_sys_msgsnd) 531 + 532 + /* ipc/sem.c */ 533 + #define __NR_semget 190 534 + __SYSCALL(__NR_semget, sys_semget) 535 + #define __NR_semctl 191 536 + __SC_COMP(__NR_semctl, sys_semctl, compat_sys_semctl) 537 + #define __NR_semtimedop 192 538 + __SC_COMP(__NR_semtimedop, sys_semtimedop, compat_sys_semtimedop) 539 + #define __NR_semop 193 540 + __SYSCALL(__NR_semop, sys_semop) 541 + 542 + /* ipc/shm.c */ 543 + #define __NR_shmget 194 544 + __SYSCALL(__NR_shmget, sys_shmget) 545 + #define __NR_shmctl 195 546 + __SC_COMP(__NR_shmctl, sys_shmctl, compat_sys_shmctl) 547 + #define __NR_shmat 196 548 + __SC_COMP(__NR_shmat, sys_shmat, compat_sys_shmat) 549 + #define __NR_shmdt 197 550 + __SYSCALL(__NR_shmdt, sys_shmdt) 551 + 552 + /* net/socket.c */ 553 + #define __NR_socket 198 554 + __SYSCALL(__NR_socket, sys_socket) 555 + #define __NR_socketpair 199 556 + __SYSCALL(__NR_socketpair, sys_socketpair) 557 + #define __NR_bind 200 558 + __SYSCALL(__NR_bind, sys_bind) 559 + #define __NR_listen 201 560 + __SYSCALL(__NR_listen, sys_listen) 561 + #define __NR_accept 202 562 + __SYSCALL(__NR_accept, sys_accept) 563 + #define __NR_connect 203 564 + __SYSCALL(__NR_connect, sys_connect) 565 + #define __NR_getsockname 204 566 + __SYSCALL(__NR_getsockname, sys_getsockname) 567 + #define __NR_getpeername 205 568 + __SYSCALL(__NR_getpeername, sys_getpeername) 569 + #define __NR_sendto 206 570 + __SYSCALL(__NR_sendto, sys_sendto) 571 + #define __NR_recvfrom 207 572 + __SC_COMP(__NR_recvfrom, sys_recvfrom, compat_sys_recvfrom) 573 + #define __NR_setsockopt 208 574 + __SC_COMP(__NR_setsockopt, sys_setsockopt, compat_sys_setsockopt) 575 + #define __NR_getsockopt 209 576 + __SC_COMP(__NR_getsockopt, sys_getsockopt, compat_sys_getsockopt) 577 + #define __NR_shutdown 210 578 + __SYSCALL(__NR_shutdown, sys_shutdown) 579 + #define __NR_sendmsg 211 580 + __SC_COMP(__NR_sendmsg, sys_sendmsg, compat_sys_sendmsg) 581 + #define __NR_recvmsg 212 582 + __SC_COMP(__NR_recvmsg, sys_recvmsg, compat_sys_recvmsg) 583 + 584 + /* mm/filemap.c */ 585 + #define __NR_readahead 213 586 + __SC_COMP(__NR_readahead, sys_readahead, compat_sys_readahead) 587 + 588 + /* mm/nommu.c, also with MMU */ 589 + #define __NR_brk 214 590 + __SYSCALL(__NR_brk, sys_brk) 591 + #define __NR_munmap 215 592 + __SYSCALL(__NR_munmap, sys_munmap) 593 + #define __NR_mremap 216 594 + __SYSCALL(__NR_mremap, sys_mremap) 595 + 596 + /* security/keys/keyctl.c */ 597 + #define __NR_add_key 217 598 + __SYSCALL(__NR_add_key, sys_add_key) 599 + #define __NR_request_key 218 600 + __SYSCALL(__NR_request_key, sys_request_key) 601 + #define __NR_keyctl 219 602 + __SC_COMP(__NR_keyctl, sys_keyctl, compat_sys_keyctl) 603 + 604 + /* arch/example/kernel/sys_example.c */ 605 + #define __NR_clone 220 606 + __SYSCALL(__NR_clone, sys_clone) 607 + #define __NR_execve 221 608 + __SC_COMP(__NR_execve, sys_execve, compat_sys_execve) 609 + 610 + #define __NR3264_mmap 222 611 + __SC_3264(__NR3264_mmap, sys_mmap2, sys_mmap) 612 + /* mm/fadvise.c */ 613 + #define __NR3264_fadvise64 223 614 + __SC_COMP(__NR3264_fadvise64, sys_fadvise64_64, compat_sys_fadvise64_64) 615 + 616 + /* mm/, CONFIG_MMU only */ 617 + #ifndef __ARCH_NOMMU 618 + #define __NR_swapon 224 619 + __SYSCALL(__NR_swapon, sys_swapon) 620 + #define __NR_swapoff 225 621 + __SYSCALL(__NR_swapoff, sys_swapoff) 622 + #define __NR_mprotect 226 623 + __SYSCALL(__NR_mprotect, sys_mprotect) 624 + #define __NR_msync 227 625 + __SYSCALL(__NR_msync, sys_msync) 626 + #define __NR_mlock 228 627 + __SYSCALL(__NR_mlock, sys_mlock) 628 + #define __NR_munlock 229 629 + __SYSCALL(__NR_munlock, sys_munlock) 630 + #define __NR_mlockall 230 631 + __SYSCALL(__NR_mlockall, sys_mlockall) 632 + #define __NR_munlockall 231 633 + __SYSCALL(__NR_munlockall, sys_munlockall) 634 + #define __NR_mincore 232 635 + __SYSCALL(__NR_mincore, sys_mincore) 636 + #define __NR_madvise 233 637 + __SYSCALL(__NR_madvise, sys_madvise) 638 + #define __NR_remap_file_pages 234 639 + __SYSCALL(__NR_remap_file_pages, sys_remap_file_pages) 640 + #define __NR_mbind 235 641 + __SC_COMP(__NR_mbind, sys_mbind, compat_sys_mbind) 642 + #define __NR_get_mempolicy 236 643 + __SC_COMP(__NR_get_mempolicy, sys_get_mempolicy, compat_sys_get_mempolicy) 644 + #define __NR_set_mempolicy 237 645 + __SC_COMP(__NR_set_mempolicy, sys_set_mempolicy, compat_sys_set_mempolicy) 646 + #define __NR_migrate_pages 238 647 + __SC_COMP(__NR_migrate_pages, sys_migrate_pages, compat_sys_migrate_pages) 648 + #define __NR_move_pages 239 649 + __SC_COMP(__NR_move_pages, sys_move_pages, compat_sys_move_pages) 650 + #endif 651 + 652 + #define __NR_rt_tgsigqueueinfo 240 653 + __SC_COMP(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo, \ 654 + compat_sys_rt_tgsigqueueinfo) 655 + #define __NR_perf_event_open 241 656 + __SYSCALL(__NR_perf_event_open, sys_perf_event_open) 657 + #define __NR_accept4 242 658 + __SYSCALL(__NR_accept4, sys_accept4) 659 + #define __NR_recvmmsg 243 660 + __SC_COMP(__NR_recvmmsg, sys_recvmmsg, compat_sys_recvmmsg) 661 + 662 + /* 663 + * Architectures may provide up to 16 syscalls of their own 664 + * starting with this value. 665 + */ 666 + #define __NR_arch_specific_syscall 244 667 + 668 + #define __NR_wait4 260 669 + __SC_COMP(__NR_wait4, sys_wait4, compat_sys_wait4) 670 + #define __NR_prlimit64 261 671 + __SYSCALL(__NR_prlimit64, sys_prlimit64) 672 + #define __NR_fanotify_init 262 673 + __SYSCALL(__NR_fanotify_init, sys_fanotify_init) 674 + #define __NR_fanotify_mark 263 675 + __SYSCALL(__NR_fanotify_mark, sys_fanotify_mark) 676 + #define __NR_name_to_handle_at 264 677 + __SYSCALL(__NR_name_to_handle_at, sys_name_to_handle_at) 678 + #define __NR_open_by_handle_at 265 679 + __SC_COMP(__NR_open_by_handle_at, sys_open_by_handle_at, \ 680 + compat_sys_open_by_handle_at) 681 + #define __NR_clock_adjtime 266 682 + __SC_COMP(__NR_clock_adjtime, sys_clock_adjtime, compat_sys_clock_adjtime) 683 + #define __NR_syncfs 267 684 + __SYSCALL(__NR_syncfs, sys_syncfs) 685 + #define __NR_setns 268 686 + __SYSCALL(__NR_setns, sys_setns) 687 + #define __NR_sendmmsg 269 688 + __SC_COMP(__NR_sendmmsg, sys_sendmmsg, compat_sys_sendmmsg) 689 + #define __NR_process_vm_readv 270 690 + __SC_COMP(__NR_process_vm_readv, sys_process_vm_readv, \ 691 + compat_sys_process_vm_readv) 692 + #define __NR_process_vm_writev 271 693 + __SC_COMP(__NR_process_vm_writev, sys_process_vm_writev, \ 694 + compat_sys_process_vm_writev) 695 + #define __NR_kcmp 272 696 + __SYSCALL(__NR_kcmp, sys_kcmp) 697 + #define __NR_finit_module 273 698 + __SYSCALL(__NR_finit_module, sys_finit_module) 699 + #define __NR_sched_setattr 274 700 + __SYSCALL(__NR_sched_setattr, sys_sched_setattr) 701 + #define __NR_sched_getattr 275 702 + __SYSCALL(__NR_sched_getattr, sys_sched_getattr) 703 + #define __NR_renameat2 276 704 + __SYSCALL(__NR_renameat2, sys_renameat2) 705 + #define __NR_seccomp 277 706 + __SYSCALL(__NR_seccomp, sys_seccomp) 707 + #define __NR_getrandom 278 708 + __SYSCALL(__NR_getrandom, sys_getrandom) 709 + #define __NR_memfd_create 279 710 + __SYSCALL(__NR_memfd_create, sys_memfd_create) 711 + #define __NR_bpf 280 712 + __SYSCALL(__NR_bpf, sys_bpf) 713 + #define __NR_execveat 281 714 + __SC_COMP(__NR_execveat, sys_execveat, compat_sys_execveat) 715 + #define __NR_userfaultfd 282 716 + __SYSCALL(__NR_userfaultfd, sys_userfaultfd) 717 + #define __NR_membarrier 283 718 + __SYSCALL(__NR_membarrier, sys_membarrier) 719 + #define __NR_mlock2 284 720 + __SYSCALL(__NR_mlock2, sys_mlock2) 721 + #define __NR_copy_file_range 285 722 + __SYSCALL(__NR_copy_file_range, sys_copy_file_range) 723 + #define __NR_preadv2 286 724 + __SC_COMP(__NR_preadv2, sys_preadv2, compat_sys_preadv2) 725 + #define __NR_pwritev2 287 726 + __SC_COMP(__NR_pwritev2, sys_pwritev2, compat_sys_pwritev2) 727 + #define __NR_pkey_mprotect 288 728 + __SYSCALL(__NR_pkey_mprotect, sys_pkey_mprotect) 729 + #define __NR_pkey_alloc 289 730 + __SYSCALL(__NR_pkey_alloc, sys_pkey_alloc) 731 + #define __NR_pkey_free 290 732 + __SYSCALL(__NR_pkey_free, sys_pkey_free) 733 + #define __NR_statx 291 734 + __SYSCALL(__NR_statx, sys_statx) 735 + #define __NR_io_pgetevents 292 736 + __SC_COMP(__NR_io_pgetevents, sys_io_pgetevents, compat_sys_io_pgetevents) 737 + 738 + #undef __NR_syscalls 739 + #define __NR_syscalls 293 740 + 741 + /* 742 + * 32 bit systems traditionally used different 743 + * syscalls for off_t and loff_t arguments, while 744 + * 64 bit systems only need the off_t version. 745 + * For new 32 bit platforms, there is no need to 746 + * implement the old 32 bit off_t syscalls, so 747 + * they take different names. 748 + * Here we map the numbers so that both versions 749 + * use the same syscall table layout. 750 + */ 751 + #if __BITS_PER_LONG == 64 && !defined(__SYSCALL_COMPAT) 752 + #define __NR_fcntl __NR3264_fcntl 753 + #define __NR_statfs __NR3264_statfs 754 + #define __NR_fstatfs __NR3264_fstatfs 755 + #define __NR_truncate __NR3264_truncate 756 + #define __NR_ftruncate __NR3264_ftruncate 757 + #define __NR_lseek __NR3264_lseek 758 + #define __NR_sendfile __NR3264_sendfile 759 + #define __NR_newfstatat __NR3264_fstatat 760 + #define __NR_fstat __NR3264_fstat 761 + #define __NR_mmap __NR3264_mmap 762 + #define __NR_fadvise64 __NR3264_fadvise64 763 + #ifdef __NR3264_stat 764 + #define __NR_stat __NR3264_stat 765 + #define __NR_lstat __NR3264_lstat 766 + #endif 767 + #else 768 + #define __NR_fcntl64 __NR3264_fcntl 769 + #define __NR_statfs64 __NR3264_statfs 770 + #define __NR_fstatfs64 __NR3264_fstatfs 771 + #define __NR_truncate64 __NR3264_truncate 772 + #define __NR_ftruncate64 __NR3264_ftruncate 773 + #define __NR_llseek __NR3264_lseek 774 + #define __NR_sendfile64 __NR3264_sendfile 775 + #define __NR_fstatat64 __NR3264_fstatat 776 + #define __NR_fstat64 __NR3264_fstat 777 + #define __NR_mmap2 __NR3264_mmap 778 + #define __NR_fadvise64_64 __NR3264_fadvise64 779 + #ifdef __NR3264_stat 780 + #define __NR_stat64 __NR3264_stat 781 + #define __NR_lstat64 __NR3264_lstat 782 + #endif 783 + #endif
+2
tools/perf/check-headers.sh
··· 35 35 arch/s390/include/uapi/asm/sie.h 36 36 arch/arm/include/uapi/asm/kvm.h 37 37 arch/arm64/include/uapi/asm/kvm.h 38 + arch/arm64/include/uapi/asm/unistd.h 38 39 arch/alpha/include/uapi/asm/errno.h 39 40 arch/mips/include/asm/errno.h 40 41 arch/mips/include/uapi/asm/errno.h ··· 54 53 include/uapi/asm-generic/errno-base.h 55 54 include/uapi/asm-generic/ioctls.h 56 55 include/uapi/asm-generic/mman-common.h 56 + include/uapi/asm-generic/unistd.h 57 57 ' 58 58 59 59 check_2 () {