projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5206a79
)
[PATCH] fix epoll_pwait when EPOLL=n
author
Randy Dunlap
<randy.dunlap@oracle.com>
Mon, 16 Oct 2006 16:01:46 +0000
(09:01 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Mon, 16 Oct 2006 16:14:05 +0000
(09:14 -0700)
Fixes http://bugzilla.kernel.org/show_bug.cgi?id=7371
sys_epoll_pwait needs to be listed as a conditional (weak)
entry point for CONFIG_EPOLL=n.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
kernel/sys_ni.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/sys_ni.c
b/kernel/sys_ni.c
index 7a3b2e75f0402122ced8b15d5488a6b9de49ee8e..0e53314b14de7124456faa2ea6cc0f7aa87fcdb9 100644
(file)
--- a/
kernel/sys_ni.c
+++ b/
kernel/sys_ni.c
@@
-49,6
+49,7
@@
cond_syscall(compat_sys_get_robust_list);
cond_syscall(sys_epoll_create);
cond_syscall(sys_epoll_ctl);
cond_syscall(sys_epoll_wait);
+cond_syscall(sys_epoll_pwait);
cond_syscall(sys_semget);
cond_syscall(sys_semop);
cond_syscall(sys_semtimedop);