From 9706b099e7f8bee19843e384e7606eebbfefd703 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 13 Oct 2015 17:21:32 +0200 Subject: describe sysfs and ioprio syscalls --- executor/syscalls.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'executor') diff --git a/executor/syscalls.h b/executor/syscalls.h index 144ae7975..d2e71ee7b 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -231,7 +231,9 @@ call_t syscalls[] = { {"mount", __NR_mount}, {"umount2", __NR_umount2}, {"pivot_root", __NR_pivot_root}, - {"sysfs", __NR_sysfs}, + {"sysfs$1", __NR_sysfs}, + {"sysfs$2", __NR_sysfs}, + {"sysfs$3", __NR_sysfs}, {"statfs", __NR_statfs}, {"fstatfs", __NR_fstatfs}, {"uselib", __NR_uselib}, @@ -251,8 +253,10 @@ call_t syscalls[] = { {"prlimit64", __NR_prlimit64}, {"iopl", __NR_iopl}, {"ioperm", __NR_ioperm}, - {"ioprio_get", __NR_ioprio_get}, - {"ioprio_set", __NR_ioprio_set}, + {"ioprio_get$pid", __NR_ioprio_get}, + {"ioprio_get$uid", __NR_ioprio_get}, + {"ioprio_set$pid", __NR_ioprio_set}, + {"ioprio_set$uid", __NR_ioprio_set}, {"setns", __NR_setns}, {"setxattr", __NR_setxattr}, {"lsetxattr", __NR_lsetxattr}, -- cgit mrf-deployment