]> granicus.if.org Git - strace/commitdiff
Fix numbers of syscall arguments in syscall tables
authorDmitry V. Levin <ldv@altlinux.org>
Fri, 12 Feb 2016 19:50:38 +0000 (19:50 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Sat, 13 Feb 2016 00:57:00 +0000 (00:57 +0000)
This semi-automatic change brings syscall tables in sync with kernel's
include/linux/syscalls.h file.

* linux/aarch64/syscallent.h (recv): Fix nargs.
* linux/alpha/syscallent.h (sigaltstack, init_module,
sched_getscheduler, settimeofday): Likewise.
* linux/arm/syscallent.h (signal, pciconfig_iobase, msgrcv, msgctl,
shmat, shmdt, shmctl, semtimedop, get_mempolicy, set_mempolicy,
timerfd_create): Likewise.
* linux/bfin/syscallent.h (signal, delete_module): Likewise.
* linux/hppa/syscallent.h (init_module, munlockall, sched_getscheduler,
io_cancel, set_tid_address, listxattr, llistxattr, flistxattr,
removexattr, lremovexattr, fremovexattr): Likewise.
* linux/i386/syscallent.h (signal, mmap): Likewise.
* linux/ia64/syscallent.h (init_module, readv, writev,
sched_getscheduler): Likewise.
* linux/m68k/syscallent.h (signal, request_key): Likewise.
* linux/microblaze/syscallent.h (signal, clone, fstatfs64, vmsplice):
Likewise.
* linux/mips/syscallent-n32.h (getpgid, statfs, fstatfs, init_module,
delete_module): Likewise.
* linux/mips/syscallent-n64.h (getpgid, statfs, fstatfs, init_module,
delete_module): Likewise.
* linux/mips/syscallent-o32.h (signal, statfs, fstatfs, ioperm,
fstatfs64): Likewise.
* linux/powerpc/syscallent.h (signal, spu_run, spu_create): Likewise.
* linux/powerpc64/syscallent.h (signal, pread64, pwrite64, readahead,
fadvise64, lookup_dcookie, spu_run, spu_create, sync_file_range2,
fallocate, preadv, pwritev, fanotify_mark): Likewise.
* linux/s390/syscallent.h (signal, mmap, lookup_dcookie, ipc): Likewise.
* linux/s390x/syscallent.h (signal, ipc): Likewise.
* linux/sh/syscallent.h (signal, ipc, munlockall, fstatfs64, vmsplice):
Likewise.
* linux/sh64/syscallent.h (signal, ipc, msgrcv, msgctl, shmat, shmdt,
shmctl, fstatfs64, vmsplice): Likewise.
* linux/sparc/syscallent.h (ptrace, dup, signal, ipc): Likewise.
* linux/sparc64/syscallent.h (ptrace, dup, signal, pread64, pwrite64,
readahead, lookup_dcookie, fadvise64, fadvise64_64, ipc,
sync_file_range, fallocate, preadv, pwritev, fanotify_mark): Likewise.
* linux/x32/syscallent.h (64:recvmsg): Likewise.
* linux/xtensa/syscallent.h (mremap, futex, reboot, init_module,
delete_module, request_key, getcpu, ioprio_set, ioprio_get, utimensat,
futimesat, fchmodat, faccessat): Likewise.
* NEWS: Mention this fix.

23 files changed:
NEWS
linux/aarch64/syscallent.h
linux/alpha/syscallent.h
linux/arm/syscallent.h
linux/bfin/syscallent.h
linux/hppa/syscallent.h
linux/i386/syscallent.h
linux/ia64/syscallent.h
linux/m68k/syscallent.h
linux/microblaze/syscallent.h
linux/mips/syscallent-n32.h
linux/mips/syscallent-n64.h
linux/mips/syscallent-o32.h
linux/powerpc/syscallent.h
linux/powerpc64/syscallent.h
linux/s390/syscallent.h
linux/s390x/syscallent.h
linux/sh/syscallent.h
linux/sh64/syscallent.h
linux/sparc/syscallent.h
linux/sparc64/syscallent.h
linux/x32/syscallent.h
linux/xtensa/syscallent.h

diff --git a/NEWS b/NEWS
index 186c351fdd17f80b8bd0d31c935b49d3d1b152da..0fae1ea18b4df866e7129ec06bd7e7c158299d9c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -20,6 +20,8 @@ Noteworthy changes in release ?.?? (????-??-??)
   * Fixed decoding and dumping of readv syscall in case of short read.
   * Fixed dumping of recvmsg and recvmmsg syscalls in case of short read.
   * Fixed decoding of mincore syscall's last argument.
+  * Fixed remaining errors in mapping between syscall numbers and numbers
+    of syscall arguments.
 
 Noteworthy changes in release 4.11 (2015-12-21)
 ===============================================
index 286e0cb37ec987f6aa88e847cd25481d1ff116cd..6b23f8c22bcd4fbfa5390a7ec8c16480bc8f4147 100644 (file)
@@ -62,7 +62,7 @@
 [1070] = { 2,  0,              SEN(ustat),             "ustat"         },
 [1071] = { 0,  TP,             SEN(vfork),             "vfork"         },
 [1072] = { 4,  TP,             SEN(wait4),             "wait4"         },
-[1073] = { 6,  TN,             SEN(recv),              "recv"          },
+[1073] = { 4,  TN,             SEN(recv),              "recv"          },
 [1074] = { 4,  TN,             SEN(send),              "send"          },
 [1075] = { 2,  0,              SEN(bdflush),           "bdflush"       },
 [1076] = { 1,  TF,             SEN(umount),            "umount"        },
index 6cd81eab65b9f92f9ff2c76b56f6c03aa1ecaf5b..1bddd2448abea1b44533767e0cd5e02b91ffc620 100644 (file)
 [229 ... 232] = { },
 [233] = { 1,   0,              SEN(getpgid),                   "getpgid"               },
 [234] = { 1,   0,              SEN(getsid),                    "getsid"                },
-[235] = { 5,   TS,             SEN(sigaltstack),               "sigaltstack"           },
+[235] = { 2,   TS,             SEN(sigaltstack),               "sigaltstack"           },
 [236] = { 5,   0,              SEN(printargs),                 "osf_waitid"            }, /*not implemented */
 [237] = { 5,   0,              SEN(printargs),                 "osf_priocntlset"       }, /*not implemented */
 [238] = { 5,   0,              SEN(printargs),                 "osf_sigsendset"        }, /*not implemented */
 [304] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [305] = { 3,   TD,             SEN(getdents),                  "getdents"              },
 [306] = { 2,   0,              SEN(create_module),             "create_module"         },
-[307] = { 4,   0,              SEN(init_module),               "init_module"           },
+[307] = { 3,   0,              SEN(init_module),               "init_module"           },
 [308] = { 2,   0,              SEN(delete_module),             "delete_module"         },
 [309] = { 1,   0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
 [310] = { 3,   0,              SEN(syslog),                    "syslog"                },
 [330] = { 2,   0,              SEN(sched_setparam),            "sched_setparam"        },
 [331] = { 2,   0,              SEN(sched_getparam),            "sched_getparam"        },
 [332] = { 3,   0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
-[333] = { 2,   0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
+[333] = { 1,   0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
 [334] = { 0,   0,              SEN(sched_yield),               "sched_yield"           },
 [335] = { 1,   0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
 [336] = { 1,   0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
 [357] = { 2,   TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
 [358] = { 5,   TD,             SEN(select),                    "select"                },
 [359] = { 2,   0,              SEN(gettimeofday),              "gettimeofday"          },
-[360] = { 3,   0,              SEN(settimeofday),              "settimeofday"          },
+[360] = { 2,   0,              SEN(settimeofday),              "settimeofday"          },
 [361] = { 2,   0,              SEN(getitimer),                 "getitimer"             },
 [362] = { 3,   0,              SEN(setitimer),                 "setitimer"             },
 [363] = { 2,   TF,             SEN(utimes),                    "utimes"                },
index 0a24caed6524d22f3dd346cfcf6867c412a17b7d..2433df8f9240c5eee381e2fd17fc2eb1f80fbe06 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [268] = { 3,   TS,             SEN(tgkill),                    "tgkill"                },
 [269] = { 2,   TF,             SEN(utimes),                    "utimes"                },
 [270] = { 6,   TD,             SEN(fadvise64_64),              "fadvise64_64"          },
-[271] = { 5,   0,              SEN(printargs),                 "pciconfig_iobase"      },
+[271] = { 3,   0,              SEN(printargs),                 "pciconfig_iobase"      },
 [272] = { 5,   0,              SEN(printargs),                 "pciconfig_read"        },
 [273] = { 5,   0,              SEN(printargs),                 "pciconfig_write"       },
 [274] = { 4,   0,              SEN(mq_open),                   "mq_open"               },
 [299] = { 3,   TI,             SEN(semget),                    "semget"                },
 [300] = { 4,   TI,             SEN(semctl),                    "semctl"                },
 [301] = { 4,   TI,             SEN(msgsnd),                    "msgsnd"                },
-[302] = { 4,   TI,             SEN(msgrcv),                    "msgrcv"                },
+[302] = { 5,   TI,             SEN(msgrcv),                    "msgrcv"                },
 [303] = { 2,   TI,             SEN(msgget),                    "msgget"                },
-[304] = { 4,   TI,             SEN(msgctl),                    "msgctl"                },
-[305] = { 4,   TI|TM|SI,       SEN(shmat),                     "shmat"                 },
-[306] = { 4,   TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
+[304] = { 3,   TI,             SEN(msgctl),                    "msgctl"                },
+[305] = { 3,   TI|TM|SI,       SEN(shmat),                     "shmat"                 },
+[306] = { 1,   TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
 [307] = { 3,   TI,             SEN(shmget),                    "shmget"                },
-[308] = { 4,   TI,             SEN(shmctl),                    "shmctl"                },
+[308] = { 3,   TI,             SEN(shmctl),                    "shmctl"                },
 [309] = { 5,   0,              SEN(add_key),                   "add_key"               },
 [310] = { 4,   0,              SEN(request_key),               "request_key"           },
 [311] = { 5,   0,              SEN(keyctl),                    "keyctl"                },
-[312] = { 5,   TI,             SEN(semtimedop),                "semtimedop"            },
+[312] = { 4,   TI,             SEN(semtimedop),                "semtimedop"            },
 [313] = { 5,   0,              SEN(vserver),                   "vserver"               },
 [314] = { 3,   0,              SEN(ioprio_set),                "ioprio_set"            },
 [315] = { 2,   0,              SEN(ioprio_get),                "ioprio_get"            },
 [317] = { 3,   TD,             SEN(inotify_add_watch),         "inotify_add_watch"     },
 [318] = { 2,   TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
 [319] = { 6,   TM,             SEN(mbind),                     "mbind"                 },
-[320] = { 3,   TM,             SEN(get_mempolicy),             "get_mempolicy"         },
-[321] = { 5,   TM,             SEN(set_mempolicy),             "set_mempolicy"         },
+[320] = { 5,   TM,             SEN(get_mempolicy),             "get_mempolicy"         },
+[321] = { 3,   TM,             SEN(set_mempolicy),             "set_mempolicy"         },
 [322] = { 4,   TD|TF,          SEN(openat),                    "openat"                },
 [323] = { 3,   TD|TF,          SEN(mkdirat),                   "mkdirat"               },
 [324] = { 4,   TD|TF,          SEN(mknodat),                   "mknodat"               },
 [347] = { 4,   0,              SEN(kexec_load),                "kexec_load"            },
 [348] = { 4,   TD|TF,          SEN(utimensat),                 "utimensat"             },
 [349] = { 3,   TD|TS,          SEN(signalfd),                  "signalfd"              },
-[350] = { 4,   TD,             SEN(timerfd_create),            "timerfd_create"        },
+[350] = { 2,   TD,             SEN(timerfd_create),            "timerfd_create"        },
 [351] = { 1,   TD,             SEN(eventfd),                   "eventfd"               },
 [352] = { 6,   TD,             SEN(fallocate),                 "fallocate"             },
 [353] = { 4,   TD,             SEN(timerfd_settime),           "timerfd_settime"       },
index f338704509e8993a02a018188482b993f58aef9e..dd99fa6004677b17d8db02c76ef1763c68e6aad7 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [126] = { 3,   TS,             SEN(sigprocmask),               "sigprocmask"           },
 [127] = { 2,   0,              SEN(create_module),             "create_module"         },
 [128] = { 3,   0,              SEN(init_module),               "init_module"           },
-[129] = { 1,   0,              SEN(delete_module),             "delete_module"         },
+[129] = { 2,   0,              SEN(delete_module),             "delete_module"         },
 [130] = { 1,   0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
 [131] = { 4,   TF,             SEN(quotactl),                  "quotactl"              },
 [132] = { 1,   0,              SEN(getpgid),                   "getpgid"               },
index 104dbb59ba7ebe90d6721eb7b210f2d98579b89b..433e16427216be27e4ba5c9f9b4c4602d970df23 100644 (file)
 [125] = { 3,   TM|SI,          SEN(mprotect),                  "mprotect"              },
 [126] = { 3,   TS,             SEN(sigprocmask),               "sigprocmask"           },
 [127] = { 2,   0,              SEN(create_module),             "create_module"         },
-[128] = { 4,   0,              SEN(init_module),               "init_module"           },
+[128] = { 3,   0,              SEN(init_module),               "init_module"           },
 [129] = { 2,   0,              SEN(delete_module),             "delete_module"         },
 [130] = { 1,   0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
 [131] = { 4,   TF,             SEN(quotactl),                  "quotactl"              },
 [150] = { 2,   TM,             SEN(mlock),                     "mlock"                 },
 [151] = { 2,   TM,             SEN(munlock),                   "munlock"               },
 [152] = { 1,   TM,             SEN(mlockall),                  "mlockall"              },
-[153] = { 1,   TM,             SEN(munlockall),                "munlockall"            },
+[153] = { 0,   TM,             SEN(munlockall),                "munlockall"            },
 [154] = { 2,   0,              SEN(sched_setparam),            "sched_setparam"        },
 [155] = { 2,   0,              SEN(sched_getparam),            "sched_getparam"        },
 [156] = { 3,   0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
-[157] = { 2,   0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
+[157] = { 1,   0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
 [158] = { 0,   0,              SEN(sched_yield),               "sched_yield"           },
 [159] = { 1,   0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
 [160] = { 1,   0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
 [216] = { 1,   0,              SEN(io_destroy),                "io_destroy"            },
 [217] = { 5,   0,              SEN(io_getevents),              "io_getevents"          },
 [218] = { 3,   0,              SEN(io_submit),                 "io_submit"             },
-[219] = { 4,   0,              SEN(io_cancel),                 "io_cancel"             },
+[219] = { 3,   0,              SEN(io_cancel),                 "io_cancel"             },
 [220] = { 5,   0,              SEN(printargs),                 "alloc_hugepages"       },
 [221] = { 1,   0,              SEN(printargs),                 "free_hugepages"        },
 [222] = { 1,   TP|SE,          SEN(exit),                      "exit_group"            },
 [234] = { 3,   0,              SEN(mq_getsetattr),             "mq_getsetattr"         },
 [235] = { 5,   TP,             SEN(waitid),                    "waitid"                },
 [236] = { 6,   TD,             SEN(fadvise64_64),              "fadvise64_64"          },
-[237] = { 5,   0,              SEN(set_tid_address),           "set_tid_address"       },
+[237] = { 1,   0,              SEN(set_tid_address),           "set_tid_address"       },
 [238] = { 5,   TF,             SEN(setxattr),                  "setxattr"              },
 [239] = { 5,   TF,             SEN(setxattr),                  "lsetxattr"             },
 [240] = { 5,   TD,             SEN(fsetxattr),                 "fsetxattr"             },
 [241] = { 4,   TF,             SEN(getxattr),                  "getxattr"              },
 [242] = { 4,   TF,             SEN(getxattr),                  "lgetxattr"             },
 [243] = { 4,   TD,             SEN(fgetxattr),                 "fgetxattr"             },
-[244] = { 5,   TF,             SEN(listxattr),                 "listxattr"             },
-[245] = { 5,   TF,             SEN(listxattr),                 "llistxattr"            },
-[246] = { 5,   TD,             SEN(flistxattr),                "flistxattr"            },
-[247] = { 5,   TF,             SEN(removexattr),               "removexattr"           },
-[248] = { 5,   TF,             SEN(removexattr),               "lremovexattr"          },
-[249] = { 5,   TD,             SEN(fremovexattr),              "fremovexattr"          },
+[244] = { 3,   TF,             SEN(listxattr),                 "listxattr"             },
+[245] = { 3,   TF,             SEN(listxattr),                 "llistxattr"            },
+[246] = { 3,   TD,             SEN(flistxattr),                "flistxattr"            },
+[247] = { 2,   TF,             SEN(removexattr),               "removexattr"           },
+[248] = { 2,   TF,             SEN(removexattr),               "lremovexattr"          },
+[249] = { 2,   TD,             SEN(fremovexattr),              "fremovexattr"          },
 [250] = { 3,   0,              SEN(timer_create),              "timer_create"          },
 [251] = { 4,   0,              SEN(timer_settime),             "timer_settime"         },
 [252] = { 2,   0,              SEN(timer_gettime),             "timer_gettime"         },
index db89215dacaadb98fdf647af89b113f4edff39fb..ee8d23ba1f88869581136d376d2833530d06da2f 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [ 87] = { 2,   TF,             SEN(swapon),                    "swapon"                },
 [ 88] = { 4,   0,              SEN(reboot),                    "reboot"                },
 [ 89] = { 3,   TD,             SEN(readdir),                   "readdir"               },
-[ 90] = { 6,   TD|TM|SI,       SEN(old_mmap),                  "mmap"                  },
+[ 90] = { 1,   TD|TM|SI,       SEN(old_mmap),                  "mmap"                  },
 [ 91] = { 2,   TM|SI,          SEN(munmap),                    "munmap"                },
 [ 92] = { 2,   TF,             SEN(truncate),                  "truncate"              },
 [ 93] = { 2,   TD,             SEN(ftruncate),                 "ftruncate"             },
index c2bf2a819f5e37a1fcc14b924ca241f8a4d20ced..6f75f1cae3583edd14cd09c4f2d550db9298fb12 100644 (file)
 [1130] = { 1,  0,              SEN(uname),                     "uname"                 },
 [1131] = { 1,  0,              SEN(adjtimex),                  "adjtimex"              },
 [1132] = { 2,  0,              SEN(create_module),             "create_module"         },
-[1133] = { 4,  0,              SEN(init_module),               "init_module"           },
+[1133] = { 3,  0,              SEN(init_module),               "init_module"           },
 [1134] = { 2,  0,              SEN(delete_module),             "delete_module"         },
 [1135] = { 1,  0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
 [1136] = { 5,  0,              SEN(query_module),              "query_module"          },
 [1143] = { 1,  NF,             SEN(setfsgid),                  "setfsgid"              },
 [1144] = { 3,  TD,             SEN(getdents),                  "getdents"              },
 [1145] = { 2,  TD,             SEN(flock),                     "flock"                 },
-[1146] = { 5,  TD,             SEN(readv),                     "readv"                 },
-[1147] = { 5,  TD,             SEN(writev),                    "writev"                },
+[1146] = { 3,  TD,             SEN(readv),                     "readv"                 },
+[1147] = { 3,  TD,             SEN(writev),                    "writev"                },
 [1148] = { 4,  TD,             SEN(pread),                     "pread64"               },
 [1149] = { 4,  TD,             SEN(pwrite),                    "pwrite64"              },
 [1150] = { 1,  0,              SEN(printargs),                 "_sysctl"               },
 [1159] = { 0,  TM,             SEN(munlockall),                "munlockall"            },
 [1160] = { 2,  0,              SEN(sched_getparam),            "sched_getparam"        },
 [1161] = { 2,  0,              SEN(sched_setparam),            "sched_setparam"        },
-[1162] = { 2,  0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
+[1162] = { 1,  0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
 [1163] = { 3,  0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
 [1164] = { 0,  0,              SEN(sched_yield),               "sched_yield"           },
 [1165] = { 1,  0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
index d6e0bf40cae8c504cb679595ed1bd8cf998ec03c..20288412047e56d1687c497a272150c81a269c5e 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [277] = { 5,   TP,             SEN(waitid),                    "waitid"                },
 [278] = { 5,   0,              SEN(vserver),                   "vserver"               },
 [279] = { 5,   0,              SEN(add_key),                   "add_key"               },
-[280] = { 5,   0,              SEN(request_key),               "request_key"           },
+[280] = { 4,   0,              SEN(request_key),               "request_key"           },
 [281] = { 5,   0,              SEN(keyctl),                    "keyctl"                },
 [282] = { 3,   0,              SEN(ioprio_set),                "ioprio_set"            },
 [283] = { 2,   0,              SEN(ioprio_get),                "ioprio_get"            },
index 7341e13bccfaf6e17ed30d654ef68462e8562552..482e2757b4b948270d5a87c1c9873ef0b5dc48c1 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [117] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [118] = { 1,   TD,             SEN(fsync),                     "fsync"                 },
 [119] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
-[120] = { 5,   TP,             SEN(clone),                     "clone"                 },
+[120] = { 6,   TP,             SEN(clone),                     "clone"                 },
 [121] = { 2,   0,              SEN(setdomainname),             "setdomainname"         },
 [122] = { 1,   0,              SEN(uname),                     "uname"                 },
 [123] = { 3,   0,              SEN(modify_ldt),                "modify_ldt"            },
 [266] = { 2,   0,              SEN(clock_getres),              "clock_getres"          },
 [267] = { 4,   0,              SEN(clock_nanosleep),           "clock_nanosleep"       },
 [268] = { 3,   TF,             SEN(statfs64),                  "statfs64"              },
-[269] = { 2,   TD,             SEN(fstatfs64),                 "fstatfs64"             },
+[269] = { 3,   TD,             SEN(fstatfs64),                 "fstatfs64"             },
 [270] = { 3,   TS,             SEN(tgkill),                    "tgkill"                },
 [271] = { 2,   TF,             SEN(utimes),                    "utimes"                },
 [272] = { 6,   TD,             SEN(fadvise64_64),              "fadvise64_64"          },
 [313] = { 6,   TD,             SEN(splice),                    "splice"                },
 [314] = { 6,   TD,             SEN(sync_file_range),           "sync_file_range"       },
 [315] = { 4,   TD,             SEN(tee),                       "tee"                   },
-[316] = { 5,   TD,             SEN(vmsplice),                  "vmsplice"              },
+[316] = { 4,   TD,             SEN(vmsplice),                  "vmsplice"              },
 [317] = { 6,   TM,             SEN(move_pages),                "move_pages"            },
 [318] = { 3,   0,              SEN(getcpu),                    "getcpu"                },
 [319] = { 6,   TD,             SEN(epoll_pwait),               "epoll_pwait"           },
index 1f6f0dd5bcdc2e6513e9c269d4a9b5dd42904612..81028f61d17ee1e2cb9da678a12847c3edf1851e 100644 (file)
 [6116] = { 3,  0,              SEN(getresuid),                 "getresuid"             },
 [6117] = { 3,  0,              SEN(setresgid),                 "setresgid"             },
 [6118] = { 3,  0,              SEN(getresgid),                 "getresgid"             },
-[6119] = { 0,  0,              SEN(getpgid),                   "getpgid"               },
+[6119] = { 1,  0,              SEN(getpgid),                   "getpgid"               },
 [6120] = { 1,  NF,             SEN(setfsuid),                  "setfsuid"              },
 [6121] = { 1,  NF,             SEN(setfsgid),                  "setfsgid"              },
 [6122] = { 1,  0,              SEN(getsid),                    "getsid"                },
 [6131] = { 3,  TF,             SEN(mknod),                     "mknod"                 },
 [6132] = { 1,  NF,             SEN(personality),               "personality"           },
 [6133] = { 2,  0,              SEN(ustat),                     "ustat"                 },
-[6134] = { 3,  TF,             SEN(statfs),                    "statfs"                },
-[6135] = { 3,  TD,             SEN(fstatfs),                   "fstatfs"               },
+[6134] = { 2,  TF,             SEN(statfs),                    "statfs"                },
+[6135] = { 2,  TD,             SEN(fstatfs),                   "fstatfs"               },
 [6136] = { 3,  0,              SEN(sysfs),                     "sysfs"                 },
 [6137] = { 2,  0,              SEN(getpriority),               "getpriority"           },
 [6138] = { 3,  0,              SEN(setpriority),               "setpriority"           },
 [6165] = { 2,  0,              SEN(sethostname),               "sethostname"           },
 [6166] = { 2,  0,              SEN(setdomainname),             "setdomainname"         },
 [6167] = { 2,  0,              SEN(create_module),             "create_module"         },
-[6168] = { 4,  0,              SEN(init_module),               "init_module"           },
-[6169] = { 1,  0,              SEN(delete_module),             "delete_module"         },
+[6168] = { 3,  0,              SEN(init_module),               "init_module"           },
+[6169] = { 2,  0,              SEN(delete_module),             "delete_module"         },
 [6170] = { 1,  0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
 [6171] = { 5,  0,              SEN(query_module),              "query_module"          },
 [6172] = { 4,  TF,             SEN(quotactl),                  "quotactl"              },
index 18c1a88a7b308e186a87c9f83b9cc062503fe329..3d3dc70d885fa92419c2c9728f5a4140c9c44cad 100644 (file)
 [5116] = { 3,  0,              SEN(getresuid),                 "getresuid"             },
 [5117] = { 3,  0,              SEN(setresgid),                 "setresgid"             },
 [5118] = { 3,  0,              SEN(getresgid),                 "getresgid"             },
-[5119] = { 0,  0,              SEN(getpgid),                   "getpgid"               },
+[5119] = { 1,  0,              SEN(getpgid),                   "getpgid"               },
 [5120] = { 1,  NF,             SEN(setfsuid),                  "setfsuid"              },
 [5121] = { 1,  NF,             SEN(setfsgid),                  "setfsgid"              },
 [5122] = { 1,  0,              SEN(getsid),                    "getsid"                },
 [5131] = { 3,  TF,             SEN(mknod),                     "mknod"                 },
 [5132] = { 1,  NF,             SEN(personality),               "personality"           },
 [5133] = { 2,  0,              SEN(ustat),                     "ustat"                 },
-[5134] = { 3,  TF,             SEN(statfs),                    "statfs"                },
-[5135] = { 3,  TD,             SEN(fstatfs),                   "fstatfs"               },
+[5134] = { 2,  TF,             SEN(statfs),                    "statfs"                },
+[5135] = { 2,  TD,             SEN(fstatfs),                   "fstatfs"               },
 [5136] = { 3,  0,              SEN(sysfs),                     "sysfs"                 },
 [5137] = { 2,  0,              SEN(getpriority),               "getpriority"           },
 [5138] = { 3,  0,              SEN(setpriority),               "setpriority"           },
 [5165] = { 2,  0,              SEN(sethostname),               "sethostname"           },
 [5166] = { 2,  0,              SEN(setdomainname),             "setdomainname"         },
 [5167] = { 2,  0,              SEN(create_module),             "create_module"         },
-[5168] = { 4,  0,              SEN(init_module),               "init_module"           },
-[5169] = { 1,  0,              SEN(delete_module),             "delete_module"         },
+[5168] = { 3,  0,              SEN(init_module),               "init_module"           },
+[5169] = { 2,  0,              SEN(delete_module),             "delete_module"         },
 [5170] = { 1,  0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
 [5171] = { 5,  0,              SEN(query_module),              "query_module"          },
 [5172] = { 4,  TF,             SEN(quotactl),                  "quotactl"              },
index 6e9113d186627337461a2999947cab8103b107b1..18ddc19b36b6e32eaf8c9ffdfcddba8e17ca1af5 100644 (file)
@@ -48,7 +48,7 @@
 [4045] = { 1,  TM|SI,          SEN(brk),                       "brk"                   },
 [4046] = { 1,  0,              SEN(setgid),                    "setgid"                },
 [4047] = { 0,  NF,             SEN(getgid),                    "getgid"                },
-[4048] = { 1,  TS,             SEN(signal),                    "signal"                },
+[4048] = { 2,  TS,             SEN(signal),                    "signal"                },
 [4049] = { 0,  NF,             SEN(geteuid),                   "geteuid"               },
 [4050] = { 0,  NF,             SEN(getegid),                   "getegid"               },
 [4051] = { 1,  TF,             SEN(acct),                      "acct"                  },
@@ -99,9 +99,9 @@
 [4096] = { 2,  0,              SEN(getpriority),               "getpriority"           },
 [4097] = { 3,  0,              SEN(setpriority),               "setpriority"           },
 [4098] = { 0,  0,              SEN(profil),                    "profil"                },
-[4099] = { 3,  TF,             SEN(statfs),                    "statfs"                },
-[4100] = { 3,  TD,             SEN(fstatfs),                   "fstatfs"               },
-[4101] = { 0,  0,              SEN(ioperm),                    "ioperm"                },
+[4099] = { 2,  TF,             SEN(statfs),                    "statfs"                },
+[4100] = { 2,  TD,             SEN(fstatfs),                   "fstatfs"               },
+[4101] = { 3,  0,              SEN(ioperm),                    "ioperm"                },
 [4102] = { 2,  TD,             SEN(socketcall),                "socketcall"            },
 [4103] = { 3,  0,              SEN(syslog),                    "syslog"                },
 [4104] = { 3,  0,              SEN(setitimer),                 "setitimer"             },
 [4253] = { 0,  0,              SEN(restart_syscall),           "restart_syscall"       },
 [4254] = { 7,  TD,             SEN(fadvise64_64),              "fadvise64"             },
 [4255] = { 3,  TF,             SEN(statfs64),                  "statfs64"              },
-[4256] = { 2,  TD,             SEN(fstatfs64),                 "fstatfs64"             },
+[4256] = { 3,  TD,             SEN(fstatfs64),                 "fstatfs64"             },
 [4257] = { 3,  0,              SEN(timer_create),              "timer_create"          },
 [4258] = { 4,  0,              SEN(timer_settime),             "timer_settime"         },
 [4259] = { 2,  0,              SEN(timer_gettime),             "timer_gettime"         },
index a0d973031f6d9a24ce9ccd387f8fdb29e21ee2b4..afbd602ba25f8c27c673b399ef00de407b68672c 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid),                    "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid),                    "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid),                   "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid),                   "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [275] = { 0,   TD,             SEN(inotify_init),              "inotify_init"          },
 [276] = { 3,   TD,             SEN(inotify_add_watch),         "inotify_add_watch"     },
 [277] = { 2,   TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
-[278] = { 5,   0,              SEN(printargs),                 "spu_run"               },
-[279] = { 5,   0,              SEN(printargs),                 "spu_create"            },
+[278] = { 3,   0,              SEN(printargs),                 "spu_run"               },
+[279] = { 4,   0,              SEN(printargs),                 "spu_create"            },
 [280] = { 6,   TD,             SEN(pselect6),                  "pselect6"              },
 [281] = { 5,   TD,             SEN(ppoll),                     "ppoll"                 },
 [282] = { 1,   TP,             SEN(unshare),                   "unshare"               },
index 0bf55ea37381bd98872a7bc5657a670bd744ead8..486b3aea75bd888013f152373b8a96e58c41248f 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid),                    "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid),                    "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid),                   "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid),                   "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [176] = { 4,   TS,             SEN(rt_sigtimedwait),           "rt_sigtimedwait"       },
 [177] = { 3,   TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
 [178] = { 2,   TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
-[179] = { 6,   TD,             SEN(pread),                     "pread64"               },
-[180] = { 6,   TD,             SEN(pwrite),                    "pwrite64"              },
+[179] = { 4,   TD,             SEN(pread),                     "pread64"               },
+[180] = { 4,   TD,             SEN(pwrite),                    "pwrite64"              },
 [181] = { 3,   TF,             SEN(chown),                     "chown"                 },
 [182] = { 2,   TF,             SEN(getcwd),                    "getcwd"                },
 [183] = { 2,   0,              SEN(capget),                    "capget"                },
 [188] = { 5,   TN,             SEN(putpmsg),                   "putpmsg"               },
 [189] = { 0,   TP,             SEN(vfork),                     "vfork"                 },
 [190] = { 2,   0,              SEN(getrlimit),                 "ugetrlimit"            },
-[191] = { 5,   TD,             SEN(readahead),                 "readahead"             },
+[191] = { 3,   TD,             SEN(readahead),                 "readahead"             },
 [192 ... 197] = { },
 [198] = { 5,   0,              SEN(printargs),                 "pciconfig_read"        },
 [199] = { 5,   0,              SEN(printargs),                 "pciconfig_write"       },
 [230] = { 3,   0,              SEN(io_submit),                 "io_submit"             },
 [231] = { 3,   0,              SEN(io_cancel),                 "io_cancel"             },
 [232] = { 1,   0,              SEN(set_tid_address),           "set_tid_address"       },
-[233] = { 6,   TD,             SEN(fadvise64),                 "fadvise64"             },
+[233] = { 4,   TD,             SEN(fadvise64),                 "fadvise64"             },
 [234] = { 1,   TP|SE,          SEN(exit),                      "exit_group"            },
-[235] = { 4,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
+[235] = { 3,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
 [236] = { 1,   TD,             SEN(epoll_create),              "epoll_create"          },
 [237] = { 4,   TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
 [238] = { 4,   TD,             SEN(epoll_wait),                "epoll_wait"            },
 [275] = { 0,   TD,             SEN(inotify_init),              "inotify_init"          },
 [276] = { 3,   TD,             SEN(inotify_add_watch),         "inotify_add_watch"     },
 [277] = { 2,   TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
-[278] = { 5,   0,              SEN(printargs),                 "spu_run"               },
-[279] = { 5,   0,              SEN(printargs),                 "spu_create"            },
+[278] = { 3,   0,              SEN(printargs),                 "spu_run"               },
+[279] = { 4,   0,              SEN(printargs),                 "spu_create"            },
 [280] = { 6,   TD,             SEN(pselect6),                  "pselect6"              },
 [281] = { 5,   TD,             SEN(ppoll),                     "ppoll"                 },
 [282] = { 1,   TP,             SEN(unshare),                   "unshare"               },
 [305] = { 3,   TD|TS,          SEN(signalfd),                  "signalfd"              },
 [306] = { 2,   TD,             SEN(timerfd_create),            "timerfd_create"        },
 [307] = { 1,   TD,             SEN(eventfd),                   "eventfd"               },
-[308] = { 6,   TD,             SEN(sync_file_range2),          "sync_file_range2"      },
-[309] = { 6,   TD,             SEN(fallocate),                 "fallocate"             },
+[308] = { 4,   TD,             SEN(sync_file_range2),          "sync_file_range2"      },
+[309] = { 4,   TD,             SEN(fallocate),                 "fallocate"             },
 [310] = { 3,   0,              SEN(subpage_prot),              "subpage_prot"          },
 [311] = { 4,   TD,             SEN(timerfd_settime),           "timerfd_settime"       },
 [312] = { 2,   TD,             SEN(timerfd_gettime),           "timerfd_gettime"       },
 [317] = { 2,   TD,             SEN(pipe2),                     "pipe2"                 },
 [318] = { 1,   TD,             SEN(inotify_init1),             "inotify_init1"         },
 [319] = { 5,   TD,             SEN(perf_event_open),           "perf_event_open"       },
-[320] = { 5,   TD,             SEN(preadv),                    "preadv"                },
-[321] = { 5,   TD,             SEN(pwritev),                   "pwritev"               },
+[320] = { 4,   TD,             SEN(preadv),                    "preadv"                },
+[321] = { 4,   TD,             SEN(pwritev),                   "pwritev"               },
 [322] = { 4,   TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
 [323] = { 2,   TD,             SEN(fanotify_init),             "fanotify_init"         },
-[324] = { 6,   TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
+[324] = { 5,   TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
 [325] = { 4,   0,              SEN(prlimit64),                 "prlimit64"             },
 [326] = { 3,   TN,             SEN(socket),                    "socket"                },
 [327] = { 3,   TN,             SEN(bind),                      "bind"                  },
index 74fce8966008b108a5732bf4b88bd437a36c6ec2..1cf2d22540d8ee84baf450dcd2661bd51df4e549 100644 (file)
@@ -76,7 +76,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [ 87] = { 2,   TF,             SEN(swapon),                    "swapon"                },
 [ 88] = { 4,   0,              SEN(reboot),                    "reboot"                },
 [ 89] = { 3,   TD,             SEN(readdir),                   "readdir"               },
-[ 90] = { 6,   TD|TM|SI,       SEN(old_mmap),                  "mmap"                  },
+[ 90] = { 1,   TD|TM|SI,       SEN(old_mmap),                  "mmap"                  },
 [ 91] = { 2,   TM|SI,          SEN(munmap),                    "munmap"                },
 [ 92] = { 2,   TF,             SEN(truncate),                  "truncate"              },
 [ 93] = { 2,   TD,             SEN(ftruncate),                 "ftruncate"             },
 [107] = { 2,   TF,             SEN(lstat),                     "lstat"                 },
 [108] = { 2,   TD,             SEN(fstat),                     "fstat"                 },
 [109] = { },
-[110] = { 3,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
+[110] = { 4,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
 [111] = { 0,   0,              SEN(vhangup),                   "vhangup"               },
 [112] = { 0,   0,              SEN(idle),                      "idle"                  },
 [113] = { },
 [114] = { 4,   TP,             SEN(wait4),                     "wait4"                 },
 [115] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [116] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[117] = { 5,   TI,             SEN(ipc),                       "ipc"                   },
+[117] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [118] = { 1,   TD,             SEN(fsync),                     "fsync"                 },
 [119] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
 [120] = { 5,   TP,             SEN(clone),                     "clone"                 },
index e29a299c1e5f3c1b17fc300c0e4eb0565ed75aad..4374d8367dae199199453e5750e944eea6f920d7 100644 (file)
@@ -75,7 +75,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { },
 [ 47] = { },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { },
 [ 50] = { },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [114] = { 4,   TP,             SEN(wait4),                     "wait4"                 },
 [115] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [116] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[117] = { 5,   TI,             SEN(ipc),                       "ipc"                   },
+[117] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [118] = { 1,   TD,             SEN(fsync),                     "fsync"                 },
 [119] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
 [120] = { 5,   TP,             SEN(clone),                     "clone"                 },
index 7eea1a07b815d895dffbd30a15076b7eaaef7818..95b1b59929fe1df8ca5c5fdb233b7e4f363acbfb 100644 (file)
@@ -76,7 +76,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [114] = { 4,   TP,             SEN(wait4),                     "wait4"                 },
 [115] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [116] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[117] = { 5,   TI,             SEN(ipc),                       "ipc"                   },
+[117] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [118] = { 1,   TD,             SEN(fsync),                     "fsync"                 },
 [119] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
 [120] = { 5,   TP,             SEN(clone),                     "clone"                 },
 [150] = { 2,   TM,             SEN(mlock),                     "mlock"                 },
 [151] = { 2,   TM,             SEN(munlock),                   "munlock"               },
 [152] = { 1,   TM,             SEN(mlockall),                  "mlockall"              },
-[153] = { 1,   TM,             SEN(munlockall),                "munlockall"            },
+[153] = { 0,   TM,             SEN(munlockall),                "munlockall"            },
 [154] = { 2,   0,              SEN(sched_setparam),            "sched_setparam"        },
 [155] = { 2,   0,              SEN(sched_getparam),            "sched_getparam"        },
 [156] = { 3,   0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
 [266] = { 2,   0,              SEN(clock_getres),              "clock_getres"          },
 [267] = { 4,   0,              SEN(clock_nanosleep),           "clock_nanosleep"       },
 [268] = { 3,   TF,             SEN(statfs64),                  "statfs64"              },
-[269] = { 2,   TD,             SEN(fstatfs64),                 "fstatfs64"             },
+[269] = { 3,   TD,             SEN(fstatfs64),                 "fstatfs64"             },
 [270] = { 3,   TS,             SEN(tgkill),                    "tgkill"                },
 [271] = { 2,   TF,             SEN(utimes),                    "utimes"                },
 [272] = { 6,   TD,             SEN(fadvise64_64),              "fadvise64_64"          },
 [313] = { 6,   TD,             SEN(splice),                    "splice"                },
 [314] = { 6,   TD,             SEN(sync_file_range),           "sync_file_range"       },
 [315] = { 4,   TD,             SEN(tee),                       "tee"                   },
-[316] = { 5,   TD,             SEN(vmsplice),                  "vmsplice"              },
+[316] = { 4,   TD,             SEN(vmsplice),                  "vmsplice"              },
 [317] = { 6,   TM,             SEN(move_pages),                "move_pages"            },
 [318] = { 3,   0,              SEN(getcpu),                    "getcpu"                },
 [319] = { 6,   TD,             SEN(epoll_pwait),               "epoll_pwait"           },
index 5ec1647b42cc1bc4ad97c6cca228caf5b8d82952..0f9ad1a53a70370e2f623ad375c1a3546af9e8b6 100644 (file)
@@ -74,7 +74,7 @@
 [ 45] = { 1,   TM|SI,          SEN(brk),                       "brk"                   },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [114] = { 4,   TP,             SEN(wait4),                     "wait4"                 },
 [115] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [116] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[117] = { 5,   TI,             SEN(ipc),                       "ipc"                   },
+[117] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [118] = { 1,   TD,             SEN(fsync),                     "fsync"                 },
 [119] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
 [120] = { 5,   TP,             SEN(clone),                     "clone"                 },
 [238] = { 3,   TI,             SEN(semget),                    "semget"                },
 [239] = { 4,   TI,             SEN(semctl),                    "semctl"                },
 [240] = { 4,   TI,             SEN(msgsnd),                    "msgsnd"                },
-[241] = { 4,   TI,             SEN(msgrcv),                    "msgrcv"                },
+[241] = { 5,   TI,             SEN(msgrcv),                    "msgrcv"                },
 [242] = { 2,   TI,             SEN(msgget),                    "msgget"                },
-[243] = { 4,   TI,             SEN(msgctl),                    "msgctl"                },
-[244] = { 4,   TI|TM|SI,       SEN(shmat),                     "shmat"                 },
-[245] = { 4,   TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
+[243] = { 3,   TI,             SEN(msgctl),                    "msgctl"                },
+[244] = { 3,   TI|TM|SI,       SEN(shmat),                     "shmat"                 },
+[245] = { 1,   TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
 [246] = { 3,   TI,             SEN(shmget),                    "shmget"                },
-[247] = { 4,   TI,             SEN(shmctl),                    "shmctl"                },
+[247] = { 3,   TI,             SEN(shmctl),                    "shmctl"                },
 [248] = { 3,   TD,             SEN(getdents64),                "getdents64"            },
 [249] = { 3,   TD,             SEN(fcntl64),                   "fcntl64"               },
 [250 ... 251] = { },
 [294] = { 2,   0,              SEN(clock_getres),              "clock_getres"          },
 [295] = { 4,   0,              SEN(clock_nanosleep),           "clock_nanosleep"       },
 [296] = { 3,   TF,             SEN(statfs64),                  "statfs64"              },
-[297] = { 2,   TD,             SEN(fstatfs64),                 "fstatfs64"             },
+[297] = { 3,   TD,             SEN(fstatfs64),                 "fstatfs64"             },
 [298] = { 3,   TS,             SEN(tgkill),                    "tgkill"                },
 [299] = { 2,   TF,             SEN(utimes),                    "utimes"                },
 [300] = { 4,   TD,             SEN(fadvise64),                 "fadvise64_64"          },
 [341] = { 6,   TD,             SEN(splice),                    "splice"                },
 [342] = { 4,   TD,             SEN(sync_file_range),           "sync_file_range"       },
 [343] = { 4,   TD,             SEN(tee),                       "tee"                   },
-[344] = { 5,   TD,             SEN(vmsplice),                  "vmsplice"              },
+[344] = { 4,   TD,             SEN(vmsplice),                  "vmsplice"              },
 [345] = { 6,   TM,             SEN(move_pages),                "move_pages"            },
 [346] = { 3,   0,              SEN(getcpu),                    "getcpu"                },
 [347] = { 6,   TD,             SEN(epoll_pwait),               "epoll_pwait"           },
index 69c886ec0011daf8a2dac1797a06fcc7b928b239..d40037175ceb92fe46e3740928b700ecc91ab6d4 100644 (file)
@@ -24,7 +24,7 @@
 [ 23] = { 1,   0,              SEN(setuid16),                  "setuid"                },
 [ 24] = { 0,   NF,             SEN(getuid16),                  "getuid"                },
 [ 25] = { 4,   TD,             SEN(vmsplice),                  "vmsplice"              },
-[ 26] = { 5,   0,              SEN(ptrace),                    "ptrace"                },
+[ 26] = { 4,   0,              SEN(ptrace),                    "ptrace"                },
 [ 27] = { 1,   0,              SEN(alarm),                     "alarm"                 },
 [ 28] = { 2,   TS,             SEN(sigaltstack),               "sigaltstack"           },
 [ 29] = { 0,   TS,             SEN(pause),                     "pause"                 },
 [ 38] = { 2,   TF,             SEN(stat),                      "stat"                  },
 [ 39] = { 4,   TD|TN,          SEN(sendfile),                  "sendfile"              },
 [ 40] = { 2,   TF,             SEN(lstat),                     "lstat"                 },
-[ 41] = { 2,   TD,             SEN(dup),                       "dup"                   },
+[ 41] = { 1,   TD,             SEN(dup),                       "dup"                   },
 [ 42] = { 0,   TD,             SEN(pipe),                      "pipe"                  },
 [ 43] = { 1,   0,              SEN(times),                     "times"                 },
 [ 44] = { 0,   NF,             SEN(getuid),                    "getuid32"              },
 [ 45] = { 2,   TF,             SEN(umount2),                   "umount2"               },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
 [212] = { 3,   TP,             SEN(waitpid),                   "waitpid"               },
 [213] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [214] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[215] = { 5,   TI,             SEN(ipc),                       "ipc"                   },
+[215] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [216] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
 [217] = { 5,   TP,             SEN(clone),                     "clone"                 },
 [218] = { 2,   0,              SEN(ioprio_get),                "ioprio_get"            },
index 13ee2fc4950940d0e70f2422e5d632d75493e9a2..c49a4da84aac1f40493215466dddd2f3d54c672a 100644 (file)
@@ -24,7 +24,7 @@
 [ 23] = { 1,   0,              SEN(setuid16),                  "setuid"                },
 [ 24] = { 0,   NF,             SEN(getuid16),                  "getuid"                },
 [ 25] = { 4,   TD,             SEN(vmsplice),                  "vmsplice"              },
-[ 26] = { 5,   0,              SEN(ptrace),                    "ptrace"                },
+[ 26] = { 4,   0,              SEN(ptrace),                    "ptrace"                },
 [ 27] = { 1,   0,              SEN(alarm),                     "alarm"                 },
 [ 28] = { 2,   TS,             SEN(sigaltstack),               "sigaltstack"           },
 [ 29] = { 0,   TS,             SEN(pause),                     "pause"                 },
 [ 38] = { 2,   TF,             SEN(stat),                      "stat"                  },
 [ 39] = { 4,   TD|TN,          SEN(sendfile),                  "sendfile"              },
 [ 40] = { 2,   TF,             SEN(lstat),                     "lstat"                 },
-[ 41] = { 2,   TD,             SEN(dup),                       "dup"                   },
+[ 41] = { 1,   TD,             SEN(dup),                       "dup"                   },
 [ 42] = { 0,   TD,             SEN(pipe),                      "pipe"                  },
 [ 43] = { 1,   0,              SEN(times),                     "times"                 },
 [ 44] = { },
 [ 45] = { 2,   TF,             SEN(umount2),                   "umount2"               },
 [ 46] = { 1,   0,              SEN(setgid16),                  "setgid"                },
 [ 47] = { 0,   NF,             SEN(getgid16),                  "getgid"                },
-[ 48] = { 3,   TS,             SEN(signal),                    "signal"                },
+[ 48] = { 2,   TS,             SEN(signal),                    "signal"                },
 [ 49] = { 0,   NF,             SEN(geteuid16),                 "geteuid"               },
 [ 50] = { 0,   NF,             SEN(getegid16),                 "getegid"               },
 [ 51] = { 1,   TF,             SEN(acct),                      "acct"                  },
@@ -64,8 +64,8 @@
 [ 64] = { 0,   0,              SEN(getpagesize),               "getpagesize"           },
 [ 65] = { 3,   TM,             SEN(msync),                     "msync"                 },
 [ 66] = { 0,   TP,             SEN(vfork),                     "vfork"                 },
-[ 67] = { 5,   TD,             SEN(pread),                     "pread64"               },
-[ 68] = { 5,   TD,             SEN(pwrite),                    "pwrite64"              },
+[ 67] = { 4,   TD,             SEN(pread),                     "pread64"               },
+[ 68] = { 4,   TD,             SEN(pwrite),                    "pwrite64"              },
 [ 69 ... 70] = { },
 [ 71] = { 6,   TD|TM|SI,       SEN(mmap),                      "mmap"                  },
 [ 72] = { },
 [202] = { 2,   TF,             SEN(lstat),                     "oldlstat"              },
 [203] = { 1,   TF,             SEN(uselib),                    "uselib"                },
 [204] = { 3,   TD,             SEN(readdir),                   "readdir"               },
-[205] = { 4,   TD,             SEN(readahead),                 "readahead"             },
+[205] = { 3,   TD,             SEN(readahead),                 "readahead"             },
 [206] = { 2,   TD,             SEN(socketcall),                "socketcall"            },
 [207] = { 3,   0,              SEN(syslog),                    "syslog"                },
-[208] = { 4,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
-[209] = { 5,   TD,             SEN(fadvise64),                 "fadvise64"             },
-[210] = { 6,   TD,             SEN(fadvise64_64),              "fadvise64_64"          },
+[208] = { 3,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
+[209] = { 4,   TD,             SEN(fadvise64),                 "fadvise64"             },
+[210] = { 4,   TD,             SEN(fadvise64),                 "fadvise64_64"          },
 [211] = { 3,   TS,             SEN(tgkill),                    "tgkill"                },
 [212] = { 3,   TP,             SEN(waitpid),                   "waitpid"               },
 [213] = { 1,   TF,             SEN(swapoff),                   "swapoff"               },
 [214] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[215] = { 5,   TI,             SEN(ipc),                       "ipc"                   },
+[215] = { 6,   TI,             SEN(ipc),                       "ipc"                   },
 [216] = { 0,   TS,             SEN(sigreturn),                 "sigreturn"             },
 [217] = { 5,   TP,             SEN(clone),                     "clone"                 },
 [218] = { 2,   0,              SEN(ioprio_get),                "ioprio_get"            },
 [252] = { 1,   0,              SEN(getsid),                    "getsid"                },
 [253] = { 1,   TD,             SEN(fdatasync),                 "fdatasync"             },
 [254] = { 3,   0,              SEN(nfsservctl),                "nfsservctl"            },
-[255] = { 6,   TD,             SEN(sync_file_range),           "sync_file_range"       },
+[255] = { 4,   TD,             SEN(sync_file_range),           "sync_file_range"       },
 [256] = { 2,   0,              SEN(clock_settime),             "clock_settime"         },
 [257] = { 2,   0,              SEN(clock_gettime),             "clock_gettime"         },
 [258] = { 2,   0,              SEN(clock_getres),              "clock_getres"          },
 [311] = { 3,   TD|TS,          SEN(signalfd),                  "signalfd"              },
 [312] = { 2,   TD,             SEN(timerfd_create),            "timerfd_create"        },
 [313] = { 1,   TD,             SEN(eventfd),                   "eventfd"               },
-[314] = { 6,   TD,             SEN(fallocate),                 "fallocate"             },
+[314] = { 4,   TD,             SEN(fallocate),                 "fallocate"             },
 [315] = { 4,   TD,             SEN(timerfd_settime),           "timerfd_settime"       },
 [316] = { 2,   TD,             SEN(timerfd_gettime),           "timerfd_gettime"       },
 [317] = { 4,   TD|TS,          SEN(signalfd4),                 "signalfd4"             },
 [321] = { 2,   TD,             SEN(pipe2),                     "pipe2"                 },
 [322] = { 1,   TD,             SEN(inotify_init1),             "inotify_init1"         },
 [323] = { 4,   TN,             SEN(accept4),                   "accept4"               },
-[324] = { 5,   TD,             SEN(preadv),                    "preadv"                },
-[325] = { 5,   TD,             SEN(pwritev),                   "pwritev"               },
+[324] = { 4,   TD,             SEN(preadv),                    "preadv"                },
+[325] = { 4,   TD,             SEN(pwritev),                   "pwritev"               },
 [326] = { 4,   TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
 [327] = { 5,   TD,             SEN(perf_event_open),           "perf_event_open"       },
 [328] = { 5,   TN,             SEN(recvmmsg),                  "recvmmsg"              },
 [329] = { 2,   TD,             SEN(fanotify_init),             "fanotify_init"         },
-[330] = { 6,   TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
+[330] = { 5,   TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
 [331] = { 4,   0,              SEN(prlimit64),                 "prlimit64"             },
 [332] = { 5,   TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
 [333] = { 3,   TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
index b3b4814b8aca61a0437d422476c61a4dbd2649a7..bcc0d383cf9be5691f9a7933a7cd8d5d257b942d 100644 (file)
@@ -45,7 +45,7 @@
 [ 44] = { 6,   TN,             SEN(sendto),                    "sendto"                },
 [ 45] = { 6,   TN,             SEN(printargs),                 "64:recvfrom"           },
 [ 46] = { 3,   TN,             SEN(printargs),                 "64:sendmsg"            },
-[ 47] = { 5,   TN,             SEN(printargs),                 "64:recvmsg"            },
+[ 47] = { 3,   TN,             SEN(printargs),                 "64:recvmsg"            },
 [ 48] = { 2,   TN,             SEN(shutdown),                  "shutdown"              },
 [ 49] = { 3,   TN,             SEN(bind),                      "bind"                  },
 [ 50] = { 2,   TN,             SEN(listen),                    "listen"                },
index 5f07c2f5cd5d4f96efd03fd7c2d0cbd496bc2b8a..ffb7d4348a247d1a8ce101f26748e45228365634 100644 (file)
@@ -81,7 +81,7 @@
 [ 85] = { 2,   TM,             SEN(munlock),                   "munlock"               },
 [ 86] = { 1,   TM,             SEN(mlockall),                  "mlockall"              },
 [ 87] = { 0,   TM,             SEN(munlockall),                "munlockall"            },
-[ 88] = { 4,   TM|SI,          SEN(mremap),                    "mremap"                },
+[ 88] = { 5,   TM|SI,          SEN(mremap),                    "mremap"                },
 [ 89] = { 3,   TM,             SEN(msync),                     "msync"                 },
 [ 90] = { 3,   TM,             SEN(mincore),                   "mincore"               },
 [ 91] = { 3,   TM,             SEN(madvise),                   "madvise"               },
 [188] = { 2,   0,              SEN(setrlimit),                 "setrlimit"             },
 [189] = { 2,   0,              SEN(getrlimit),                 "getrlimit"             },
 [190] = { 2,   0,              SEN(getrusage),                 "getrusage"             },
-[191] = { 5,   0,              SEN(futex),                     "futex"                 },
+[191] = { 6,   0,              SEN(futex),                     "futex"                 },
 [192] = { 2,   0,              SEN(gettimeofday),              "gettimeofday"          },
 [193] = { 2,   0,              SEN(settimeofday),              "settimeofday"          },
 [194] = { 1,   0,              SEN(adjtimex),                  "adjtimex"              },
 [200] = { 3,   0,              SEN(syslog),                    "syslog"                },
 [201] = { 0,   0,              SEN(vhangup),                   "vhangup"               },
 [202] = { 1,   TF,             SEN(uselib),                    "uselib"                },
-[203] = { 3,   0,              SEN(reboot),                    "reboot"                },
+[203] = { 4,   0,              SEN(reboot),                    "reboot"                },
 [204] = { 4,   TF,             SEN(quotactl),                  "quotactl"              },
 [205] = { 3,   0,              SEN(nfsservctl),                "nfsservctl"            },
 [206] = { 1,   0,              SEN(sysctl),                    "_sysctl"               },
 [207] = { 2,   0,              SEN(bdflush),                   "bdflush"               },
 [208] = { 1,   0,              SEN(uname),                     "uname"                 },
 [209] = { 1,   0,              SEN(sysinfo),                   "sysinfo"               },
-[210] = { 2,   0,              SEN(init_module),               "init_module"           },
-[211] = { 1,   0,              SEN(delete_module),             "delete_module"         },
+[210] = { 3,   0,              SEN(init_module),               "init_module"           },
+[211] = { 2,   0,              SEN(delete_module),             "delete_module"         },
 [212] = { 2,   0,              SEN(sched_setparam),            "sched_setparam"        },
 [213] = { 2,   0,              SEN(sched_getparam),            "sched_getparam"        },
 [214] = { 3,   0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
 [254] = { 4,   0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
 [255] = { },
 [256] = { 5,   0,              SEN(add_key),                   "add_key"               },
-[257] = { 5,   0,              SEN(request_key),               "request_key"           },
+[257] = { 4,   0,              SEN(request_key),               "request_key"           },
 [258] = { 5,   0,              SEN(keyctl),                    "keyctl"                },
 [259] = { },
 [260] = { 5,   TD,             SEN(readahead),                 "readahead"             },
 [277] = { 3,   TD,             SEN(inotify_add_watch),         "inotify_add_watch"     },
 [278] = { 2,   TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
 [279] = { 1,   TD,             SEN(inotify_init1),             "inotify_init1"         },
-[280] = { 0,   0,              SEN(getcpu),                    "getcpu"                },
+[280] = { 3,   0,              SEN(getcpu),                    "getcpu"                },
 [281] = { 4,   0,              SEN(kexec_load),                "kexec_load"            },
-[282] = { 2,   0,              SEN(ioprio_set),                "ioprio_set"            },
-[283] = { 3,   0,              SEN(ioprio_get),                "ioprio_get"            },
+[282] = { 3,   0,              SEN(ioprio_set),                "ioprio_set"            },
+[283] = { 2,   0,              SEN(ioprio_get),                "ioprio_get"            },
 [284] = { 2,   0,              SEN(set_robust_list),           "set_robust_list"       },
 [285] = { 3,   0,              SEN(get_robust_list),           "get_robust_list"       },
 [286 ... 287] = { },
 [293] = { 5,   TD|TF,          SEN(linkat),                    "linkat"                },
 [294] = { 3,   TD|TF,          SEN(symlinkat),                 "symlinkat"             },
 [295] = { 4,   TD|TF,          SEN(readlinkat),                "readlinkat"            },
-[296] = { 0,   TD|TF,          SEN(utimensat),                 "utimensat"             },
+[296] = { 4,   TD|TF,          SEN(utimensat),                 "utimensat"             },
 [297] = { 5,   TD|TF,          SEN(fchownat),                  "fchownat"              },
-[298] = { 4,   TD|TF,          SEN(futimesat),                 "futimesat"             },
+[298] = { 3,   TD|TF,          SEN(futimesat),                 "futimesat"             },
 [299] = { 4,   TD|TF,          SEN(newfstatat),                "fstatat64"             },
-[300] = { 4,   TD|TF,          SEN(fchmodat),                  "fchmodat"              },
-[301] = { 4,   TD|TF,          SEN(faccessat),                 "faccessat"             },
+[300] = { 3,   TD|TF,          SEN(fchmodat),                  "fchmodat"              },
+[301] = { 3,   TD|TF,          SEN(faccessat),                 "faccessat"             },
 [302 ... 303] = { },
 [304] = { 3,   TD|TS,          SEN(signalfd),                  "signalfd"              },
 [305] = { },