public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] Linux: Pass size argument of epoll_create to the kernel
@ 2022-12-22 16:23 Florian Weimer
  0 siblings, 0 replies; only message in thread
From: Florian Weimer @ 2022-12-22 16:23 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3c66c9600e285a42f042dd596859664b1d1372a7

commit 3c66c9600e285a42f042dd596859664b1d1372a7
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Dec 22 17:22:28 2022 +0100

    Linux: Pass size argument of epoll_create to the kernel
    
    The kernel actually verifies it, and a garbage value in the register
    causes improper system call failures.
    
    Fixes commit c1c0dea38833751f36a145c32 ("Linux: Remove epoll_create,
    inotify_init from syscalls.list") and commit d1d23b134244d59c4d6ef2295
    ("Lninux: consolidate epoll_create implementation").
    
    Reviewed-by: Carlos O'Donell <carlos@redhat.com>

Diff:
---
 sysdeps/unix/sysv/linux/epoll_create.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/unix/sysv/linux/epoll_create.c b/sysdeps/unix/sysv/linux/epoll_create.c
index afb1921637..cb6a67e602 100644
--- a/sysdeps/unix/sysv/linux/epoll_create.c
+++ b/sysdeps/unix/sysv/linux/epoll_create.c
@@ -25,7 +25,7 @@ int
 epoll_create (int size)
 {
 #ifdef __NR_epoll_create
-  return INLINE_SYSCALL_CALL (epoll_create);
+  return INLINE_SYSCALL_CALL (epoll_create, size);
 #else
   if (size <= 0)
     {

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-12-22 16:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-22 16:23 [glibc] Linux: Pass size argument of epoll_create to the kernel Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).