From: Dmitry V. Levin Date: Sat, 26 Nov 2011 23:08:14 +0000 (+0000) Subject: arm: fix io_* syscall entries X-Git-Tag: v4.7~233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b11adf3ad297f0855f2068e3500ab9a60a536b60;p=strace arm: fix io_* syscall entries * linux/arm/syscallent.h: Fix handlers for io_setup, io_destroy, io_getevents, io_submit and io_cancel. --- diff --git a/linux/arm/syscallent.h b/linux/arm/syscallent.h index d4a96743..467df09f 100644 --- a/linux/arm/syscallent.h +++ b/linux/arm/syscallent.h @@ -273,11 +273,11 @@ { 6, 0, sys_futex, "futex" }, /* 240 */ { 3, 0, sys_sched_setaffinity, "sched_setaffinity" },/* 241 */ { 3, 0, sys_sched_getaffinity, "sched_getaffinity" },/* 242 */ - { 2, 0, printargs, "io_setup" }, /* 243 */ - { 1, 0, printargs, "io_destroy" }, /* 244 */ - { 5, 0, printargs, "io_getevents" }, /* 245 */ - { 3, 0, printargs, "io_submit" }, /* 246 */ - { 3, 0, printargs, "io_cancel" }, /* 247 */ + { 2, 0, sys_io_setup, "io_setup" }, /* 243 */ + { 1, 0, sys_io_destroy, "io_destroy" }, /* 244 */ + { 5, 0, sys_io_getevents, "io_getevents" }, /* 245 */ + { 3, 0, sys_io_submit, "io_submit" }, /* 246 */ + { 3, 0, sys_io_cancel, "io_cancel" }, /* 247 */ { 1, TP, sys_exit, "exit_group" }, /* 248 */ { 4, 0, sys_lookup_dcookie, "lookup_dcookie"}, /* 249 */ { 1, TD, sys_epoll_create, "epoll_create" }, /* 250 */