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

Configure Feed

Select the types of activity you want to include in your feed.

compat signalfd and timerfd are cond syscalls

Add missing cond_syscall statements for compat_sys_signalfd and
compat_sys_timerfd.

Cc: Davide Libenzi <davidel@xmailserver.org>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Heiko Carstens and committed by
Linus Torvalds
8df767dd 10fb62e5

+2
+2
kernel/sys_ni.c
··· 145 145 /* New file descriptors */ 146 146 cond_syscall(sys_signalfd); 147 147 cond_syscall(sys_timerfd); 148 + cond_syscall(compat_sys_signalfd); 149 + cond_syscall(compat_sys_timerfd); 148 150 cond_syscall(sys_eventfd);