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

[ARM] 4852/1: Add timerfd_create, timerfd_settime and timerfd_gettime syscall entries

Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by

Uwe Kleine-König and committed by
Russell King
cbfc0f04 184dd481

+6 -2
+3 -1
arch/arm/kernel/calls.S
··· 359 359 CALL(sys_kexec_load) 360 360 CALL(sys_utimensat) 361 361 CALL(sys_signalfd) 362 - /* 350 */ CALL(sys_ni_syscall) 362 + /* 350 */ CALL(sys_timerfd_create) 363 363 CALL(sys_eventfd) 364 364 CALL(sys_fallocate) 365 + CALL(sys_timerfd_settime) 366 + CALL(sys_timerfd_gettime) 365 367 #ifndef syscalls_counted 366 368 .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls 367 369 #define syscalls_counted
+3 -1
include/asm-arm/unistd.h
··· 376 376 #define __NR_kexec_load (__NR_SYSCALL_BASE+347) 377 377 #define __NR_utimensat (__NR_SYSCALL_BASE+348) 378 378 #define __NR_signalfd (__NR_SYSCALL_BASE+349) 379 - #define __NR_timerfd (__NR_SYSCALL_BASE+350) 379 + #define __NR_timerfd_create (__NR_SYSCALL_BASE+350) 380 380 #define __NR_eventfd (__NR_SYSCALL_BASE+351) 381 381 #define __NR_fallocate (__NR_SYSCALL_BASE+352) 382 + #define __NR_timerfd_settime (__NR_SYSCALL_BASE+353) 383 + #define __NR_timerfd_gettime (__NR_SYSCALL_BASE+354) 382 384 383 385 /* 384 386 * The following SWIs are ARM private.