From: Dmitry V. Levin Date: Fri, 25 Nov 2011 23:40:16 +0000 (+0000) Subject: Fix epoll_ctl syscall entries X-Git-Tag: v4.7~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ea78df972bb23e24855143981166cbf6ad7e2c1;p=strace Fix epoll_ctl syscall entries * linux/arm/syscallent.h: Fix epoll_ctl flags and handler. * linux/m68k/syscallent.h: Fix epoll_ctl flags. * linux/x86_64/syscallent.h: Fix number of epoll_ctl arguments. --- diff --git a/linux/arm/syscallent.h b/linux/arm/syscallent.h index a2ecfafc..c6607355 100644 --- a/linux/arm/syscallent.h +++ b/linux/arm/syscallent.h @@ -281,7 +281,7 @@ { 1, TP, sys_exit, "exit_group" }, /* 248 */ { 4, 0, sys_lookup_dcookie, "lookup_dcookie"}, /* 249 */ { 1, TD, sys_epoll_create, "epoll_create" }, /* 250 */ - { 4, 0, printargs, "epoll_ctl" }, /* 251 */ + { 4, TD, sys_epoll_ctl, "epoll_ctl" }, /* 251 */ { 4, 0, printargs, "epoll_wait" }, /* 252 */ { 5, 0, sys_remap_file_pages, "remap_file_pages"}, /* 253 */ { 5, 0, printargs, "SYS_254" }, /* 254 */ diff --git a/linux/m68k/syscallent.h b/linux/m68k/syscallent.h index bee1694c..1d6aea72 100644 --- a/linux/m68k/syscallent.h +++ b/linux/m68k/syscallent.h @@ -278,7 +278,7 @@ { 1, TP, sys_exit, "exit_group" }, /* 247 */ { 4, 0, sys_lookup_dcookie, "lookup_dcookie"}, /* 248 */ { 1, TD, sys_epoll_create, "epoll_create" }, /* 249 */ - { 4, 0, sys_epoll_ctl, "epoll_ctl" }, /* 250 */ + { 4, TD, sys_epoll_ctl, "epoll_ctl" }, /* 250 */ { 4, 0, sys_epoll_wait, "epoll_wait" }, /* 251 */ { 5, 0, sys_remap_file_pages, "remap_file_pages"}, /* 252 */ { 1, 0, sys_set_tid_address, "set_tid_address"}, /* 253 */ diff --git a/linux/x86_64/syscallent.h b/linux/x86_64/syscallent.h index e8259a06..a314f19b 100644 --- a/linux/x86_64/syscallent.h +++ b/linux/x86_64/syscallent.h @@ -231,7 +231,7 @@ { 4, 0, sys_clock_nanosleep, "clock_nanosleep"}, /* 230 */ { 1, TP, sys_exit, "exit_group" }, /* 231 */ { 5, TD, sys_epoll_wait, "epoll_wait" }, /* 232 */ - { 5, TD, sys_epoll_ctl, "epoll_ctl" }, /* 233 */ + { 4, TD, sys_epoll_ctl, "epoll_ctl" }, /* 233 */ { 3, TS, sys_tgkill, "tgkill" }, /* 234 */ { 2, TF, sys_utimes, "utimes" }, /* 235 */ { 5, 0, sys_vserver, "vserver" }, /* 236 */