]> granicus.if.org Git - strace/commitdiff
mips: refactor syscallent initializers
authorDmitry V. Levin <ldv@altlinux.org>
Wed, 26 Jun 2019 08:00:39 +0000 (08:00 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Sat, 29 Jun 2019 17:38:25 +0000 (17:38 +0000)
Change format of designated initializers to BASE_NR + offset.

* linux/mips/syscallent-n32.h (BASE_NR): New macro.  Use it in designated
initializers.
* linux/mips/syscallent-n64.h: Likewise.
* linux/mips/syscallent-o32.h: Likewise.

linux/mips/syscallent-n32.h
linux/mips/syscallent-n64.h
linux/mips/syscallent-o32.h

index 16ec2a1bd4bf29f17f2e9801ececc9273b88f28d..98bf9824ff139a3aaf3d97935190a6f16130fe8b 100644 (file)
  * SPDX-License-Identifier: LGPL-2.1-or-later
  */
 
+#define BASE_NR 6000
 #if defined LINUX_MIPSN32
 /* For an N32 strace decode the N32 64-bit syscalls. */
-[6000] = { 3,  TD,             SEN(read),                      "read"                  }, /* start of Linux N32 */
-[6001] = { 3,  TD,             SEN(write),                     "write"                 },
-[6002] = { 3,  TD|TF,          SEN(open),                      "open"                  },
-[6003] = { 1,  TD,             SEN(close),                     "close"                 },
-[6004] = { 2,  TF|TST|TSTA,    SEN(stat64),                    "stat"                  },
-[6005] = { 2,  TD|TFST|TSTA,   SEN(fstat64),                   "fstat"                 },
-[6006] = { 2,  TF|TLST|TSTA,   SEN(lstat64),                   "lstat"                 },
-[6007] = { 3,  TD,             SEN(poll_time32),               "poll"                  },
-[6008] = { 3,  TD,             SEN(lseek),                     "lseek"                 },
-[6009] = { 6,  TD|TM|SI,       SEN(mmap),                      "mmap"                  },
-[6010] = { 3,  TM|SI,          SEN(mprotect),                  "mprotect"              },
-[6011] = { 2,  TM|SI,          SEN(munmap),                    "munmap"                },
-[6012] = { 1,  TM|SI,          SEN(brk),                       "brk"                   },
-[6013] = { 4,  TS,             SEN(rt_sigaction),              "rt_sigaction"          },
-[6014] = { 4,  TS,             SEN(rt_sigprocmask),            "rt_sigprocmask"        },
-[6015] = { 3,  TD,             SEN(ioctl),                     "ioctl"                 },
-[6016] = { 4,  TD,             SEN(pread),                     "pread64"               },
-[6017] = { 4,  TD,             SEN(pwrite),                    "pwrite64"              },
-[6018] = { 3,  TD,             SEN(readv),                     "readv"                 },
-[6019] = { 3,  TD,             SEN(writev),                    "writev"                },
-[6020] = { 2,  TF,             SEN(access),                    "access"                },
-[6021] = { 0,  TD,             SEN(pipe),                      "pipe"                  },
-[6022] = { 5,  TD,             SEN(select),                    "_newselect"            },
-[6023] = { 0,  0,              SEN(sched_yield),               "sched_yield"           },
-[6024] = { 5,  TM|SI,          SEN(mremap),                    "mremap"                },
-[6025] = { 3,  TM,             SEN(msync),                     "msync"                 },
-[6026] = { 3,  TM,             SEN(mincore),                   "mincore"               },
-[6027] = { 3,  TM,             SEN(madvise),                   "madvise"               },
-[6028] = { 3,  TI,             SEN(shmget),                    "shmget"                },
-[6029] = { 3,  TI|TM|SI,       SEN(shmat),                     "shmat"                 },
-[6030] = { 3,  TI,             SEN(shmctl),                    "shmctl"                },
-[6031] = { 1,  TD,             SEN(dup),                       "dup"                   },
-[6032] = { 2,  TD,             SEN(dup2),                      "dup2"                  },
-[6033] = { 0,  TS,             SEN(pause),                     "pause"                 },
-[6034] = { 2,  0,              SEN(nanosleep_time32),          "nanosleep"             },
-[6035] = { 2,  0,              SEN(getitimer),                 "getitimer"             },
-[6036] = { 3,  0,              SEN(setitimer),                 "setitimer"             },
-[6037] = { 1,  0,              SEN(alarm),                     "alarm"                 },
-[6038] = { 0,  PU|NF,          SEN(getpid),                    "getpid"                },
-[6039] = { 4,  TD|TN,          SEN(sendfile),                  "sendfile"              },
-[6040] = { 3,  TN,             SEN(socket),                    "socket"                },
-[6041] = { 3,  TN,             SEN(connect),                   "connect"               },
-[6042] = { 3,  TN,             SEN(accept),                    "accept"                },
-[6043] = { 6,  TN,             SEN(sendto),                    "sendto"                },
-[6044] = { 6,  TN,             SEN(recvfrom),                  "recvfrom"              },
-[6045] = { 3,  TN,             SEN(sendmsg),                   "sendmsg"               },
-[6046] = { 3,  TN,             SEN(recvmsg),                   "recvmsg"               },
-[6047] = { 2,  TN,             SEN(shutdown),                  "shutdown"              },
-[6048] = { 3,  TN,             SEN(bind),                      "bind"                  },
-[6049] = { 2,  TN,             SEN(listen),                    "listen"                },
-[6050] = { 3,  TN,             SEN(getsockname),               "getsockname"           },
-[6051] = { 3,  TN,             SEN(getpeername),               "getpeername"           },
-[6052] = { 4,  TN,             SEN(socketpair),                "socketpair"            },
-[6053] = { 5,  TN,             SEN(setsockopt),                "setsockopt"            },
-[6054] = { 5,  TN,             SEN(getsockopt),                "getsockopt"            },
-[6055] = { 5,  TP,             SEN(clone),                     "clone"                 },
-[6056] = { 0,  TP,             SEN(fork),                      "fork"                  },
-[6057] = { 3,  TF|TP|SE|SI,    SEN(execve),                    "execve"                },
-[6058] = { 1,  TP|SE,          SEN(exit),                      "exit"                  },
-[6059] = { 4,  TP,             SEN(wait4),                     "wait4"                 },
-[6060] = { 2,  TS,             SEN(kill),                      "kill"                  },
-[6061] = { 1,  0,              SEN(uname),                     "uname"                 },
-[6062] = { 3,  TI,             SEN(semget),                    "semget"                },
-[6063] = { 3,  TI,             SEN(semop),                     "semop"                 },
-[6064] = { 4,  TI,             SEN(semctl),                    "semctl"                },
-[6065] = { 1,  TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
-[6066] = { 2,  TI,             SEN(msgget),                    "msgget"                },
-[6067] = { 4,  TI,             SEN(msgsnd),                    "msgsnd"                },
-[6068] = { 5,  TI,             SEN(msgrcv),                    "msgrcv"                },
-[6069] = { 3,  TI,             SEN(msgctl),                    "msgctl"                },
-[6070] = { 3,  TD,             SEN(fcntl),                     "fcntl"                 },
-[6071] = { 2,  TD,             SEN(flock),                     "flock"                 },
-[6072] = { 1,  TD,             SEN(fsync),                     "fsync"                 },
-[6073] = { 1,  TD,             SEN(fdatasync),                 "fdatasync"             },
-[6074] = { 2,  TF,             SEN(truncate64),                "truncate"              },
-[6075] = { 2,  TD,             SEN(ftruncate64),               "ftruncate"             },
-[6076] = { 3,  TD,             SEN(getdents),                  "getdents"              },
-[6077] = { 2,  TF,             SEN(getcwd),                    "getcwd"                },
-[6078] = { 1,  TF,             SEN(chdir),                     "chdir"                 },
-[6079] = { 1,  TD,             SEN(fchdir),                    "fchdir"                },
-[6080] = { 2,  TF,             SEN(rename),                    "rename"                },
-[6081] = { 2,  TF,             SEN(mkdir),                     "mkdir"                 },
-[6082] = { 1,  TF,             SEN(rmdir),                     "rmdir"                 },
-[6083] = { 2,  TD|TF,          SEN(creat),                     "creat"                 },
-[6084] = { 2,  TF,             SEN(link),                      "link"                  },
-[6085] = { 1,  TF,             SEN(unlink),                    "unlink"                },
-[6086] = { 2,  TF,             SEN(symlink),                   "symlink"               },
-[6087] = { 3,  TF,             SEN(readlink),                  "readlink"              },
-[6088] = { 2,  TF,             SEN(chmod),                     "chmod"                 },
-[6089] = { 2,  TD,             SEN(fchmod),                    "fchmod"                },
-[6090] = { 3,  TF,             SEN(chown),                     "chown"                 },
-[6091] = { 3,  TD,             SEN(fchown),                    "fchown"                },
-[6092] = { 3,  TF,             SEN(chown),                     "lchown"                },
-[6093] = { 1,  NF,             SEN(umask),                     "umask"                 },
-[6094] = { 2,  0,              SEN(gettimeofday),              "gettimeofday"          },
-[6095] = { 2,  0,              SEN(getrlimit),                 "getrlimit"             },
-[6096] = { 2,  0,              SEN(getrusage),                 "getrusage"             },
-[6097] = { 1,  0,              SEN(sysinfo),                   "sysinfo"               },
-[6098] = { 1,  0,              SEN(times),                     "times"                 },
-[6099] = { 4,  0,              SEN(ptrace),                    "ptrace"                },
-[6100] = { 0,  PU|NF,          SEN(getuid),                    "getuid"                },
-[6101] = { 3,  0,              SEN(syslog),                    "syslog"                },
-[6102] = { 0,  PU|NF,          SEN(getgid),                    "getgid"                },
-[6103] = { 1,  0,              SEN(setuid),                    "setuid"                },
-[6104] = { 1,  0,              SEN(setgid),                    "setgid"                },
-[6105] = { 0,  PU|NF,          SEN(geteuid),                   "geteuid"               },
-[6106] = { 0,  PU|NF,          SEN(getegid),                   "getegid"               },
-[6107] = { 2,  0,              SEN(setpgid),                   "setpgid"               },
-[6108] = { 0,  PU|NF,          SEN(getppid),                   "getppid"               },
-[6109] = { 0,  PU|NF,          SEN(getpgrp),                   "getpgrp"               },
-[6110] = { 0,  0,              SEN(setsid),                    "setsid"                },
-[6111] = { 2,  0,              SEN(setreuid),                  "setreuid"              },
-[6112] = { 2,  0,              SEN(setregid),                  "setregid"              },
-[6113] = { 2,  0,              SEN(getgroups),                 "getgroups"             },
-[6114] = { 2,  0,              SEN(setgroups),                 "setgroups"             },
-[6115] = { 3,  0,              SEN(setresuid),                 "setresuid"             },
-[6116] = { 3,  0,              SEN(getresuid),                 "getresuid"             },
-[6117] = { 3,  0,              SEN(setresgid),                 "setresgid"             },
-[6118] = { 3,  0,              SEN(getresgid),                 "getresgid"             },
-[6119] = { 1,  0,              SEN(getpgid),                   "getpgid"               },
-[6120] = { 1,  NF,             SEN(setfsuid),                  "setfsuid"              },
-[6121] = { 1,  NF,             SEN(setfsgid),                  "setfsgid"              },
-[6122] = { 1,  0,              SEN(getsid),                    "getsid"                },
-[6123] = { 2,  0,              SEN(capget),                    "capget"                },
-[6124] = { 2,  0,              SEN(capset),                    "capset"                },
-[6125] = { 2,  TS,             SEN(rt_sigpending),             "rt_sigpending"         },
-[6126] = { 4,  TS,             SEN(rt_sigtimedwait_time32),    "rt_sigtimedwait"       },
-[6127] = { 3,  TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
-[6128] = { 2,  TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
-[6129] = { 2,  TS,             SEN(sigaltstack),               "sigaltstack"           },
-[6130] = { 2,  TF,             SEN(utime),                     "utime"                 },
-[6131] = { 3,  TF,             SEN(mknod),                     "mknod"                 },
-[6132] = { 1,  NF,             SEN(personality),               "personality"           },
-[6133] = { 2,  TSFA,           SEN(ustat),                     "ustat"                 },
-[6134] = { 2,  TF|TSF|TSFA,    SEN(statfs),                    "statfs"                },
-[6135] = { 2,  TD|TFSF|TSFA,   SEN(fstatfs),                   "fstatfs"               },
-[6136] = { 3,  0,              SEN(sysfs),                     "sysfs"                 },
-[6137] = { 2,  0,              SEN(getpriority),               "getpriority"           },
-[6138] = { 3,  0,              SEN(setpriority),               "setpriority"           },
-[6139] = { 2,  0,              SEN(sched_setparam),            "sched_setparam"        },
-[6140] = { 2,  0,              SEN(sched_getparam),            "sched_getparam"        },
-[6141] = { 3,  0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
-[6142] = { 1,  0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
-[6143] = { 1,  0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
-[6144] = { 1,  0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
-[6145] = { 2,  0,              SEN(sched_rr_get_interval_time32),"sched_rr_get_interval"},
-[6146] = { 2,  TM,             SEN(mlock),                     "mlock"                 },
-[6147] = { 2,  TM,             SEN(munlock),                   "munlock"               },
-[6148] = { 1,  TM,             SEN(mlockall),                  "mlockall"              },
-[6149] = { 0,  TM,             SEN(munlockall),                "munlockall"            },
-[6150] = { 0,  0,              SEN(vhangup),                   "vhangup"               },
-[6151] = { 2,  TF,             SEN(pivotroot),                 "pivot_root"            },
-[6152] = { 1,  0,              SEN(sysctl),                    "_sysctl"               },
-[6153] = { 5,  0,              SEN(prctl),                     "prctl"                 },
-[6154] = { 1,  0,              SEN(adjtimex32),                "adjtimex"              },
-[6155] = { 2,  0,              SEN(setrlimit),                 "setrlimit"             },
-[6156] = { 1,  TF,             SEN(chroot),                    "chroot"                },
-[6157] = { 0,  0,              SEN(sync),                      "sync"                  },
-[6158] = { 1,  TF,             SEN(acct),                      "acct"                  },
-[6159] = { 2,  0,              SEN(settimeofday),              "settimeofday"          },
-[6160] = { 5,  TF,             SEN(mount),                     "mount"                 },
-[6161] = { 2,  TF,             SEN(umount2),                   "umount2"               },
-[6162] = { 2,  TF,             SEN(swapon),                    "swapon"                },
-[6163] = { 1,  TF,             SEN(swapoff),                   "swapoff"               },
-[6164] = { 4,  0,              SEN(reboot),                    "reboot"                },
-[6165] = { 2,  0,              SEN(sethostname),               "sethostname"           },
-[6166] = { 2,  0,              SEN(setdomainname),             "setdomainname"         },
-[6167] = { 2,  0,              SEN(create_module),             "create_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"              },
-[6173] = { 3,  0,              SEN(nfsservctl),                "nfsservctl"            },
-[6174] = { 5,  TN,             SEN(getpmsg),                   "getpmsg"               },
-[6175] = { 5,  TN,             SEN(putpmsg),                   "putpmsg"               },
-[6176] = { 0,  0,              SEN(afs_syscall),               "afs_syscall"           },
-[6177] = { 0,  0,              SEN(printargs),                 "reserved177"           },
-[6178] = { 0,  PU|NF,          SEN(gettid),                    "gettid"                },
-[6179] = { 3,  TD,             SEN(readahead),                 "readahead"             },
-[6180] = { 5,  TF,             SEN(setxattr),                  "setxattr"              },
-[6181] = { 5,  TF,             SEN(setxattr),                  "lsetxattr"             },
-[6182] = { 5,  TD,             SEN(fsetxattr),                 "fsetxattr"             },
-[6183] = { 4,  TF,             SEN(getxattr),                  "getxattr"              },
-[6184] = { 4,  TF,             SEN(getxattr),                  "lgetxattr"             },
-[6185] = { 4,  TD,             SEN(fgetxattr),                 "fgetxattr"             },
-[6186] = { 3,  TF,             SEN(listxattr),                 "listxattr"             },
-[6187] = { 3,  TF,             SEN(listxattr),                 "llistxattr"            },
-[6188] = { 3,  TD,             SEN(flistxattr),                "flistxattr"            },
-[6189] = { 2,  TF,             SEN(removexattr),               "removexattr"           },
-[6190] = { 2,  TF,             SEN(removexattr),               "lremovexattr"          },
-[6191] = { 2,  TD,             SEN(fremovexattr),              "fremovexattr"          },
-[6192] = { 2,  TS,             SEN(kill),                      "tkill"                 },
-[6193] = { 1,  0,              SEN(time),                      "time"                  },
-[6194] = { 6,  0,              SEN(futex_time32),              "futex"                 },
-[6195] = { 3,  0,              SEN(sched_setaffinity),         "sched_setaffinity"     },
-[6196] = { 3,  0,              SEN(sched_getaffinity),         "sched_getaffinity"     },
-[6197] = { 3,  0,              SEN(printargs),                 "cacheflush"            },
-[6198] = { 3,  0,              SEN(printargs),                 "cachectl"              },
-[6199] = { 4,  0,              SEN(sysmips),                   "sysmips"               },
-[6200] = { 2,  TM,             SEN(io_setup),                  "io_setup"              },
-[6201] = { 1,  TM,             SEN(io_destroy),                "io_destroy"            },
-[6202] = { 5,  0,              SEN(io_getevents_time32),       "io_getevents"          },
-[6203] = { 3,  0,              SEN(io_submit),                 "io_submit"             },
-[6204] = { 3,  0,              SEN(io_cancel),                 "io_cancel"             },
-[6205] = { 1,  TP|SE,          SEN(exit),                      "exit_group"            },
-[6206] = { 3,  0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
-[6207] = { 1,  TD,             SEN(epoll_create),              "epoll_create"          },
-[6208] = { 4,  TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
-[6209] = { 4,  TD,             SEN(epoll_wait),                "epoll_wait"            },
-[6210] = { 5,  TM|SI,          SEN(remap_file_pages),          "remap_file_pages"      },
-[6211] = { 0,  TS,             SEN(rt_sigreturn),              "rt_sigreturn"          },
-[6212] = { 3,  TD,             SEN(fcntl64),                   "fcntl64"               },
-[6213] = { 1,  0,              SEN(set_tid_address),           "set_tid_address"       },
-[6214] = { 0,  0,              SEN(restart_syscall),           "restart_syscall"       },
-[6215] = { 4,  TI,             SEN(semtimedop_time32),         "semtimedop"            },
-[6216] = { 4,  TD,             SEN(fadvise64_64),              "fadvise64"             },
-[6217] = { 3,  TF|TSF|TSFA,    SEN(statfs64),                  "statfs64"              },
-[6218] = { 3,  TD|TFSF|TSFA,   SEN(fstatfs64),                 "fstatfs64"             },
-[6219] = { 4,  TD|TN,          SEN(sendfile64),                "sendfile64"            },
-[6220] = { 3,  0,              SEN(timer_create),              "timer_create"          },
-[6221] = { 4,  0,              SEN(timer_settime32),           "timer_settime"         },
-[6222] = { 2,  0,              SEN(timer_gettime32),           "timer_gettime"         },
-[6223] = { 1,  0,              SEN(timer_getoverrun),          "timer_getoverrun"      },
-[6224] = { 1,  0,              SEN(timer_delete),              "timer_delete"          },
-[6225] = { 2,  0,              SEN(clock_settime32),           "clock_settime"         },
-[6226] = { 2,  0,              SEN(clock_gettime32),           "clock_gettime"         },
-[6227] = { 2,  0,              SEN(clock_getres_time32),       "clock_getres"          },
-[6228] = { 4,  0,              SEN(clock_nanosleep_time32),    "clock_nanosleep"       },
-[6229] = { 3,  TS,             SEN(tgkill),                    "tgkill"                },
-[6230] = { 2,  TF,             SEN(utimes),                    "utimes"                },
-[6231] = { 6,  TM,             SEN(mbind),                     "mbind"                 },
-[6232] = { 5,  TM,             SEN(get_mempolicy),             "get_mempolicy"         },
-[6233] = { 3,  TM,             SEN(set_mempolicy),             "set_mempolicy"         },
-[6234] = { 4,  TD,             SEN(mq_open),                   "mq_open"               },
-[6235] = { 1,  0,              SEN(mq_unlink),                 "mq_unlink"             },
-[6236] = { 5,  TD,             SEN(mq_timedsend_time32),       "mq_timedsend"          },
-[6237] = { 5,  TD,             SEN(mq_timedreceive_time32),    "mq_timedreceive"       },
-[6238] = { 2,  TD,             SEN(mq_notify),                 "mq_notify"             },
-[6239] = { 3,  TD,             SEN(mq_getsetattr),             "mq_getsetattr"         },
-[6240] = { 5,  0,              SEN(vserver),                   "vserver"               },
-[6241] = { 5,  TP,             SEN(waitid),                    "waitid"                },
-[6242] = { },
-[6243] = { 5,  0,              SEN(add_key),                   "add_key"               },
-[6244] = { 4,  0,              SEN(request_key),               "request_key"           },
-[6245] = { 5,  0,              SEN(keyctl),                    "keyctl"                },
-[6246] = { 1,  0,              SEN(set_thread_area),           "set_thread_area"       },
-[6247] = { 0,  TD,             SEN(inotify_init),              "inotify_init"          },
-[6248] = { 3,  TD|TF,          SEN(inotify_add_watch),         "inotify_add_watch"     },
-[6249] = { 2,  TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
-[6250] = { 4,  TM,             SEN(migrate_pages),             "migrate_pages"         },
-[6251] = { 4,  TD|TF,          SEN(openat),                    "openat"                },
-[6252] = { 3,  TD|TF,          SEN(mkdirat),                   "mkdirat"               },
-[6253] = { 4,  TD|TF,          SEN(mknodat),                   "mknodat"               },
-[6254] = { 5,  TD|TF,          SEN(fchownat),                  "fchownat"              },
-[6255] = { 3,  TD|TF,          SEN(futimesat),                 "futimesat"             },
-[6256] = { 4,  TD|TF|TFST|TSTA,SEN(newfstatat),                "newfstatat"            },
-[6257] = { 3,  TD|TF,          SEN(unlinkat),                  "unlinkat"              },
-[6258] = { 4,  TD|TF,          SEN(renameat),                  "renameat"              },
-[6259] = { 5,  TD|TF,          SEN(linkat),                    "linkat"                },
-[6260] = { 3,  TD|TF,          SEN(symlinkat),                 "symlinkat"             },
-[6261] = { 4,  TD|TF,          SEN(readlinkat),                "readlinkat"            },
-[6262] = { 3,  TD|TF,          SEN(fchmodat),                  "fchmodat"              },
-[6263] = { 3,  TD|TF,          SEN(faccessat),                 "faccessat"             },
-[6264] = { 6,  TD,             SEN(pselect6_time32),           "pselect6"              },
-[6265] = { 5,  TD,             SEN(ppoll_time32),              "ppoll"                 },
-[6266] = { 1,  TP,             SEN(unshare),                   "unshare"               },
-[6267] = { 6,  TD,             SEN(splice),                    "splice"                },
-[6268] = { 4,  TD,             SEN(sync_file_range),           "sync_file_range"       },
-[6269] = { 4,  TD,             SEN(tee),                       "tee"                   },
-[6270] = { 4,  TD,             SEN(vmsplice),                  "vmsplice"              },
-[6271] = { 6,  TM,             SEN(move_pages),                "move_pages"            },
-[6272] = { 2,  0,              SEN(set_robust_list),           "set_robust_list"       },
-[6273] = { 3,  0,              SEN(get_robust_list),           "get_robust_list"       },
-[6274] = { 4,  0,              SEN(kexec_load),                "kexec_load"            },
-[6275] = { 3,  0,              SEN(getcpu),                    "getcpu"                },
-[6276] = { 6,  TD,             SEN(epoll_pwait),               "epoll_pwait"           },
-[6277] = { 3,  0,              SEN(ioprio_set),                "ioprio_set"            },
-[6278] = { 2,  0,              SEN(ioprio_get),                "ioprio_get"            },
-[6279] = { 4,  TD|TF,          SEN(utimensat_time32),          "utimensat"             },
-[6280] = { 3,  TD|TS,          SEN(signalfd),                  "signalfd"              },
-[6281] = { 4,  TD,             SEN(timerfd),                   "timerfd"               },
-[6282] = { 1,  TD,             SEN(eventfd),                   "eventfd"               },
-[6283] = { 4,  TD,             SEN(fallocate),                 "fallocate"             },
-[6284] = { 2,  TD,             SEN(timerfd_create),            "timerfd_create"        },
-[6285] = { 2,  TD,             SEN(timerfd_gettime32),         "timerfd_gettime"       },
-[6286] = { 4,  TD,             SEN(timerfd_settime32),         "timerfd_settime"       },
-[6287] = { 4,  TD|TS,          SEN(signalfd4),                 "signalfd4"             },
-[6288] = { 2,  TD,             SEN(eventfd2),                  "eventfd2"              },
-[6289] = { 1,  TD,             SEN(epoll_create1),             "epoll_create1"         },
-[6290] = { 3,  TD,             SEN(dup3),                      "dup3"                  },
-[6291] = { 2,  TD,             SEN(pipe2),                     "pipe2"                 },
-[6292] = { 1,  TD,             SEN(inotify_init1),             "inotify_init1"         },
-[6293] = { 4,  TD,             SEN(preadv),                    "preadv"                },
-[6294] = { 4,  TD,             SEN(pwritev),                   "pwritev"               },
-[6295] = { 4,  TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
-[6296] = { 5,  TD,             SEN(perf_event_open),           "perf_event_open"       },
-[6297] = { 4,  TN,             SEN(accept4),                   "accept4"               },
-[6298] = { 5,  TN,             SEN(recvmmsg_time32),           "recvmmsg"              },
-[6299] = { 3,  TD,             SEN(getdents64),                "getdents64"            },
-[6300] = { 2,  TD,             SEN(fanotify_init),             "fanotify_init"         },
-[6301] = { 5,  TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
-[6302] = { 4,  0,              SEN(prlimit64),                 "prlimit64"             },
-[6303] = { 5,  TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
-[6304] = { 3,  TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
-[6305] = { 2,  0,              SEN(clock_adjtime32),           "clock_adjtime"         },
-[6306] = { 1,  TD,             SEN(syncfs),                    "syncfs"                },
-[6307] = { 4,  TN,             SEN(sendmmsg),                  "sendmmsg"              },
-[6308] = { 2,  TD,             SEN(setns),                     "setns"                 },
-[6309] = { 6,  0,              SEN(process_vm_readv),          "process_vm_readv"      },
-[6310] = { 6,  0,              SEN(process_vm_writev),         "process_vm_writev"     },
-[6311] = { 5,  0,              SEN(kcmp),                      "kcmp"                  },
-[6312] = { 3,  TD,             SEN(finit_module),              "finit_module"          },
-[6313] = { 3,  0,              SEN(sched_setattr),             "sched_setattr"         },
-[6314] = { 4,  0,              SEN(sched_getattr),             "sched_getattr"         },
-[6315] = { 5,  TD|TF,          SEN(renameat2),                 "renameat2"             },
-[6316] = { 3,  0,              SEN(seccomp),                   "seccomp"               },
-[6317] = { 3,  0,              SEN(getrandom),                 "getrandom"             },
-[6318] = { 2,  TD,             SEN(memfd_create),              "memfd_create"          },
-[6319] = { 3,  TD,             SEN(bpf),                       "bpf"                   },
-[6320] = { 5,  TD|TF|TP|SE|SI, SEN(execveat),                  "execveat"              },
-[6321] = { 1,  TD,             SEN(userfaultfd),               "userfaultfd"           },
-[6322] = { 2,  0,              SEN(membarrier),                "membarrier"            },
-[6323] = { 3,  TM,             SEN(mlock2),                    "mlock2"                },
-[6324] = { 6,  TD,             SEN(copy_file_range),           "copy_file_range"       },
-[6325] = { 6,  TD,             SEN(preadv2),                   "preadv2"               },
-[6326] = { 6,  TD,             SEN(pwritev2),                  "pwritev2"              },
-[6327] = { 4,  TM|SI,          SEN(pkey_mprotect),             "pkey_mprotect"         },
-[6328] = { 2,  0,              SEN(pkey_alloc),                "pkey_alloc"            },
-[6329] = { 1,  0,              SEN(pkey_free),                 "pkey_free"             },
-[6330] = { 5,  TD|TF|TSTA,     SEN(statx),                     "statx"                 },
-[6331] = { 4,  0,              SEN(rseq),                      "rseq"                  },
-[6332] = { 6,  0,              SEN(io_pgetevents_time32),      "io_pgetevents"         },
+[BASE_NR +   0] = { 3, TD,             SEN(read),                      "read"                  }, /* start of Linux N32 */
+[BASE_NR +   1] = { 3, TD,             SEN(write),                     "write"                 },
+[BASE_NR +   2] = { 3, TD|TF,          SEN(open),                      "open"                  },
+[BASE_NR +   3] = { 1, TD,             SEN(close),                     "close"                 },
+[BASE_NR +   4] = { 2, TF|TST|TSTA,    SEN(stat64),                    "stat"                  },
+[BASE_NR +   5] = { 2, TD|TFST|TSTA,   SEN(fstat64),                   "fstat"                 },
+[BASE_NR +   6] = { 2, TF|TLST|TSTA,   SEN(lstat64),                   "lstat"                 },
+[BASE_NR +   7] = { 3, TD,             SEN(poll_time32),               "poll"                  },
+[BASE_NR +   8] = { 3, TD,             SEN(lseek),                     "lseek"                 },
+[BASE_NR +   9] = { 6, TD|TM|SI,       SEN(mmap),                      "mmap"                  },
+[BASE_NR +  10] = { 3, TM|SI,          SEN(mprotect),                  "mprotect"              },
+[BASE_NR +  11] = { 2, TM|SI,          SEN(munmap),                    "munmap"                },
+[BASE_NR +  12] = { 1, TM|SI,          SEN(brk),                       "brk"                   },
+[BASE_NR +  13] = { 4, TS,             SEN(rt_sigaction),              "rt_sigaction"          },
+[BASE_NR +  14] = { 4, TS,             SEN(rt_sigprocmask),            "rt_sigprocmask"        },
+[BASE_NR +  15] = { 3, TD,             SEN(ioctl),                     "ioctl"                 },
+[BASE_NR +  16] = { 4, TD,             SEN(pread),                     "pread64"               },
+[BASE_NR +  17] = { 4, TD,             SEN(pwrite),                    "pwrite64"              },
+[BASE_NR +  18] = { 3, TD,             SEN(readv),                     "readv"                 },
+[BASE_NR +  19] = { 3, TD,             SEN(writev),                    "writev"                },
+[BASE_NR +  20] = { 2, TF,             SEN(access),                    "access"                },
+[BASE_NR +  21] = { 0, TD,             SEN(pipe),                      "pipe"                  },
+[BASE_NR +  22] = { 5, TD,             SEN(select),                    "_newselect"            },
+[BASE_NR +  23] = { 0, 0,              SEN(sched_yield),               "sched_yield"           },
+[BASE_NR +  24] = { 5, TM|SI,          SEN(mremap),                    "mremap"                },
+[BASE_NR +  25] = { 3, TM,             SEN(msync),                     "msync"                 },
+[BASE_NR +  26] = { 3, TM,             SEN(mincore),                   "mincore"               },
+[BASE_NR +  27] = { 3, TM,             SEN(madvise),                   "madvise"               },
+[BASE_NR +  28] = { 3, TI,             SEN(shmget),                    "shmget"                },
+[BASE_NR +  29] = { 3, TI|TM|SI,       SEN(shmat),                     "shmat"                 },
+[BASE_NR +  30] = { 3, TI,             SEN(shmctl),                    "shmctl"                },
+[BASE_NR +  31] = { 1, TD,             SEN(dup),                       "dup"                   },
+[BASE_NR +  32] = { 2, TD,             SEN(dup2),                      "dup2"                  },
+[BASE_NR +  33] = { 0, TS,             SEN(pause),                     "pause"                 },
+[BASE_NR +  34] = { 2, 0,              SEN(nanosleep_time32),          "nanosleep"             },
+[BASE_NR +  35] = { 2, 0,              SEN(getitimer),                 "getitimer"             },
+[BASE_NR +  36] = { 3, 0,              SEN(setitimer),                 "setitimer"             },
+[BASE_NR +  37] = { 1, 0,              SEN(alarm),                     "alarm"                 },
+[BASE_NR +  38] = { 0, PU|NF,          SEN(getpid),                    "getpid"                },
+[BASE_NR +  39] = { 4, TD|TN,          SEN(sendfile),                  "sendfile"              },
+[BASE_NR +  40] = { 3, TN,             SEN(socket),                    "socket"                },
+[BASE_NR +  41] = { 3, TN,             SEN(connect),                   "connect"               },
+[BASE_NR +  42] = { 3, TN,             SEN(accept),                    "accept"                },
+[BASE_NR +  43] = { 6, TN,             SEN(sendto),                    "sendto"                },
+[BASE_NR +  44] = { 6, TN,             SEN(recvfrom),                  "recvfrom"              },
+[BASE_NR +  45] = { 3, TN,             SEN(sendmsg),                   "sendmsg"               },
+[BASE_NR +  46] = { 3, TN,             SEN(recvmsg),                   "recvmsg"               },
+[BASE_NR +  47] = { 2, TN,             SEN(shutdown),                  "shutdown"              },
+[BASE_NR +  48] = { 3, TN,             SEN(bind),                      "bind"                  },
+[BASE_NR +  49] = { 2, TN,             SEN(listen),                    "listen"                },
+[BASE_NR +  50] = { 3, TN,             SEN(getsockname),               "getsockname"           },
+[BASE_NR +  51] = { 3, TN,             SEN(getpeername),               "getpeername"           },
+[BASE_NR +  52] = { 4, TN,             SEN(socketpair),                "socketpair"            },
+[BASE_NR +  53] = { 5, TN,             SEN(setsockopt),                "setsockopt"            },
+[BASE_NR +  54] = { 5, TN,             SEN(getsockopt),                "getsockopt"            },
+[BASE_NR +  55] = { 5, TP,             SEN(clone),                     "clone"                 },
+[BASE_NR +  56] = { 0, TP,             SEN(fork),                      "fork"                  },
+[BASE_NR +  57] = { 3, TF|TP|SE|SI,    SEN(execve),                    "execve"                },
+[BASE_NR +  58] = { 1, TP|SE,          SEN(exit),                      "exit"                  },
+[BASE_NR +  59] = { 4, TP,             SEN(wait4),                     "wait4"                 },
+[BASE_NR +  60] = { 2, TS,             SEN(kill),                      "kill"                  },
+[BASE_NR +  61] = { 1, 0,              SEN(uname),                     "uname"                 },
+[BASE_NR +  62] = { 3, TI,             SEN(semget),                    "semget"                },
+[BASE_NR +  63] = { 3, TI,             SEN(semop),                     "semop"                 },
+[BASE_NR +  64] = { 4, TI,             SEN(semctl),                    "semctl"                },
+[BASE_NR +  65] = { 1, TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
+[BASE_NR +  66] = { 2, TI,             SEN(msgget),                    "msgget"                },
+[BASE_NR +  67] = { 4, TI,             SEN(msgsnd),                    "msgsnd"                },
+[BASE_NR +  68] = { 5, TI,             SEN(msgrcv),                    "msgrcv"                },
+[BASE_NR +  69] = { 3, TI,             SEN(msgctl),                    "msgctl"                },
+[BASE_NR +  70] = { 3, TD,             SEN(fcntl),                     "fcntl"                 },
+[BASE_NR +  71] = { 2, TD,             SEN(flock),                     "flock"                 },
+[BASE_NR +  72] = { 1, TD,             SEN(fsync),                     "fsync"                 },
+[BASE_NR +  73] = { 1, TD,             SEN(fdatasync),                 "fdatasync"             },
+[BASE_NR +  74] = { 2, TF,             SEN(truncate64),                "truncate"              },
+[BASE_NR +  75] = { 2, TD,             SEN(ftruncate64),               "ftruncate"             },
+[BASE_NR +  76] = { 3, TD,             SEN(getdents),                  "getdents"              },
+[BASE_NR +  77] = { 2, TF,             SEN(getcwd),                    "getcwd"                },
+[BASE_NR +  78] = { 1, TF,             SEN(chdir),                     "chdir"                 },
+[BASE_NR +  79] = { 1, TD,             SEN(fchdir),                    "fchdir"                },
+[BASE_NR +  80] = { 2, TF,             SEN(rename),                    "rename"                },
+[BASE_NR +  81] = { 2, TF,             SEN(mkdir),                     "mkdir"                 },
+[BASE_NR +  82] = { 1, TF,             SEN(rmdir),                     "rmdir"                 },
+[BASE_NR +  83] = { 2, TD|TF,          SEN(creat),                     "creat"                 },
+[BASE_NR +  84] = { 2, TF,             SEN(link),                      "link"                  },
+[BASE_NR +  85] = { 1, TF,             SEN(unlink),                    "unlink"                },
+[BASE_NR +  86] = { 2, TF,             SEN(symlink),                   "symlink"               },
+[BASE_NR +  87] = { 3, TF,             SEN(readlink),                  "readlink"              },
+[BASE_NR +  88] = { 2, TF,             SEN(chmod),                     "chmod"                 },
+[BASE_NR +  89] = { 2, TD,             SEN(fchmod),                    "fchmod"                },
+[BASE_NR +  90] = { 3, TF,             SEN(chown),                     "chown"                 },
+[BASE_NR +  91] = { 3, TD,             SEN(fchown),                    "fchown"                },
+[BASE_NR +  92] = { 3, TF,             SEN(chown),                     "lchown"                },
+[BASE_NR +  93] = { 1, NF,             SEN(umask),                     "umask"                 },
+[BASE_NR +  94] = { 2, 0,              SEN(gettimeofday),              "gettimeofday"          },
+[BASE_NR +  95] = { 2, 0,              SEN(getrlimit),                 "getrlimit"             },
+[BASE_NR +  96] = { 2, 0,              SEN(getrusage),                 "getrusage"             },
+[BASE_NR +  97] = { 1, 0,              SEN(sysinfo),                   "sysinfo"               },
+[BASE_NR +  98] = { 1, 0,              SEN(times),                     "times"                 },
+[BASE_NR +  99] = { 4, 0,              SEN(ptrace),                    "ptrace"                },
+[BASE_NR + 100] = { 0, PU|NF,          SEN(getuid),                    "getuid"                },
+[BASE_NR + 101] = { 3, 0,              SEN(syslog),                    "syslog"                },
+[BASE_NR + 102] = { 0, PU|NF,          SEN(getgid),                    "getgid"                },
+[BASE_NR + 103] = { 1, 0,              SEN(setuid),                    "setuid"                },
+[BASE_NR + 104] = { 1, 0,              SEN(setgid),                    "setgid"                },
+[BASE_NR + 105] = { 0, PU|NF,          SEN(geteuid),                   "geteuid"               },
+[BASE_NR + 106] = { 0, PU|NF,          SEN(getegid),                   "getegid"               },
+[BASE_NR + 107] = { 2, 0,              SEN(setpgid),                   "setpgid"               },
+[BASE_NR + 108] = { 0, PU|NF,          SEN(getppid),                   "getppid"               },
+[BASE_NR + 109] = { 0, PU|NF,          SEN(getpgrp),                   "getpgrp"               },
+[BASE_NR + 110] = { 0, 0,              SEN(setsid),                    "setsid"                },
+[BASE_NR + 111] = { 2, 0,              SEN(setreuid),                  "setreuid"              },
+[BASE_NR + 112] = { 2, 0,              SEN(setregid),                  "setregid"              },
+[BASE_NR + 113] = { 2, 0,              SEN(getgroups),                 "getgroups"             },
+[BASE_NR + 114] = { 2, 0,              SEN(setgroups),                 "setgroups"             },
+[BASE_NR + 115] = { 3, 0,              SEN(setresuid),                 "setresuid"             },
+[BASE_NR + 116] = { 3, 0,              SEN(getresuid),                 "getresuid"             },
+[BASE_NR + 117] = { 3, 0,              SEN(setresgid),                 "setresgid"             },
+[BASE_NR + 118] = { 3, 0,              SEN(getresgid),                 "getresgid"             },
+[BASE_NR + 119] = { 1, 0,              SEN(getpgid),                   "getpgid"               },
+[BASE_NR + 120] = { 1, NF,             SEN(setfsuid),                  "setfsuid"              },
+[BASE_NR + 121] = { 1, NF,             SEN(setfsgid),                  "setfsgid"              },
+[BASE_NR + 122] = { 1, 0,              SEN(getsid),                    "getsid"                },
+[BASE_NR + 123] = { 2, 0,              SEN(capget),                    "capget"                },
+[BASE_NR + 124] = { 2, 0,              SEN(capset),                    "capset"                },
+[BASE_NR + 125] = { 2, TS,             SEN(rt_sigpending),             "rt_sigpending"         },
+[BASE_NR + 126] = { 4, TS,             SEN(rt_sigtimedwait_time32),    "rt_sigtimedwait"       },
+[BASE_NR + 127] = { 3, TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
+[BASE_NR + 128] = { 2, TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
+[BASE_NR + 129] = { 2, TS,             SEN(sigaltstack),               "sigaltstack"           },
+[BASE_NR + 130] = { 2, TF,             SEN(utime),                     "utime"                 },
+[BASE_NR + 131] = { 3, TF,             SEN(mknod),                     "mknod"                 },
+[BASE_NR + 132] = { 1, NF,             SEN(personality),               "personality"           },
+[BASE_NR + 133] = { 2, TSFA,           SEN(ustat),                     "ustat"                 },
+[BASE_NR + 134] = { 2, TF|TSF|TSFA,    SEN(statfs),                    "statfs"                },
+[BASE_NR + 135] = { 2, TD|TFSF|TSFA,   SEN(fstatfs),                   "fstatfs"               },
+[BASE_NR + 136] = { 3, 0,              SEN(sysfs),                     "sysfs"                 },
+[BASE_NR + 137] = { 2, 0,              SEN(getpriority),               "getpriority"           },
+[BASE_NR + 138] = { 3, 0,              SEN(setpriority),               "setpriority"           },
+[BASE_NR + 139] = { 2, 0,              SEN(sched_setparam),            "sched_setparam"        },
+[BASE_NR + 140] = { 2, 0,              SEN(sched_getparam),            "sched_getparam"        },
+[BASE_NR + 141] = { 3, 0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
+[BASE_NR + 142] = { 1, 0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
+[BASE_NR + 143] = { 1, 0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
+[BASE_NR + 144] = { 1, 0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
+[BASE_NR + 145] = { 2, 0,              SEN(sched_rr_get_interval_time32),"sched_rr_get_interval"},
+[BASE_NR + 146] = { 2, TM,             SEN(mlock),                     "mlock"                 },
+[BASE_NR + 147] = { 2, TM,             SEN(munlock),                   "munlock"               },
+[BASE_NR + 148] = { 1, TM,             SEN(mlockall),                  "mlockall"              },
+[BASE_NR + 149] = { 0, TM,             SEN(munlockall),                "munlockall"            },
+[BASE_NR + 150] = { 0, 0,              SEN(vhangup),                   "vhangup"               },
+[BASE_NR + 151] = { 2, TF,             SEN(pivotroot),                 "pivot_root"            },
+[BASE_NR + 152] = { 1, 0,              SEN(sysctl),                    "_sysctl"               },
+[BASE_NR + 153] = { 5, 0,              SEN(prctl),                     "prctl"                 },
+[BASE_NR + 154] = { 1, 0,              SEN(adjtimex32),                "adjtimex"              },
+[BASE_NR + 155] = { 2, 0,              SEN(setrlimit),                 "setrlimit"             },
+[BASE_NR + 156] = { 1, TF,             SEN(chroot),                    "chroot"                },
+[BASE_NR + 157] = { 0, 0,              SEN(sync),                      "sync"                  },
+[BASE_NR + 158] = { 1, TF,             SEN(acct),                      "acct"                  },
+[BASE_NR + 159] = { 2, 0,              SEN(settimeofday),              "settimeofday"          },
+[BASE_NR + 160] = { 5, TF,             SEN(mount),                     "mount"                 },
+[BASE_NR + 161] = { 2, TF,             SEN(umount2),                   "umount2"               },
+[BASE_NR + 162] = { 2, TF,             SEN(swapon),                    "swapon"                },
+[BASE_NR + 163] = { 1, TF,             SEN(swapoff),                   "swapoff"               },
+[BASE_NR + 164] = { 4, 0,              SEN(reboot),                    "reboot"                },
+[BASE_NR + 165] = { 2, 0,              SEN(sethostname),               "sethostname"           },
+[BASE_NR + 166] = { 2, 0,              SEN(setdomainname),             "setdomainname"         },
+[BASE_NR + 167] = { 2, 0,              SEN(create_module),             "create_module"         },
+[BASE_NR + 168] = { 3, 0,              SEN(init_module),               "init_module"           },
+[BASE_NR + 169] = { 2, 0,              SEN(delete_module),             "delete_module"         },
+[BASE_NR + 170] = { 1, 0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
+[BASE_NR + 171] = { 5, 0,              SEN(query_module),              "query_module"          },
+[BASE_NR + 172] = { 4, TF,             SEN(quotactl),                  "quotactl"              },
+[BASE_NR + 173] = { 3, 0,              SEN(nfsservctl),                "nfsservctl"            },
+[BASE_NR + 174] = { 5, TN,             SEN(getpmsg),                   "getpmsg"               },
+[BASE_NR + 175] = { 5, TN,             SEN(putpmsg),                   "putpmsg"               },
+[BASE_NR + 176] = { 0, 0,              SEN(afs_syscall),               "afs_syscall"           },
+[BASE_NR + 177] = { 0, 0,              SEN(printargs),                 "reserved177"           },
+[BASE_NR + 178] = { 0, PU|NF,          SEN(gettid),                    "gettid"                },
+[BASE_NR + 179] = { 3, TD,             SEN(readahead),                 "readahead"             },
+[BASE_NR + 180] = { 5, TF,             SEN(setxattr),                  "setxattr"              },
+[BASE_NR + 181] = { 5, TF,             SEN(setxattr),                  "lsetxattr"             },
+[BASE_NR + 182] = { 5, TD,             SEN(fsetxattr),                 "fsetxattr"             },
+[BASE_NR + 183] = { 4, TF,             SEN(getxattr),                  "getxattr"              },
+[BASE_NR + 184] = { 4, TF,             SEN(getxattr),                  "lgetxattr"             },
+[BASE_NR + 185] = { 4, TD,             SEN(fgetxattr),                 "fgetxattr"             },
+[BASE_NR + 186] = { 3, TF,             SEN(listxattr),                 "listxattr"             },
+[BASE_NR + 187] = { 3, TF,             SEN(listxattr),                 "llistxattr"            },
+[BASE_NR + 188] = { 3, TD,             SEN(flistxattr),                "flistxattr"            },
+[BASE_NR + 189] = { 2, TF,             SEN(removexattr),               "removexattr"           },
+[BASE_NR + 190] = { 2, TF,             SEN(removexattr),               "lremovexattr"          },
+[BASE_NR + 191] = { 2, TD,             SEN(fremovexattr),              "fremovexattr"          },
+[BASE_NR + 192] = { 2, TS,             SEN(kill),                      "tkill"                 },
+[BASE_NR + 193] = { 1, 0,              SEN(time),                      "time"                  },
+[BASE_NR + 194] = { 6, 0,              SEN(futex_time32),              "futex"                 },
+[BASE_NR + 195] = { 3, 0,              SEN(sched_setaffinity),         "sched_setaffinity"     },
+[BASE_NR + 196] = { 3, 0,              SEN(sched_getaffinity),         "sched_getaffinity"     },
+[BASE_NR + 197] = { 3, 0,              SEN(printargs),                 "cacheflush"            },
+[BASE_NR + 198] = { 3, 0,              SEN(printargs),                 "cachectl"              },
+[BASE_NR + 199] = { 4, 0,              SEN(sysmips),                   "sysmips"               },
+[BASE_NR + 200] = { 2, TM,             SEN(io_setup),                  "io_setup"              },
+[BASE_NR + 201] = { 1, TM,             SEN(io_destroy),                "io_destroy"            },
+[BASE_NR + 202] = { 5, 0,              SEN(io_getevents_time32),       "io_getevents"          },
+[BASE_NR + 203] = { 3, 0,              SEN(io_submit),                 "io_submit"             },
+[BASE_NR + 204] = { 3, 0,              SEN(io_cancel),                 "io_cancel"             },
+[BASE_NR + 205] = { 1, TP|SE,          SEN(exit),                      "exit_group"            },
+[BASE_NR + 206] = { 3, 0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
+[BASE_NR + 207] = { 1, TD,             SEN(epoll_create),              "epoll_create"          },
+[BASE_NR + 208] = { 4, TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
+[BASE_NR + 209] = { 4, TD,             SEN(epoll_wait),                "epoll_wait"            },
+[BASE_NR + 210] = { 5, TM|SI,          SEN(remap_file_pages),          "remap_file_pages"      },
+[BASE_NR + 211] = { 0, TS,             SEN(rt_sigreturn),              "rt_sigreturn"          },
+[BASE_NR + 212] = { 3, TD,             SEN(fcntl64),                   "fcntl64"               },
+[BASE_NR + 213] = { 1, 0,              SEN(set_tid_address),           "set_tid_address"       },
+[BASE_NR + 214] = { 0, 0,              SEN(restart_syscall),           "restart_syscall"       },
+[BASE_NR + 215] = { 4, TI,             SEN(semtimedop_time32),         "semtimedop"            },
+[BASE_NR + 216] = { 4, TD,             SEN(fadvise64_64),              "fadvise64"             },
+[BASE_NR + 217] = { 3, TF|TSF|TSFA,    SEN(statfs64),                  "statfs64"              },
+[BASE_NR + 218] = { 3, TD|TFSF|TSFA,   SEN(fstatfs64),                 "fstatfs64"             },
+[BASE_NR + 219] = { 4, TD|TN,          SEN(sendfile64),                "sendfile64"            },
+[BASE_NR + 220] = { 3, 0,              SEN(timer_create),              "timer_create"          },
+[BASE_NR + 221] = { 4, 0,              SEN(timer_settime32),           "timer_settime"         },
+[BASE_NR + 222] = { 2, 0,              SEN(timer_gettime32),           "timer_gettime"         },
+[BASE_NR + 223] = { 1, 0,              SEN(timer_getoverrun),          "timer_getoverrun"      },
+[BASE_NR + 224] = { 1, 0,              SEN(timer_delete),              "timer_delete"          },
+[BASE_NR + 225] = { 2, 0,              SEN(clock_settime32),           "clock_settime"         },
+[BASE_NR + 226] = { 2, 0,              SEN(clock_gettime32),           "clock_gettime"         },
+[BASE_NR + 227] = { 2, 0,              SEN(clock_getres_time32),       "clock_getres"          },
+[BASE_NR + 228] = { 4, 0,              SEN(clock_nanosleep_time32),    "clock_nanosleep"       },
+[BASE_NR + 229] = { 3, TS,             SEN(tgkill),                    "tgkill"                },
+[BASE_NR + 230] = { 2, TF,             SEN(utimes),                    "utimes"                },
+[BASE_NR + 231] = { 6, TM,             SEN(mbind),                     "mbind"                 },
+[BASE_NR + 232] = { 5, TM,             SEN(get_mempolicy),             "get_mempolicy"         },
+[BASE_NR + 233] = { 3, TM,             SEN(set_mempolicy),             "set_mempolicy"         },
+[BASE_NR + 234] = { 4, TD,             SEN(mq_open),                   "mq_open"               },
+[BASE_NR + 235] = { 1, 0,              SEN(mq_unlink),                 "mq_unlink"             },
+[BASE_NR + 236] = { 5, TD,             SEN(mq_timedsend_time32),       "mq_timedsend"          },
+[BASE_NR + 237] = { 5, TD,             SEN(mq_timedreceive_time32),    "mq_timedreceive"       },
+[BASE_NR + 238] = { 2, TD,             SEN(mq_notify),                 "mq_notify"             },
+[BASE_NR + 239] = { 3, TD,             SEN(mq_getsetattr),             "mq_getsetattr"         },
+[BASE_NR + 240] = { 5, 0,              SEN(vserver),                   "vserver"               },
+[BASE_NR + 241] = { 5, TP,             SEN(waitid),                    "waitid"                },
+[BASE_NR + 242] = { },
+[BASE_NR + 243] = { 5, 0,              SEN(add_key),                   "add_key"               },
+[BASE_NR + 244] = { 4, 0,              SEN(request_key),               "request_key"           },
+[BASE_NR + 245] = { 5, 0,              SEN(keyctl),                    "keyctl"                },
+[BASE_NR + 246] = { 1, 0,              SEN(set_thread_area),           "set_thread_area"       },
+[BASE_NR + 247] = { 0, TD,             SEN(inotify_init),              "inotify_init"          },
+[BASE_NR + 248] = { 3, TD|TF,          SEN(inotify_add_watch),         "inotify_add_watch"     },
+[BASE_NR + 249] = { 2, TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
+[BASE_NR + 250] = { 4, TM,             SEN(migrate_pages),             "migrate_pages"         },
+[BASE_NR + 251] = { 4, TD|TF,          SEN(openat),                    "openat"                },
+[BASE_NR + 252] = { 3, TD|TF,          SEN(mkdirat),                   "mkdirat"               },
+[BASE_NR + 253] = { 4, TD|TF,          SEN(mknodat),                   "mknodat"               },
+[BASE_NR + 254] = { 5, TD|TF,          SEN(fchownat),                  "fchownat"              },
+[BASE_NR + 255] = { 3, TD|TF,          SEN(futimesat),                 "futimesat"             },
+[BASE_NR + 256] = { 4, TD|TF|TFST|TSTA,SEN(newfstatat),                "newfstatat"            },
+[BASE_NR + 257] = { 3, TD|TF,          SEN(unlinkat),                  "unlinkat"              },
+[BASE_NR + 258] = { 4, TD|TF,          SEN(renameat),                  "renameat"              },
+[BASE_NR + 259] = { 5, TD|TF,          SEN(linkat),                    "linkat"                },
+[BASE_NR + 260] = { 3, TD|TF,          SEN(symlinkat),                 "symlinkat"             },
+[BASE_NR + 261] = { 4, TD|TF,          SEN(readlinkat),                "readlinkat"            },
+[BASE_NR + 262] = { 3, TD|TF,          SEN(fchmodat),                  "fchmodat"              },
+[BASE_NR + 263] = { 3, TD|TF,          SEN(faccessat),                 "faccessat"             },
+[BASE_NR + 264] = { 6, TD,             SEN(pselect6_time32),           "pselect6"              },
+[BASE_NR + 265] = { 5, TD,             SEN(ppoll_time32),              "ppoll"                 },
+[BASE_NR + 266] = { 1, TP,             SEN(unshare),                   "unshare"               },
+[BASE_NR + 267] = { 6, TD,             SEN(splice),                    "splice"                },
+[BASE_NR + 268] = { 4, TD,             SEN(sync_file_range),           "sync_file_range"       },
+[BASE_NR + 269] = { 4, TD,             SEN(tee),                       "tee"                   },
+[BASE_NR + 270] = { 4, TD,             SEN(vmsplice),                  "vmsplice"              },
+[BASE_NR + 271] = { 6, TM,             SEN(move_pages),                "move_pages"            },
+[BASE_NR + 272] = { 2, 0,              SEN(set_robust_list),           "set_robust_list"       },
+[BASE_NR + 273] = { 3, 0,              SEN(get_robust_list),           "get_robust_list"       },
+[BASE_NR + 274] = { 4, 0,              SEN(kexec_load),                "kexec_load"            },
+[BASE_NR + 275] = { 3, 0,              SEN(getcpu),                    "getcpu"                },
+[BASE_NR + 276] = { 6, TD,             SEN(epoll_pwait),               "epoll_pwait"           },
+[BASE_NR + 277] = { 3, 0,              SEN(ioprio_set),                "ioprio_set"            },
+[BASE_NR + 278] = { 2, 0,              SEN(ioprio_get),                "ioprio_get"            },
+[BASE_NR + 279] = { 4, TD|TF,          SEN(utimensat_time32),          "utimensat"             },
+[BASE_NR + 280] = { 3, TD|TS,          SEN(signalfd),                  "signalfd"              },
+[BASE_NR + 281] = { 4, TD,             SEN(timerfd),                   "timerfd"               },
+[BASE_NR + 282] = { 1, TD,             SEN(eventfd),                   "eventfd"               },
+[BASE_NR + 283] = { 4, TD,             SEN(fallocate),                 "fallocate"             },
+[BASE_NR + 284] = { 2, TD,             SEN(timerfd_create),            "timerfd_create"        },
+[BASE_NR + 285] = { 2, TD,             SEN(timerfd_gettime32),         "timerfd_gettime"       },
+[BASE_NR + 286] = { 4, TD,             SEN(timerfd_settime32),         "timerfd_settime"       },
+[BASE_NR + 287] = { 4, TD|TS,          SEN(signalfd4),                 "signalfd4"             },
+[BASE_NR + 288] = { 2, TD,             SEN(eventfd2),                  "eventfd2"              },
+[BASE_NR + 289] = { 1, TD,             SEN(epoll_create1),             "epoll_create1"         },
+[BASE_NR + 290] = { 3, TD,             SEN(dup3),                      "dup3"                  },
+[BASE_NR + 291] = { 2, TD,             SEN(pipe2),                     "pipe2"                 },
+[BASE_NR + 292] = { 1, TD,             SEN(inotify_init1),             "inotify_init1"         },
+[BASE_NR + 293] = { 4, TD,             SEN(preadv),                    "preadv"                },
+[BASE_NR + 294] = { 4, TD,             SEN(pwritev),                   "pwritev"               },
+[BASE_NR + 295] = { 4, TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
+[BASE_NR + 296] = { 5, TD,             SEN(perf_event_open),           "perf_event_open"       },
+[BASE_NR + 297] = { 4, TN,             SEN(accept4),                   "accept4"               },
+[BASE_NR + 298] = { 5, TN,             SEN(recvmmsg_time32),           "recvmmsg"              },
+[BASE_NR + 299] = { 3, TD,             SEN(getdents64),                "getdents64"            },
+[BASE_NR + 300] = { 2, TD,             SEN(fanotify_init),             "fanotify_init"         },
+[BASE_NR + 301] = { 5, TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
+[BASE_NR + 302] = { 4, 0,              SEN(prlimit64),                 "prlimit64"             },
+[BASE_NR + 303] = { 5, TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
+[BASE_NR + 304] = { 3, TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
+[BASE_NR + 305] = { 2, 0,              SEN(clock_adjtime32),           "clock_adjtime"         },
+[BASE_NR + 306] = { 1, TD,             SEN(syncfs),                    "syncfs"                },
+[BASE_NR + 307] = { 4, TN,             SEN(sendmmsg),                  "sendmmsg"              },
+[BASE_NR + 308] = { 2, TD,             SEN(setns),                     "setns"                 },
+[BASE_NR + 309] = { 6, 0,              SEN(process_vm_readv),          "process_vm_readv"      },
+[BASE_NR + 310] = { 6, 0,              SEN(process_vm_writev),         "process_vm_writev"     },
+[BASE_NR + 311] = { 5, 0,              SEN(kcmp),                      "kcmp"                  },
+[BASE_NR + 312] = { 3, TD,             SEN(finit_module),              "finit_module"          },
+[BASE_NR + 313] = { 3, 0,              SEN(sched_setattr),             "sched_setattr"         },
+[BASE_NR + 314] = { 4, 0,              SEN(sched_getattr),             "sched_getattr"         },
+[BASE_NR + 315] = { 5, TD|TF,          SEN(renameat2),                 "renameat2"             },
+[BASE_NR + 316] = { 3, 0,              SEN(seccomp),                   "seccomp"               },
+[BASE_NR + 317] = { 3, 0,              SEN(getrandom),                 "getrandom"             },
+[BASE_NR + 318] = { 2, TD,             SEN(memfd_create),              "memfd_create"          },
+[BASE_NR + 319] = { 3, TD,             SEN(bpf),                       "bpf"                   },
+[BASE_NR + 320] = { 5, TD|TF|TP|SE|SI, SEN(execveat),                  "execveat"              },
+[BASE_NR + 321] = { 1, TD,             SEN(userfaultfd),               "userfaultfd"           },
+[BASE_NR + 322] = { 2, 0,              SEN(membarrier),                "membarrier"            },
+[BASE_NR + 323] = { 3, TM,             SEN(mlock2),                    "mlock2"                },
+[BASE_NR + 324] = { 6, TD,             SEN(copy_file_range),           "copy_file_range"       },
+[BASE_NR + 325] = { 6, TD,             SEN(preadv2),                   "preadv2"               },
+[BASE_NR + 326] = { 6, TD,             SEN(pwritev2),                  "pwritev2"              },
+[BASE_NR + 327] = { 4, TM|SI,          SEN(pkey_mprotect),             "pkey_mprotect"         },
+[BASE_NR + 328] = { 2, 0,              SEN(pkey_alloc),                "pkey_alloc"            },
+[BASE_NR + 329] = { 1, 0,              SEN(pkey_free),                 "pkey_free"             },
+[BASE_NR + 330] = { 5, TD|TF|TSTA,     SEN(statx),                     "statx"                 },
+[BASE_NR + 331] = { 4, 0,              SEN(rseq),                      "rseq"                  },
+[BASE_NR + 332] = { 6, 0,              SEN(io_pgetevents_time32),      "io_pgetevents"         },
 /* [6333 ... 6402] - reserved to sync up with other architectures */
-[6403] = { 2,  0,              SEN(clock_gettime64),           "clock_gettime64"       },
-[6404] = { 2,  0,              SEN(clock_settime64),           "clock_settime64"       },
-[6405] = { 2,  0,              SEN(clock_adjtime64),           "clock_adjtime64"       },
-[6406] = { 2,  0,              SEN(clock_getres_time64),       "clock_getres_time64"   },
-[6407] = { 4,  0,              SEN(clock_nanosleep_time64),    "clock_nanosleep_time64"},
-[6408] = { 2,  0,              SEN(timer_gettime64),           "timer_gettime64"       },
-[6409] = { 4,  0,              SEN(timer_settime64),           "timer_settime64"       },
-[6410] = { 2,  TD,             SEN(timerfd_gettime64),         "timerfd_gettime64"     },
-[6411] = { 4,  TD,             SEN(timerfd_settime64),         "timerfd_settime64"     },
-[6412] = { 4,  TD|TF,          SEN(utimensat_time64),          "utimensat_time64"      },
-[6413] = { 6,  TD,             SEN(pselect6_time64),           "pselect6_time64"       },
-[6414] = { 5,  TD,             SEN(ppoll_time64),              "ppoll_time64"          },
-[6416] = { 6,  0,              SEN(io_pgetevents_time64),      "io_pgetevents_time64"  },
-[6417] = { 5,  TN,             SEN(recvmmsg_time64),           "recvmmsg_time64"       },
-[6418] = { 5,  TD,             SEN(mq_timedsend_time64),       "mq_timedsend_time64"   },
-[6419] = { 5,  TD,             SEN(mq_timedreceive_time64),    "mq_timedreceive_time64"},
-[6420] = { 4,  TI,             SEN(semtimedop_time64),         "semtimedop_time64"     },
-[6421] = { 4,  TS,             SEN(rt_sigtimedwait_time64),    "rt_sigtimedwait_time64"},
-[6422] = { 6,  0,              SEN(futex_time64),              "futex_time64"          },
-[6423] = { 2,  0,              SEN(sched_rr_get_interval_time64),      "sched_rr_get_interval_time64"  },
-[6424] = { 4,  TD|TS,          SEN(pidfd_send_signal),         "pidfd_send_signal"     },
-[6425] = { 2,  TD,             SEN(io_uring_setup),            "io_uring_setup"        },
-[6426] = { 6,  TD|TS,          SEN(io_uring_enter),            "io_uring_enter"        },
-[6427] = { 4,  TD|TM,          SEN(io_uring_register),         "io_uring_register"     },
+[BASE_NR + 403] = { 2, 0,              SEN(clock_gettime64),           "clock_gettime64"       },
+[BASE_NR + 404] = { 2, 0,              SEN(clock_settime64),           "clock_settime64"       },
+[BASE_NR + 405] = { 2, 0,              SEN(clock_adjtime64),           "clock_adjtime64"       },
+[BASE_NR + 406] = { 2, 0,              SEN(clock_getres_time64),       "clock_getres_time64"   },
+[BASE_NR + 407] = { 4, 0,              SEN(clock_nanosleep_time64),    "clock_nanosleep_time64"},
+[BASE_NR + 408] = { 2, 0,              SEN(timer_gettime64),           "timer_gettime64"       },
+[BASE_NR + 409] = { 4, 0,              SEN(timer_settime64),           "timer_settime64"       },
+[BASE_NR + 410] = { 2, TD,             SEN(timerfd_gettime64),         "timerfd_gettime64"     },
+[BASE_NR + 411] = { 4, TD,             SEN(timerfd_settime64),         "timerfd_settime64"     },
+[BASE_NR + 412] = { 4, TD|TF,          SEN(utimensat_time64),          "utimensat_time64"      },
+[BASE_NR + 413] = { 6, TD,             SEN(pselect6_time64),           "pselect6_time64"       },
+[BASE_NR + 414] = { 5, TD,             SEN(ppoll_time64),              "ppoll_time64"          },
+[BASE_NR + 416] = { 6, 0,              SEN(io_pgetevents_time64),      "io_pgetevents_time64"  },
+[BASE_NR + 417] = { 5, TN,             SEN(recvmmsg_time64),           "recvmmsg_time64"       },
+[BASE_NR + 418] = { 5, TD,             SEN(mq_timedsend_time64),       "mq_timedsend_time64"   },
+[BASE_NR + 419] = { 5, TD,             SEN(mq_timedreceive_time64),    "mq_timedreceive_time64"},
+[BASE_NR + 420] = { 4, TI,             SEN(semtimedop_time64),         "semtimedop_time64"     },
+[BASE_NR + 421] = { 4, TS,             SEN(rt_sigtimedwait_time64),    "rt_sigtimedwait_time64"},
+[BASE_NR + 422] = { 6, 0,              SEN(futex_time64),              "futex_time64"          },
+[BASE_NR + 423] = { 2, 0,              SEN(sched_rr_get_interval_time64),      "sched_rr_get_interval_time64"  },
+[BASE_NR + 424] = { 4, TD|TS,          SEN(pidfd_send_signal),         "pidfd_send_signal"     },
+[BASE_NR + 425] = { 2, TD,             SEN(io_uring_setup),            "io_uring_setup"        },
+[BASE_NR + 426] = { 6, TD|TS,          SEN(io_uring_enter),            "io_uring_enter"        },
+[BASE_NR + 427] = { 4, TD|TM,          SEN(io_uring_register),         "io_uring_register"     },
 
 # define SYS_socket_subcall      6500
 # include "subcall32.h"
 # include "syscallent-n32-stub.h"
 
 #endif
+#undef BASE_NR
index 15db301eecd580700b9f216230eb18e49a2046a2..96f90e8391aca9eb914f69b18dcade831bfbdeb9 100644 (file)
  * SPDX-License-Identifier: LGPL-2.1-or-later
  */
 
+#define BASE_NR 5000
 #if defined LINUX_MIPSN64
 /* For an N64 strace decode the N64 64-bit syscalls. */
-[5000] = { 3,  TD,             SEN(read),                      "read"                  }, /* start of Linux N64 */
-[5001] = { 3,  TD,             SEN(write),                     "write"                 },
-[5002] = { 3,  TD|TF,          SEN(open),                      "open"                  },
-[5003] = { 1,  TD,             SEN(close),                     "close"                 },
-[5004] = { 2,  TF|TST|TSTA,    SEN(stat),                      "stat"                  },
-[5005] = { 2,  TD|TFST|TSTA,   SEN(fstat),                     "fstat"                 },
-[5006] = { 2,  TF|TLST|TSTA,   SEN(lstat),                     "lstat"                 },
-[5007] = { 3,  TD,             SEN(poll_time64),               "poll"                  },
-[5008] = { 3,  TD,             SEN(lseek),                     "lseek"                 },
-[5009] = { 6,  TD|TM|SI,       SEN(mmap),                      "mmap"                  },
-[5010] = { 3,  TM|SI,          SEN(mprotect),                  "mprotect"              },
-[5011] = { 2,  TM|SI,          SEN(munmap),                    "munmap"                },
-[5012] = { 1,  TM|SI,          SEN(brk),                       "brk"                   },
-[5013] = { 4,  TS,             SEN(rt_sigaction),              "rt_sigaction"          },
-[5014] = { 4,  TS,             SEN(rt_sigprocmask),            "rt_sigprocmask"        },
-[5015] = { 3,  TD,             SEN(ioctl),                     "ioctl"                 },
-[5016] = { 4,  TD,             SEN(pread),                     "pread64"               },
-[5017] = { 4,  TD,             SEN(pwrite),                    "pwrite64"              },
-[5018] = { 3,  TD,             SEN(readv),                     "readv"                 },
-[5019] = { 3,  TD,             SEN(writev),                    "writev"                },
-[5020] = { 2,  TF,             SEN(access),                    "access"                },
-[5021] = { 0,  TD,             SEN(pipe),                      "pipe"                  },
-[5022] = { 5,  TD,             SEN(select),                    "_newselect"            },
-[5023] = { 0,  0,              SEN(sched_yield),               "sched_yield"           },
-[5024] = { 5,  TM|SI,          SEN(mremap),                    "mremap"                },
-[5025] = { 3,  TM,             SEN(msync),                     "msync"                 },
-[5026] = { 3,  TM,             SEN(mincore),                   "mincore"               },
-[5027] = { 3,  TM,             SEN(madvise),                   "madvise"               },
-[5028] = { 3,  TI,             SEN(shmget),                    "shmget"                },
-[5029] = { 3,  TI|TM|SI,       SEN(shmat),                     "shmat"                 },
-[5030] = { 3,  TI,             SEN(shmctl),                    "shmctl"                },
-[5031] = { 1,  TD,             SEN(dup),                       "dup"                   },
-[5032] = { 2,  TD,             SEN(dup2),                      "dup2"                  },
-[5033] = { 0,  TS,             SEN(pause),                     "pause"                 },
-[5034] = { 2,  0,              SEN(nanosleep_time64),          "nanosleep"             },
-[5035] = { 2,  0,              SEN(getitimer),                 "getitimer"             },
-[5036] = { 3,  0,              SEN(setitimer),                 "setitimer"             },
-[5037] = { 1,  0,              SEN(alarm),                     "alarm"                 },
-[5038] = { 0,  PU|NF,          SEN(getpid),                    "getpid"                },
-[5039] = { 4,  TD|TN,          SEN(sendfile),                  "sendfile"              },
-[5040] = { 3,  TN,             SEN(socket),                    "socket"                },
-[5041] = { 3,  TN,             SEN(connect),                   "connect"               },
-[5042] = { 3,  TN,             SEN(accept),                    "accept"                },
-[5043] = { 6,  TN,             SEN(sendto),                    "sendto"                },
-[5044] = { 6,  TN,             SEN(recvfrom),                  "recvfrom"              },
-[5045] = { 3,  TN,             SEN(sendmsg),                   "sendmsg"               },
-[5046] = { 3,  TN,             SEN(recvmsg),                   "recvmsg"               },
-[5047] = { 2,  TN,             SEN(shutdown),                  "shutdown"              },
-[5048] = { 3,  TN,             SEN(bind),                      "bind"                  },
-[5049] = { 2,  TN,             SEN(listen),                    "listen"                },
-[5050] = { 3,  TN,             SEN(getsockname),               "getsockname"           },
-[5051] = { 3,  TN,             SEN(getpeername),               "getpeername"           },
-[5052] = { 4,  TN,             SEN(socketpair),                "socketpair"            },
-[5053] = { 5,  TN,             SEN(setsockopt),                "setsockopt"            },
-[5054] = { 5,  TN,             SEN(getsockopt),                "getsockopt"            },
-[5055] = { 5,  TP,             SEN(clone),                     "clone"                 },
-[5056] = { 0,  TP,             SEN(fork),                      "fork"                  },
-[5057] = { 3,  TF|TP|SE|SI,    SEN(execve),                    "execve"                },
-[5058] = { 1,  TP|SE,          SEN(exit),                      "exit"                  },
-[5059] = { 4,  TP,             SEN(wait4),                     "wait4"                 },
-[5060] = { 2,  TS,             SEN(kill),                      "kill"                  },
-[5061] = { 1,  0,              SEN(uname),                     "uname"                 },
-[5062] = { 3,  TI,             SEN(semget),                    "semget"                },
-[5063] = { 3,  TI,             SEN(semop),                     "semop"                 },
-[5064] = { 4,  TI,             SEN(semctl),                    "semctl"                },
-[5065] = { 1,  TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
-[5066] = { 2,  TI,             SEN(msgget),                    "msgget"                },
-[5067] = { 4,  TI,             SEN(msgsnd),                    "msgsnd"                },
-[5068] = { 5,  TI,             SEN(msgrcv),                    "msgrcv"                },
-[5069] = { 3,  TI,             SEN(msgctl),                    "msgctl"                },
-[5070] = { 3,  TD,             SEN(fcntl),                     "fcntl"                 },
-[5071] = { 2,  TD,             SEN(flock),                     "flock"                 },
-[5072] = { 1,  TD,             SEN(fsync),                     "fsync"                 },
-[5073] = { 1,  TD,             SEN(fdatasync),                 "fdatasync"             },
-[5074] = { 2,  TF,             SEN(truncate),                  "truncate"              },
-[5075] = { 2,  TD,             SEN(ftruncate),                 "ftruncate"             },
-[5076] = { 3,  TD,             SEN(getdents),                  "getdents"              },
-[5077] = { 2,  TF,             SEN(getcwd),                    "getcwd"                },
-[5078] = { 1,  TF,             SEN(chdir),                     "chdir"                 },
-[5079] = { 1,  TD,             SEN(fchdir),                    "fchdir"                },
-[5080] = { 2,  TF,             SEN(rename),                    "rename"                },
-[5081] = { 2,  TF,             SEN(mkdir),                     "mkdir"                 },
-[5082] = { 1,  TF,             SEN(rmdir),                     "rmdir"                 },
-[5083] = { 2,  TD|TF,          SEN(creat),                     "creat"                 },
-[5084] = { 2,  TF,             SEN(link),                      "link"                  },
-[5085] = { 1,  TF,             SEN(unlink),                    "unlink"                },
-[5086] = { 2,  TF,             SEN(symlink),                   "symlink"               },
-[5087] = { 3,  TF,             SEN(readlink),                  "readlink"              },
-[5088] = { 2,  TF,             SEN(chmod),                     "chmod"                 },
-[5089] = { 2,  TD,             SEN(fchmod),                    "fchmod"                },
-[5090] = { 3,  TF,             SEN(chown),                     "chown"                 },
-[5091] = { 3,  TD,             SEN(fchown),                    "fchown"                },
-[5092] = { 3,  TF,             SEN(chown),                     "lchown"                },
-[5093] = { 1,  NF,             SEN(umask),                     "umask"                 },
-[5094] = { 2,  0,              SEN(gettimeofday),              "gettimeofday"          },
-[5095] = { 2,  0,              SEN(getrlimit),                 "getrlimit"             },
-[5096] = { 2,  0,              SEN(getrusage),                 "getrusage"             },
-[5097] = { 1,  0,              SEN(sysinfo),                   "sysinfo"               },
-[5098] = { 1,  0,              SEN(times),                     "times"                 },
-[5099] = { 4,  0,              SEN(ptrace),                    "ptrace"                },
-[5100] = { 0,  PU|NF,          SEN(getuid),                    "getuid"                },
-[5101] = { 3,  0,              SEN(syslog),                    "syslog"                },
-[5102] = { 0,  PU|NF,          SEN(getgid),                    "getgid"                },
-[5103] = { 1,  0,              SEN(setuid),                    "setuid"                },
-[5104] = { 1,  0,              SEN(setgid),                    "setgid"                },
-[5105] = { 0,  PU|NF,          SEN(geteuid),                   "geteuid"               },
-[5106] = { 0,  PU|NF,          SEN(getegid),                   "getegid"               },
-[5107] = { 2,  0,              SEN(setpgid),                   "setpgid"               },
-[5108] = { 0,  PU|NF,          SEN(getppid),                   "getppid"               },
-[5109] = { 0,  PU|NF,          SEN(getpgrp),                   "getpgrp"               },
-[5110] = { 0,  0,              SEN(setsid),                    "setsid"                },
-[5111] = { 2,  0,              SEN(setreuid),                  "setreuid"              },
-[5112] = { 2,  0,              SEN(setregid),                  "setregid"              },
-[5113] = { 2,  0,              SEN(getgroups),                 "getgroups"             },
-[5114] = { 2,  0,              SEN(setgroups),                 "setgroups"             },
-[5115] = { 3,  0,              SEN(setresuid),                 "setresuid"             },
-[5116] = { 3,  0,              SEN(getresuid),                 "getresuid"             },
-[5117] = { 3,  0,              SEN(setresgid),                 "setresgid"             },
-[5118] = { 3,  0,              SEN(getresgid),                 "getresgid"             },
-[5119] = { 1,  0,              SEN(getpgid),                   "getpgid"               },
-[5120] = { 1,  NF,             SEN(setfsuid),                  "setfsuid"              },
-[5121] = { 1,  NF,             SEN(setfsgid),                  "setfsgid"              },
-[5122] = { 1,  0,              SEN(getsid),                    "getsid"                },
-[5123] = { 2,  0,              SEN(capget),                    "capget"                },
-[5124] = { 2,  0,              SEN(capset),                    "capset"                },
-[5125] = { 2,  TS,             SEN(rt_sigpending),             "rt_sigpending"         },
-[5126] = { 4,  TS,             SEN(rt_sigtimedwait_time64),    "rt_sigtimedwait"       },
-[5127] = { 3,  TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
-[5128] = { 2,  TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
-[5129] = { 2,  TS,             SEN(sigaltstack),               "sigaltstack"           },
-[5130] = { 2,  TF,             SEN(utime),                     "utime"                 },
-[5131] = { 3,  TF,             SEN(mknod),                     "mknod"                 },
-[5132] = { 1,  NF,             SEN(personality),               "personality"           },
-[5133] = { 2,  TSFA,           SEN(ustat),                     "ustat"                 },
-[5134] = { 2,  TF|TSF|TSFA,    SEN(statfs),                    "statfs"                },
-[5135] = { 2,  TD|TFSF|TSFA,   SEN(fstatfs),                   "fstatfs"               },
-[5136] = { 3,  0,              SEN(sysfs),                     "sysfs"                 },
-[5137] = { 2,  0,              SEN(getpriority),               "getpriority"           },
-[5138] = { 3,  0,              SEN(setpriority),               "setpriority"           },
-[5139] = { 2,  0,              SEN(sched_setparam),            "sched_setparam"        },
-[5140] = { 2,  0,              SEN(sched_getparam),            "sched_getparam"        },
-[5141] = { 3,  0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
-[5142] = { 1,  0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
-[5143] = { 1,  0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
-[5144] = { 1,  0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
-[5145] = { 2,  0,              SEN(sched_rr_get_interval_time64),"sched_rr_get_interval"},
-[5146] = { 2,  TM,             SEN(mlock),                     "mlock"                 },
-[5147] = { 2,  TM,             SEN(munlock),                   "munlock"               },
-[5148] = { 1,  TM,             SEN(mlockall),                  "mlockall"              },
-[5149] = { 0,  TM,             SEN(munlockall),                "munlockall"            },
-[5150] = { 0,  0,              SEN(vhangup),                   "vhangup"               },
-[5151] = { 2,  TF,             SEN(pivotroot),                 "pivot_root"            },
-[5152] = { 1,  0,              SEN(sysctl),                    "_sysctl"               },
-[5153] = { 5,  0,              SEN(prctl),                     "prctl"                 },
-[5154] = { 1,  0,              SEN(adjtimex64),                "adjtimex"              },
-[5155] = { 2,  0,              SEN(setrlimit),                 "setrlimit"             },
-[5156] = { 1,  TF,             SEN(chroot),                    "chroot"                },
-[5157] = { 0,  0,              SEN(sync),                      "sync"                  },
-[5158] = { 1,  TF,             SEN(acct),                      "acct"                  },
-[5159] = { 2,  0,              SEN(settimeofday),              "settimeofday"          },
-[5160] = { 5,  TF,             SEN(mount),                     "mount"                 },
-[5161] = { 2,  TF,             SEN(umount2),                   "umount2"               },
-[5162] = { 2,  TF,             SEN(swapon),                    "swapon"                },
-[5163] = { 1,  TF,             SEN(swapoff),                   "swapoff"               },
-[5164] = { 4,  0,              SEN(reboot),                    "reboot"                },
-[5165] = { 2,  0,              SEN(sethostname),               "sethostname"           },
-[5166] = { 2,  0,              SEN(setdomainname),             "setdomainname"         },
-[5167] = { 2,  0,              SEN(create_module),             "create_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"              },
-[5173] = { 3,  0,              SEN(nfsservctl),                "nfsservctl"            },
-[5174] = { 5,  TN,             SEN(getpmsg),                   "getpmsg"               },
-[5175] = { 5,  TN,             SEN(putpmsg),                   "putpmsg"               },
-[5176] = { 0,  0,              SEN(afs_syscall),               "afs_syscall"           },
-[5177] = { 0,  0,              SEN(printargs),                 "reserved177"           },
-[5178] = { 0,  PU|NF,          SEN(gettid),                    "gettid"                },
-[5179] = { 3,  TD,             SEN(readahead),                 "readahead"             },
-[5180] = { 5,  TF,             SEN(setxattr),                  "setxattr"              },
-[5181] = { 5,  TF,             SEN(setxattr),                  "lsetxattr"             },
-[5182] = { 5,  TD,             SEN(fsetxattr),                 "fsetxattr"             },
-[5183] = { 4,  TF,             SEN(getxattr),                  "getxattr"              },
-[5184] = { 4,  TF,             SEN(getxattr),                  "lgetxattr"             },
-[5185] = { 4,  TD,             SEN(fgetxattr),                 "fgetxattr"             },
-[5186] = { 3,  TF,             SEN(listxattr),                 "listxattr"             },
-[5187] = { 3,  TF,             SEN(listxattr),                 "llistxattr"            },
-[5188] = { 3,  TD,             SEN(flistxattr),                "flistxattr"            },
-[5189] = { 2,  TF,             SEN(removexattr),               "removexattr"           },
-[5190] = { 2,  TF,             SEN(removexattr),               "lremovexattr"          },
-[5191] = { 2,  TD,             SEN(fremovexattr),              "fremovexattr"          },
-[5192] = { 2,  TS,             SEN(kill),                      "tkill"                 },
-[5193] = { 1,  0,              SEN(time),                      "time"                  },
-[5194] = { 6,  0,              SEN(futex_time64),              "futex"                 },
-[5195] = { 3,  0,              SEN(sched_setaffinity),         "sched_setaffinity"     },
-[5196] = { 3,  0,              SEN(sched_getaffinity),         "sched_getaffinity"     },
-[5197] = { 3,  0,              SEN(printargs),                 "cacheflush"            },
-[5198] = { 3,  0,              SEN(printargs),                 "cachectl"              },
-[5199] = { 4,  0,              SEN(sysmips),                   "sysmips"               },
-[5200] = { 2,  TM,             SEN(io_setup),                  "io_setup"              },
-[5201] = { 1,  TM,             SEN(io_destroy),                "io_destroy"            },
-[5202] = { 5,  0,              SEN(io_getevents_time64),       "io_getevents"          },
-[5203] = { 3,  0,              SEN(io_submit),                 "io_submit"             },
-[5204] = { 3,  0,              SEN(io_cancel),                 "io_cancel"             },
-[5205] = { 1,  TP|SE,          SEN(exit),                      "exit_group"            },
-[5206] = { 3,  0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
-[5207] = { 1,  TD,             SEN(epoll_create),              "epoll_create"          },
-[5208] = { 4,  TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
-[5209] = { 4,  TD,             SEN(epoll_wait),                "epoll_wait"            },
-[5210] = { 5,  TM|SI,          SEN(remap_file_pages),          "remap_file_pages"      },
-[5211] = { 0,  TS,             SEN(rt_sigreturn),              "rt_sigreturn"          },
-[5212] = { 1,  0,              SEN(set_tid_address),           "set_tid_address"       },
-[5213] = { 0,  0,              SEN(restart_syscall),           "restart_syscall"       },
-[5214] = { 4,  TI,             SEN(semtimedop_time64),         "semtimedop"            },
-[5215] = { 4,  TD,             SEN(fadvise64),                 "fadvise64"             },
-[5216] = { 3,  0,              SEN(timer_create),              "timer_create"          },
-[5217] = { 4,  0,              SEN(timer_settime64),           "timer_settime"         },
-[5218] = { 2,  0,              SEN(timer_gettime64),           "timer_gettime"         },
-[5219] = { 1,  0,              SEN(timer_getoverrun),          "timer_getoverrun"      },
-[5220] = { 1,  0,              SEN(timer_delete),              "timer_delete"          },
-[5221] = { 2,  0,              SEN(clock_settime64),           "clock_settime"         },
-[5222] = { 2,  0,              SEN(clock_gettime64),           "clock_gettime"         },
-[5223] = { 2,  0,              SEN(clock_getres_time64),       "clock_getres"          },
-[5224] = { 4,  0,              SEN(clock_nanosleep_time64),    "clock_nanosleep"       },
-[5225] = { 3,  TS,             SEN(tgkill),                    "tgkill"                },
-[5226] = { 2,  TF,             SEN(utimes),                    "utimes"                },
-[5227] = { 6,  TM,             SEN(mbind),                     "mbind"                 },
-[5228] = { 5,  TM,             SEN(get_mempolicy),             "get_mempolicy"         },
-[5229] = { 3,  TM,             SEN(set_mempolicy),             "set_mempolicy"         },
-[5230] = { 4,  TD,             SEN(mq_open),                   "mq_open"               },
-[5231] = { 1,  0,              SEN(mq_unlink),                 "mq_unlink"             },
-[5232] = { 5,  TD,             SEN(mq_timedsend_time64),       "mq_timedsend"          },
-[5233] = { 5,  TD,             SEN(mq_timedreceive_time64),    "mq_timedreceive"       },
-[5234] = { 2,  TD,             SEN(mq_notify),                 "mq_notify"             },
-[5235] = { 3,  TD,             SEN(mq_getsetattr),             "mq_getsetattr"         },
-[5236] = { 5,  0,              SEN(vserver),                   "vserver"               },
-[5237] = { 5,  TP,             SEN(waitid),                    "waitid"                },
-[5238] = { },
-[5239] = { 5,  0,              SEN(add_key),                   "add_key"               },
-[5240] = { 4,  0,              SEN(request_key),               "request_key"           },
-[5241] = { 5,  0,              SEN(keyctl),                    "keyctl"                },
-[5242] = { 1,  0,              SEN(set_thread_area),           "set_thread_area"       },
-[5243] = { 0,  TD,             SEN(inotify_init),              "inotify_init"          },
-[5244] = { 3,  TD|TF,          SEN(inotify_add_watch),         "inotify_add_watch"     },
-[5245] = { 2,  TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
-[5246] = { 4,  TM,             SEN(migrate_pages),             "migrate_pages"         },
-[5247] = { 4,  TD|TF,          SEN(openat),                    "openat"                },
-[5248] = { 3,  TD|TF,          SEN(mkdirat),                   "mkdirat"               },
-[5249] = { 4,  TD|TF,          SEN(mknodat),                   "mknodat"               },
-[5250] = { 5,  TD|TF,          SEN(fchownat),                  "fchownat"              },
-[5251] = { 3,  TD|TF,          SEN(futimesat),                 "futimesat"             },
-[5252] = { 4,  TD|TF|TFST|TSTA,SEN(newfstatat),                "newfstatat"            },
-[5253] = { 3,  TD|TF,          SEN(unlinkat),                  "unlinkat"              },
-[5254] = { 4,  TD|TF,          SEN(renameat),                  "renameat"              },
-[5255] = { 5,  TD|TF,          SEN(linkat),                    "linkat"                },
-[5256] = { 3,  TD|TF,          SEN(symlinkat),                 "symlinkat"             },
-[5257] = { 4,  TD|TF,          SEN(readlinkat),                "readlinkat"            },
-[5258] = { 3,  TD|TF,          SEN(fchmodat),                  "fchmodat"              },
-[5259] = { 3,  TD|TF,          SEN(faccessat),                 "faccessat"             },
-[5260] = { 6,  TD,             SEN(pselect6_time64),           "pselect6"              },
-[5261] = { 5,  TD,             SEN(ppoll_time64),              "ppoll"                 },
-[5262] = { 1,  TP,             SEN(unshare),                   "unshare"               },
-[5263] = { 6,  TD,             SEN(splice),                    "splice"                },
-[5264] = { 4,  TD,             SEN(sync_file_range),           "sync_file_range"       },
-[5265] = { 4,  TD,             SEN(tee),                       "tee"                   },
-[5266] = { 4,  TD,             SEN(vmsplice),                  "vmsplice"              },
-[5267] = { 6,  TM,             SEN(move_pages),                "move_pages"            },
-[5268] = { 2,  0,              SEN(set_robust_list),           "set_robust_list"       },
-[5269] = { 3,  0,              SEN(get_robust_list),           "get_robust_list"       },
-[5270] = { 4,  0,              SEN(kexec_load),                "kexec_load"            },
-[5271] = { 3,  0,              SEN(getcpu),                    "getcpu"                },
-[5272] = { 6,  TD,             SEN(epoll_pwait),               "epoll_pwait"           },
-[5273] = { 3,  0,              SEN(ioprio_set),                "ioprio_set"            },
-[5274] = { 2,  0,              SEN(ioprio_get),                "ioprio_get"            },
-[5275] = { 4,  TD|TF,          SEN(utimensat_time64),          "utimensat"             },
-[5276] = { 3,  TD|TS,          SEN(signalfd),                  "signalfd"              },
-[5277] = { 4,  TD,             SEN(timerfd),                   "timerfd"               },
-[5278] = { 1,  TD,             SEN(eventfd),                   "eventfd"               },
-[5279] = { 4,  TD,             SEN(fallocate),                 "fallocate"             },
-[5280] = { 2,  TD,             SEN(timerfd_create),            "timerfd_create"        },
-[5281] = { 2,  TD,             SEN(timerfd_gettime64),         "timerfd_gettime"       },
-[5282] = { 4,  TD,             SEN(timerfd_settime64),         "timerfd_settime"       },
-[5283] = { 4,  TD|TS,          SEN(signalfd4),                 "signalfd4"             },
-[5284] = { 2,  TD,             SEN(eventfd2),                  "eventfd2"              },
-[5285] = { 1,  TD,             SEN(epoll_create1),             "epoll_create1"         },
-[5286] = { 3,  TD,             SEN(dup3),                      "dup3"                  },
-[5287] = { 2,  TD,             SEN(pipe2),                     "pipe2"                 },
-[5288] = { 1,  TD,             SEN(inotify_init1),             "inotify_init1"         },
-[5289] = { 4,  TD,             SEN(preadv),                    "preadv"                },
-[5290] = { 4,  TD,             SEN(pwritev),                   "pwritev"               },
-[5291] = { 4,  TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
-[5292] = { 5,  TD,             SEN(perf_event_open),           "perf_event_open"       },
-[5293] = { 4,  TN,             SEN(accept4),                   "accept4"               },
-[5294] = { 5,  TN,             SEN(recvmmsg_time64),           "recvmmsg"              },
-[5295] = { 2,  TD,             SEN(fanotify_init),             "fanotify_init"         },
-[5296] = { 5,  TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
-[5297] = { 4,  0,              SEN(prlimit64),                 "prlimit64"             },
-[5298] = { 5,  TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
-[5299] = { 3,  TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
-[5300] = { 2,  0,              SEN(clock_adjtime64),           "clock_adjtime"         },
-[5301] = { 1,  TD,             SEN(syncfs),                    "syncfs"                },
-[5302] = { 4,  TN,             SEN(sendmmsg),                  "sendmmsg"              },
-[5303] = { 2,  TD,             SEN(setns),                     "setns"                 },
-[5304] = { 6,  0,              SEN(process_vm_readv),          "process_vm_readv"      },
-[5305] = { 6,  0,              SEN(process_vm_writev),         "process_vm_writev"     },
-[5306] = { 5,  0,              SEN(kcmp),                      "kcmp"                  },
-[5307] = { 3,  TD,             SEN(finit_module),              "finit_module"          },
-[5308] = { 3,  TD,             SEN(getdents64),                "getdents64"            },
-[5309] = { 3,  0,              SEN(sched_setattr),             "sched_setattr"         },
-[5310] = { 4,  0,              SEN(sched_getattr),             "sched_getattr"         },
-[5311] = { 5,  TD|TF,          SEN(renameat2),                 "renameat2"             },
-[5312] = { 3,  0,              SEN(seccomp),                   "seccomp"               },
-[5313] = { 3,  0,              SEN(getrandom),                 "getrandom"             },
-[5314] = { 2,  TD,             SEN(memfd_create),              "memfd_create"          },
-[5315] = { 3,  TD,             SEN(bpf),                       "bpf"                   },
-[5316] = { 5,  TD|TF|TP|SE|SI, SEN(execveat),                  "execveat"              },
-[5317] = { 1,  TD,             SEN(userfaultfd),               "userfaultfd"           },
-[5318] = { 2,  0,              SEN(membarrier),                "membarrier"            },
-[5319] = { 3,  TM,             SEN(mlock2),                    "mlock2"                },
-[5320] = { 6,  TD,             SEN(copy_file_range),           "copy_file_range"       },
-[5321] = { 6,  TD,             SEN(preadv2),                   "preadv2"               },
-[5322] = { 6,  TD,             SEN(pwritev2),                  "pwritev2"              },
-[5323] = { 4,  TM|SI,          SEN(pkey_mprotect),             "pkey_mprotect"         },
-[5324] = { 2,  0,              SEN(pkey_alloc),                "pkey_alloc"            },
-[5325] = { 1,  0,              SEN(pkey_free),                 "pkey_free"             },
-[5326] = { 5,  TD|TF|TSTA,     SEN(statx),                     "statx"                 },
-[5327] = { 4,  0,              SEN(rseq),                      "rseq"                  },
-[5328] = { 6,  0,              SEN(io_pgetevents_time64),      "io_pgetevents"         },
+[BASE_NR +   0] = { 3, TD,             SEN(read),                      "read"                  }, /* start of Linux N64 */
+[BASE_NR +   1] = { 3, TD,             SEN(write),                     "write"                 },
+[BASE_NR +   2] = { 3, TD|TF,          SEN(open),                      "open"                  },
+[BASE_NR +   3] = { 1, TD,             SEN(close),                     "close"                 },
+[BASE_NR +   4] = { 2, TF|TST|TSTA,    SEN(stat),                      "stat"                  },
+[BASE_NR +   5] = { 2, TD|TFST|TSTA,   SEN(fstat),                     "fstat"                 },
+[BASE_NR +   6] = { 2, TF|TLST|TSTA,   SEN(lstat),                     "lstat"                 },
+[BASE_NR +   7] = { 3, TD,             SEN(poll_time64),               "poll"                  },
+[BASE_NR +   8] = { 3, TD,             SEN(lseek),                     "lseek"                 },
+[BASE_NR +   9] = { 6, TD|TM|SI,       SEN(mmap),                      "mmap"                  },
+[BASE_NR +  10] = { 3, TM|SI,          SEN(mprotect),                  "mprotect"              },
+[BASE_NR +  11] = { 2, TM|SI,          SEN(munmap),                    "munmap"                },
+[BASE_NR +  12] = { 1, TM|SI,          SEN(brk),                       "brk"                   },
+[BASE_NR +  13] = { 4, TS,             SEN(rt_sigaction),              "rt_sigaction"          },
+[BASE_NR +  14] = { 4, TS,             SEN(rt_sigprocmask),            "rt_sigprocmask"        },
+[BASE_NR +  15] = { 3, TD,             SEN(ioctl),                     "ioctl"                 },
+[BASE_NR +  16] = { 4, TD,             SEN(pread),                     "pread64"               },
+[BASE_NR +  17] = { 4, TD,             SEN(pwrite),                    "pwrite64"              },
+[BASE_NR +  18] = { 3, TD,             SEN(readv),                     "readv"                 },
+[BASE_NR +  19] = { 3, TD,             SEN(writev),                    "writev"                },
+[BASE_NR +  20] = { 2, TF,             SEN(access),                    "access"                },
+[BASE_NR +  21] = { 0, TD,             SEN(pipe),                      "pipe"                  },
+[BASE_NR +  22] = { 5, TD,             SEN(select),                    "_newselect"            },
+[BASE_NR +  23] = { 0, 0,              SEN(sched_yield),               "sched_yield"           },
+[BASE_NR +  24] = { 5, TM|SI,          SEN(mremap),                    "mremap"                },
+[BASE_NR +  25] = { 3, TM,             SEN(msync),                     "msync"                 },
+[BASE_NR +  26] = { 3, TM,             SEN(mincore),                   "mincore"               },
+[BASE_NR +  27] = { 3, TM,             SEN(madvise),                   "madvise"               },
+[BASE_NR +  28] = { 3, TI,             SEN(shmget),                    "shmget"                },
+[BASE_NR +  29] = { 3, TI|TM|SI,       SEN(shmat),                     "shmat"                 },
+[BASE_NR +  30] = { 3, TI,             SEN(shmctl),                    "shmctl"                },
+[BASE_NR +  31] = { 1, TD,             SEN(dup),                       "dup"                   },
+[BASE_NR +  32] = { 2, TD,             SEN(dup2),                      "dup2"                  },
+[BASE_NR +  33] = { 0, TS,             SEN(pause),                     "pause"                 },
+[BASE_NR +  34] = { 2, 0,              SEN(nanosleep_time64),          "nanosleep"             },
+[BASE_NR +  35] = { 2, 0,              SEN(getitimer),                 "getitimer"             },
+[BASE_NR +  36] = { 3, 0,              SEN(setitimer),                 "setitimer"             },
+[BASE_NR +  37] = { 1, 0,              SEN(alarm),                     "alarm"                 },
+[BASE_NR +  38] = { 0, PU|NF,          SEN(getpid),                    "getpid"                },
+[BASE_NR +  39] = { 4, TD|TN,          SEN(sendfile),                  "sendfile"              },
+[BASE_NR +  40] = { 3, TN,             SEN(socket),                    "socket"                },
+[BASE_NR +  41] = { 3, TN,             SEN(connect),                   "connect"               },
+[BASE_NR +  42] = { 3, TN,             SEN(accept),                    "accept"                },
+[BASE_NR +  43] = { 6, TN,             SEN(sendto),                    "sendto"                },
+[BASE_NR +  44] = { 6, TN,             SEN(recvfrom),                  "recvfrom"              },
+[BASE_NR +  45] = { 3, TN,             SEN(sendmsg),                   "sendmsg"               },
+[BASE_NR +  46] = { 3, TN,             SEN(recvmsg),                   "recvmsg"               },
+[BASE_NR +  47] = { 2, TN,             SEN(shutdown),                  "shutdown"              },
+[BASE_NR +  48] = { 3, TN,             SEN(bind),                      "bind"                  },
+[BASE_NR +  49] = { 2, TN,             SEN(listen),                    "listen"                },
+[BASE_NR +  50] = { 3, TN,             SEN(getsockname),               "getsockname"           },
+[BASE_NR +  51] = { 3, TN,             SEN(getpeername),               "getpeername"           },
+[BASE_NR +  52] = { 4, TN,             SEN(socketpair),                "socketpair"            },
+[BASE_NR +  53] = { 5, TN,             SEN(setsockopt),                "setsockopt"            },
+[BASE_NR +  54] = { 5, TN,             SEN(getsockopt),                "getsockopt"            },
+[BASE_NR +  55] = { 5, TP,             SEN(clone),                     "clone"                 },
+[BASE_NR +  56] = { 0, TP,             SEN(fork),                      "fork"                  },
+[BASE_NR +  57] = { 3, TF|TP|SE|SI,    SEN(execve),                    "execve"                },
+[BASE_NR +  58] = { 1, TP|SE,          SEN(exit),                      "exit"                  },
+[BASE_NR +  59] = { 4, TP,             SEN(wait4),                     "wait4"                 },
+[BASE_NR +  60] = { 2, TS,             SEN(kill),                      "kill"                  },
+[BASE_NR +  61] = { 1, 0,              SEN(uname),                     "uname"                 },
+[BASE_NR +  62] = { 3, TI,             SEN(semget),                    "semget"                },
+[BASE_NR +  63] = { 3, TI,             SEN(semop),                     "semop"                 },
+[BASE_NR +  64] = { 4, TI,             SEN(semctl),                    "semctl"                },
+[BASE_NR +  65] = { 1, TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
+[BASE_NR +  66] = { 2, TI,             SEN(msgget),                    "msgget"                },
+[BASE_NR +  67] = { 4, TI,             SEN(msgsnd),                    "msgsnd"                },
+[BASE_NR +  68] = { 5, TI,             SEN(msgrcv),                    "msgrcv"                },
+[BASE_NR +  69] = { 3, TI,             SEN(msgctl),                    "msgctl"                },
+[BASE_NR +  70] = { 3, TD,             SEN(fcntl),                     "fcntl"                 },
+[BASE_NR +  71] = { 2, TD,             SEN(flock),                     "flock"                 },
+[BASE_NR +  72] = { 1, TD,             SEN(fsync),                     "fsync"                 },
+[BASE_NR +  73] = { 1, TD,             SEN(fdatasync),                 "fdatasync"             },
+[BASE_NR +  74] = { 2, TF,             SEN(truncate),                  "truncate"              },
+[BASE_NR +  75] = { 2, TD,             SEN(ftruncate),                 "ftruncate"             },
+[BASE_NR +  76] = { 3, TD,             SEN(getdents),                  "getdents"              },
+[BASE_NR +  77] = { 2, TF,             SEN(getcwd),                    "getcwd"                },
+[BASE_NR +  78] = { 1, TF,             SEN(chdir),                     "chdir"                 },
+[BASE_NR +  79] = { 1, TD,             SEN(fchdir),                    "fchdir"                },
+[BASE_NR +  80] = { 2, TF,             SEN(rename),                    "rename"                },
+[BASE_NR +  81] = { 2, TF,             SEN(mkdir),                     "mkdir"                 },
+[BASE_NR +  82] = { 1, TF,             SEN(rmdir),                     "rmdir"                 },
+[BASE_NR +  83] = { 2, TD|TF,          SEN(creat),                     "creat"                 },
+[BASE_NR +  84] = { 2, TF,             SEN(link),                      "link"                  },
+[BASE_NR +  85] = { 1, TF,             SEN(unlink),                    "unlink"                },
+[BASE_NR +  86] = { 2, TF,             SEN(symlink),                   "symlink"               },
+[BASE_NR +  87] = { 3, TF,             SEN(readlink),                  "readlink"              },
+[BASE_NR +  88] = { 2, TF,             SEN(chmod),                     "chmod"                 },
+[BASE_NR +  89] = { 2, TD,             SEN(fchmod),                    "fchmod"                },
+[BASE_NR +  90] = { 3, TF,             SEN(chown),                     "chown"                 },
+[BASE_NR +  91] = { 3, TD,             SEN(fchown),                    "fchown"                },
+[BASE_NR +  92] = { 3, TF,             SEN(chown),                     "lchown"                },
+[BASE_NR +  93] = { 1, NF,             SEN(umask),                     "umask"                 },
+[BASE_NR +  94] = { 2, 0,              SEN(gettimeofday),              "gettimeofday"          },
+[BASE_NR +  95] = { 2, 0,              SEN(getrlimit),                 "getrlimit"             },
+[BASE_NR +  96] = { 2, 0,              SEN(getrusage),                 "getrusage"             },
+[BASE_NR +  97] = { 1, 0,              SEN(sysinfo),                   "sysinfo"               },
+[BASE_NR +  98] = { 1, 0,              SEN(times),                     "times"                 },
+[BASE_NR +  99] = { 4, 0,              SEN(ptrace),                    "ptrace"                },
+[BASE_NR + 100] = { 0, PU|NF,          SEN(getuid),                    "getuid"                },
+[BASE_NR + 101] = { 3, 0,              SEN(syslog),                    "syslog"                },
+[BASE_NR + 102] = { 0, PU|NF,          SEN(getgid),                    "getgid"                },
+[BASE_NR + 103] = { 1, 0,              SEN(setuid),                    "setuid"                },
+[BASE_NR + 104] = { 1, 0,              SEN(setgid),                    "setgid"                },
+[BASE_NR + 105] = { 0, PU|NF,          SEN(geteuid),                   "geteuid"               },
+[BASE_NR + 106] = { 0, PU|NF,          SEN(getegid),                   "getegid"               },
+[BASE_NR + 107] = { 2, 0,              SEN(setpgid),                   "setpgid"               },
+[BASE_NR + 108] = { 0, PU|NF,          SEN(getppid),                   "getppid"               },
+[BASE_NR + 109] = { 0, PU|NF,          SEN(getpgrp),                   "getpgrp"               },
+[BASE_NR + 110] = { 0, 0,              SEN(setsid),                    "setsid"                },
+[BASE_NR + 111] = { 2, 0,              SEN(setreuid),                  "setreuid"              },
+[BASE_NR + 112] = { 2, 0,              SEN(setregid),                  "setregid"              },
+[BASE_NR + 113] = { 2, 0,              SEN(getgroups),                 "getgroups"             },
+[BASE_NR + 114] = { 2, 0,              SEN(setgroups),                 "setgroups"             },
+[BASE_NR + 115] = { 3, 0,              SEN(setresuid),                 "setresuid"             },
+[BASE_NR + 116] = { 3, 0,              SEN(getresuid),                 "getresuid"             },
+[BASE_NR + 117] = { 3, 0,              SEN(setresgid),                 "setresgid"             },
+[BASE_NR + 118] = { 3, 0,              SEN(getresgid),                 "getresgid"             },
+[BASE_NR + 119] = { 1, 0,              SEN(getpgid),                   "getpgid"               },
+[BASE_NR + 120] = { 1, NF,             SEN(setfsuid),                  "setfsuid"              },
+[BASE_NR + 121] = { 1, NF,             SEN(setfsgid),                  "setfsgid"              },
+[BASE_NR + 122] = { 1, 0,              SEN(getsid),                    "getsid"                },
+[BASE_NR + 123] = { 2, 0,              SEN(capget),                    "capget"                },
+[BASE_NR + 124] = { 2, 0,              SEN(capset),                    "capset"                },
+[BASE_NR + 125] = { 2, TS,             SEN(rt_sigpending),             "rt_sigpending"         },
+[BASE_NR + 126] = { 4, TS,             SEN(rt_sigtimedwait_time64),    "rt_sigtimedwait"       },
+[BASE_NR + 127] = { 3, TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
+[BASE_NR + 128] = { 2, TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
+[BASE_NR + 129] = { 2, TS,             SEN(sigaltstack),               "sigaltstack"           },
+[BASE_NR + 130] = { 2, TF,             SEN(utime),                     "utime"                 },
+[BASE_NR + 131] = { 3, TF,             SEN(mknod),                     "mknod"                 },
+[BASE_NR + 132] = { 1, NF,             SEN(personality),               "personality"           },
+[BASE_NR + 133] = { 2, TSFA,           SEN(ustat),                     "ustat"                 },
+[BASE_NR + 134] = { 2, TF|TSF|TSFA,    SEN(statfs),                    "statfs"                },
+[BASE_NR + 135] = { 2, TD|TFSF|TSFA,   SEN(fstatfs),                   "fstatfs"               },
+[BASE_NR + 136] = { 3, 0,              SEN(sysfs),                     "sysfs"                 },
+[BASE_NR + 137] = { 2, 0,              SEN(getpriority),               "getpriority"           },
+[BASE_NR + 138] = { 3, 0,              SEN(setpriority),               "setpriority"           },
+[BASE_NR + 139] = { 2, 0,              SEN(sched_setparam),            "sched_setparam"        },
+[BASE_NR + 140] = { 2, 0,              SEN(sched_getparam),            "sched_getparam"        },
+[BASE_NR + 141] = { 3, 0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
+[BASE_NR + 142] = { 1, 0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
+[BASE_NR + 143] = { 1, 0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
+[BASE_NR + 144] = { 1, 0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
+[BASE_NR + 145] = { 2, 0,              SEN(sched_rr_get_interval_time64),"sched_rr_get_interval"},
+[BASE_NR + 146] = { 2, TM,             SEN(mlock),                     "mlock"                 },
+[BASE_NR + 147] = { 2, TM,             SEN(munlock),                   "munlock"               },
+[BASE_NR + 148] = { 1, TM,             SEN(mlockall),                  "mlockall"              },
+[BASE_NR + 149] = { 0, TM,             SEN(munlockall),                "munlockall"            },
+[BASE_NR + 150] = { 0, 0,              SEN(vhangup),                   "vhangup"               },
+[BASE_NR + 151] = { 2, TF,             SEN(pivotroot),                 "pivot_root"            },
+[BASE_NR + 152] = { 1, 0,              SEN(sysctl),                    "_sysctl"               },
+[BASE_NR + 153] = { 5, 0,              SEN(prctl),                     "prctl"                 },
+[BASE_NR + 154] = { 1, 0,              SEN(adjtimex64),                "adjtimex"              },
+[BASE_NR + 155] = { 2, 0,              SEN(setrlimit),                 "setrlimit"             },
+[BASE_NR + 156] = { 1, TF,             SEN(chroot),                    "chroot"                },
+[BASE_NR + 157] = { 0, 0,              SEN(sync),                      "sync"                  },
+[BASE_NR + 158] = { 1, TF,             SEN(acct),                      "acct"                  },
+[BASE_NR + 159] = { 2, 0,              SEN(settimeofday),              "settimeofday"          },
+[BASE_NR + 160] = { 5, TF,             SEN(mount),                     "mount"                 },
+[BASE_NR + 161] = { 2, TF,             SEN(umount2),                   "umount2"               },
+[BASE_NR + 162] = { 2, TF,             SEN(swapon),                    "swapon"                },
+[BASE_NR + 163] = { 1, TF,             SEN(swapoff),                   "swapoff"               },
+[BASE_NR + 164] = { 4, 0,              SEN(reboot),                    "reboot"                },
+[BASE_NR + 165] = { 2, 0,              SEN(sethostname),               "sethostname"           },
+[BASE_NR + 166] = { 2, 0,              SEN(setdomainname),             "setdomainname"         },
+[BASE_NR + 167] = { 2, 0,              SEN(create_module),             "create_module"         },
+[BASE_NR + 168] = { 3, 0,              SEN(init_module),               "init_module"           },
+[BASE_NR + 169] = { 2, 0,              SEN(delete_module),             "delete_module"         },
+[BASE_NR + 170] = { 1, 0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
+[BASE_NR + 171] = { 5, 0,              SEN(query_module),              "query_module"          },
+[BASE_NR + 172] = { 4, TF,             SEN(quotactl),                  "quotactl"              },
+[BASE_NR + 173] = { 3, 0,              SEN(nfsservctl),                "nfsservctl"            },
+[BASE_NR + 174] = { 5, TN,             SEN(getpmsg),                   "getpmsg"               },
+[BASE_NR + 175] = { 5, TN,             SEN(putpmsg),                   "putpmsg"               },
+[BASE_NR + 176] = { 0, 0,              SEN(afs_syscall),               "afs_syscall"           },
+[BASE_NR + 177] = { 0, 0,              SEN(printargs),                 "reserved177"           },
+[BASE_NR + 178] = { 0, PU|NF,          SEN(gettid),                    "gettid"                },
+[BASE_NR + 179] = { 3, TD,             SEN(readahead),                 "readahead"             },
+[BASE_NR + 180] = { 5, TF,             SEN(setxattr),                  "setxattr"              },
+[BASE_NR + 181] = { 5, TF,             SEN(setxattr),                  "lsetxattr"             },
+[BASE_NR + 182] = { 5, TD,             SEN(fsetxattr),                 "fsetxattr"             },
+[BASE_NR + 183] = { 4, TF,             SEN(getxattr),                  "getxattr"              },
+[BASE_NR + 184] = { 4, TF,             SEN(getxattr),                  "lgetxattr"             },
+[BASE_NR + 185] = { 4, TD,             SEN(fgetxattr),                 "fgetxattr"             },
+[BASE_NR + 186] = { 3, TF,             SEN(listxattr),                 "listxattr"             },
+[BASE_NR + 187] = { 3, TF,             SEN(listxattr),                 "llistxattr"            },
+[BASE_NR + 188] = { 3, TD,             SEN(flistxattr),                "flistxattr"            },
+[BASE_NR + 189] = { 2, TF,             SEN(removexattr),               "removexattr"           },
+[BASE_NR + 190] = { 2, TF,             SEN(removexattr),               "lremovexattr"          },
+[BASE_NR + 191] = { 2, TD,             SEN(fremovexattr),              "fremovexattr"          },
+[BASE_NR + 192] = { 2, TS,             SEN(kill),                      "tkill"                 },
+[BASE_NR + 193] = { 1, 0,              SEN(time),                      "time"                  },
+[BASE_NR + 194] = { 6, 0,              SEN(futex_time64),              "futex"                 },
+[BASE_NR + 195] = { 3, 0,              SEN(sched_setaffinity),         "sched_setaffinity"     },
+[BASE_NR + 196] = { 3, 0,              SEN(sched_getaffinity),         "sched_getaffinity"     },
+[BASE_NR + 197] = { 3, 0,              SEN(printargs),                 "cacheflush"            },
+[BASE_NR + 198] = { 3, 0,              SEN(printargs),                 "cachectl"              },
+[BASE_NR + 199] = { 4, 0,              SEN(sysmips),                   "sysmips"               },
+[BASE_NR + 200] = { 2, TM,             SEN(io_setup),                  "io_setup"              },
+[BASE_NR + 201] = { 1, TM,             SEN(io_destroy),                "io_destroy"            },
+[BASE_NR + 202] = { 5, 0,              SEN(io_getevents_time64),       "io_getevents"          },
+[BASE_NR + 203] = { 3, 0,              SEN(io_submit),                 "io_submit"             },
+[BASE_NR + 204] = { 3, 0,              SEN(io_cancel),                 "io_cancel"             },
+[BASE_NR + 205] = { 1, TP|SE,          SEN(exit),                      "exit_group"            },
+[BASE_NR + 206] = { 3, 0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
+[BASE_NR + 207] = { 1, TD,             SEN(epoll_create),              "epoll_create"          },
+[BASE_NR + 208] = { 4, TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
+[BASE_NR + 209] = { 4, TD,             SEN(epoll_wait),                "epoll_wait"            },
+[BASE_NR + 210] = { 5, TM|SI,          SEN(remap_file_pages),          "remap_file_pages"      },
+[BASE_NR + 211] = { 0, TS,             SEN(rt_sigreturn),              "rt_sigreturn"          },
+[BASE_NR + 212] = { 1, 0,              SEN(set_tid_address),           "set_tid_address"       },
+[BASE_NR + 213] = { 0, 0,              SEN(restart_syscall),           "restart_syscall"       },
+[BASE_NR + 214] = { 4, TI,             SEN(semtimedop_time64),         "semtimedop"            },
+[BASE_NR + 215] = { 4, TD,             SEN(fadvise64),                 "fadvise64"             },
+[BASE_NR + 216] = { 3, 0,              SEN(timer_create),              "timer_create"          },
+[BASE_NR + 217] = { 4, 0,              SEN(timer_settime64),           "timer_settime"         },
+[BASE_NR + 218] = { 2, 0,              SEN(timer_gettime64),           "timer_gettime"         },
+[BASE_NR + 219] = { 1, 0,              SEN(timer_getoverrun),          "timer_getoverrun"      },
+[BASE_NR + 220] = { 1, 0,              SEN(timer_delete),              "timer_delete"          },
+[BASE_NR + 221] = { 2, 0,              SEN(clock_settime64),           "clock_settime"         },
+[BASE_NR + 222] = { 2, 0,              SEN(clock_gettime64),           "clock_gettime"         },
+[BASE_NR + 223] = { 2, 0,              SEN(clock_getres_time64),       "clock_getres"          },
+[BASE_NR + 224] = { 4, 0,              SEN(clock_nanosleep_time64),    "clock_nanosleep"       },
+[BASE_NR + 225] = { 3, TS,             SEN(tgkill),                    "tgkill"                },
+[BASE_NR + 226] = { 2, TF,             SEN(utimes),                    "utimes"                },
+[BASE_NR + 227] = { 6, TM,             SEN(mbind),                     "mbind"                 },
+[BASE_NR + 228] = { 5, TM,             SEN(get_mempolicy),             "get_mempolicy"         },
+[BASE_NR + 229] = { 3, TM,             SEN(set_mempolicy),             "set_mempolicy"         },
+[BASE_NR + 230] = { 4, TD,             SEN(mq_open),                   "mq_open"               },
+[BASE_NR + 231] = { 1, 0,              SEN(mq_unlink),                 "mq_unlink"             },
+[BASE_NR + 232] = { 5, TD,             SEN(mq_timedsend_time64),       "mq_timedsend"          },
+[BASE_NR + 233] = { 5, TD,             SEN(mq_timedreceive_time64),    "mq_timedreceive"       },
+[BASE_NR + 234] = { 2, TD,             SEN(mq_notify),                 "mq_notify"             },
+[BASE_NR + 235] = { 3, TD,             SEN(mq_getsetattr),             "mq_getsetattr"         },
+[BASE_NR + 236] = { 5, 0,              SEN(vserver),                   "vserver"               },
+[BASE_NR + 237] = { 5, TP,             SEN(waitid),                    "waitid"                },
+[BASE_NR + 238] = { },
+[BASE_NR + 239] = { 5, 0,              SEN(add_key),                   "add_key"               },
+[BASE_NR + 240] = { 4, 0,              SEN(request_key),               "request_key"           },
+[BASE_NR + 241] = { 5, 0,              SEN(keyctl),                    "keyctl"                },
+[BASE_NR + 242] = { 1, 0,              SEN(set_thread_area),           "set_thread_area"       },
+[BASE_NR + 243] = { 0, TD,             SEN(inotify_init),              "inotify_init"          },
+[BASE_NR + 244] = { 3, TD|TF,          SEN(inotify_add_watch),         "inotify_add_watch"     },
+[BASE_NR + 245] = { 2, TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
+[BASE_NR + 246] = { 4, TM,             SEN(migrate_pages),             "migrate_pages"         },
+[BASE_NR + 247] = { 4, TD|TF,          SEN(openat),                    "openat"                },
+[BASE_NR + 248] = { 3, TD|TF,          SEN(mkdirat),                   "mkdirat"               },
+[BASE_NR + 249] = { 4, TD|TF,          SEN(mknodat),                   "mknodat"               },
+[BASE_NR + 250] = { 5, TD|TF,          SEN(fchownat),                  "fchownat"              },
+[BASE_NR + 251] = { 3, TD|TF,          SEN(futimesat),                 "futimesat"             },
+[BASE_NR + 252] = { 4, TD|TF|TFST|TSTA,SEN(newfstatat),                "newfstatat"            },
+[BASE_NR + 253] = { 3, TD|TF,          SEN(unlinkat),                  "unlinkat"              },
+[BASE_NR + 254] = { 4, TD|TF,          SEN(renameat),                  "renameat"              },
+[BASE_NR + 255] = { 5, TD|TF,          SEN(linkat),                    "linkat"                },
+[BASE_NR + 256] = { 3, TD|TF,          SEN(symlinkat),                 "symlinkat"             },
+[BASE_NR + 257] = { 4, TD|TF,          SEN(readlinkat),                "readlinkat"            },
+[BASE_NR + 258] = { 3, TD|TF,          SEN(fchmodat),                  "fchmodat"              },
+[BASE_NR + 259] = { 3, TD|TF,          SEN(faccessat),                 "faccessat"             },
+[BASE_NR + 260] = { 6, TD,             SEN(pselect6_time64),           "pselect6"              },
+[BASE_NR + 261] = { 5, TD,             SEN(ppoll_time64),              "ppoll"                 },
+[BASE_NR + 262] = { 1, TP,             SEN(unshare),                   "unshare"               },
+[BASE_NR + 263] = { 6, TD,             SEN(splice),                    "splice"                },
+[BASE_NR + 264] = { 4, TD,             SEN(sync_file_range),           "sync_file_range"       },
+[BASE_NR + 265] = { 4, TD,             SEN(tee),                       "tee"                   },
+[BASE_NR + 266] = { 4, TD,             SEN(vmsplice),                  "vmsplice"              },
+[BASE_NR + 267] = { 6, TM,             SEN(move_pages),                "move_pages"            },
+[BASE_NR + 268] = { 2, 0,              SEN(set_robust_list),           "set_robust_list"       },
+[BASE_NR + 269] = { 3, 0,              SEN(get_robust_list),           "get_robust_list"       },
+[BASE_NR + 270] = { 4, 0,              SEN(kexec_load),                "kexec_load"            },
+[BASE_NR + 271] = { 3, 0,              SEN(getcpu),                    "getcpu"                },
+[BASE_NR + 272] = { 6, TD,             SEN(epoll_pwait),               "epoll_pwait"           },
+[BASE_NR + 273] = { 3, 0,              SEN(ioprio_set),                "ioprio_set"            },
+[BASE_NR + 274] = { 2, 0,              SEN(ioprio_get),                "ioprio_get"            },
+[BASE_NR + 275] = { 4, TD|TF,          SEN(utimensat_time64),          "utimensat"             },
+[BASE_NR + 276] = { 3, TD|TS,          SEN(signalfd),                  "signalfd"              },
+[BASE_NR + 277] = { 4, TD,             SEN(timerfd),                   "timerfd"               },
+[BASE_NR + 278] = { 1, TD,             SEN(eventfd),                   "eventfd"               },
+[BASE_NR + 279] = { 4, TD,             SEN(fallocate),                 "fallocate"             },
+[BASE_NR + 280] = { 2, TD,             SEN(timerfd_create),            "timerfd_create"        },
+[BASE_NR + 281] = { 2, TD,             SEN(timerfd_gettime64),         "timerfd_gettime"       },
+[BASE_NR + 282] = { 4, TD,             SEN(timerfd_settime64),         "timerfd_settime"       },
+[BASE_NR + 283] = { 4, TD|TS,          SEN(signalfd4),                 "signalfd4"             },
+[BASE_NR + 284] = { 2, TD,             SEN(eventfd2),                  "eventfd2"              },
+[BASE_NR + 285] = { 1, TD,             SEN(epoll_create1),             "epoll_create1"         },
+[BASE_NR + 286] = { 3, TD,             SEN(dup3),                      "dup3"                  },
+[BASE_NR + 287] = { 2, TD,             SEN(pipe2),                     "pipe2"                 },
+[BASE_NR + 288] = { 1, TD,             SEN(inotify_init1),             "inotify_init1"         },
+[BASE_NR + 289] = { 4, TD,             SEN(preadv),                    "preadv"                },
+[BASE_NR + 290] = { 4, TD,             SEN(pwritev),                   "pwritev"               },
+[BASE_NR + 291] = { 4, TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
+[BASE_NR + 292] = { 5, TD,             SEN(perf_event_open),           "perf_event_open"       },
+[BASE_NR + 293] = { 4, TN,             SEN(accept4),                   "accept4"               },
+[BASE_NR + 294] = { 5, TN,             SEN(recvmmsg_time64),           "recvmmsg"              },
+[BASE_NR + 295] = { 2, TD,             SEN(fanotify_init),             "fanotify_init"         },
+[BASE_NR + 296] = { 5, TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
+[BASE_NR + 297] = { 4, 0,              SEN(prlimit64),                 "prlimit64"             },
+[BASE_NR + 298] = { 5, TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
+[BASE_NR + 299] = { 3, TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
+[BASE_NR + 300] = { 2, 0,              SEN(clock_adjtime64),           "clock_adjtime"         },
+[BASE_NR + 301] = { 1, TD,             SEN(syncfs),                    "syncfs"                },
+[BASE_NR + 302] = { 4, TN,             SEN(sendmmsg),                  "sendmmsg"              },
+[BASE_NR + 303] = { 2, TD,             SEN(setns),                     "setns"                 },
+[BASE_NR + 304] = { 6, 0,              SEN(process_vm_readv),          "process_vm_readv"      },
+[BASE_NR + 305] = { 6, 0,              SEN(process_vm_writev),         "process_vm_writev"     },
+[BASE_NR + 306] = { 5, 0,              SEN(kcmp),                      "kcmp"                  },
+[BASE_NR + 307] = { 3, TD,             SEN(finit_module),              "finit_module"          },
+[BASE_NR + 308] = { 3, TD,             SEN(getdents64),                "getdents64"            },
+[BASE_NR + 309] = { 3, 0,              SEN(sched_setattr),             "sched_setattr"         },
+[BASE_NR + 310] = { 4, 0,              SEN(sched_getattr),             "sched_getattr"         },
+[BASE_NR + 311] = { 5, TD|TF,          SEN(renameat2),                 "renameat2"             },
+[BASE_NR + 312] = { 3, 0,              SEN(seccomp),                   "seccomp"               },
+[BASE_NR + 313] = { 3, 0,              SEN(getrandom),                 "getrandom"             },
+[BASE_NR + 314] = { 2, TD,             SEN(memfd_create),              "memfd_create"          },
+[BASE_NR + 315] = { 3, TD,             SEN(bpf),                       "bpf"                   },
+[BASE_NR + 316] = { 5, TD|TF|TP|SE|SI, SEN(execveat),                  "execveat"              },
+[BASE_NR + 317] = { 1, TD,             SEN(userfaultfd),               "userfaultfd"           },
+[BASE_NR + 318] = { 2, 0,              SEN(membarrier),                "membarrier"            },
+[BASE_NR + 319] = { 3, TM,             SEN(mlock2),                    "mlock2"                },
+[BASE_NR + 320] = { 6, TD,             SEN(copy_file_range),           "copy_file_range"       },
+[BASE_NR + 321] = { 6, TD,             SEN(preadv2),                   "preadv2"               },
+[BASE_NR + 322] = { 6, TD,             SEN(pwritev2),                  "pwritev2"              },
+[BASE_NR + 323] = { 4, TM|SI,          SEN(pkey_mprotect),             "pkey_mprotect"         },
+[BASE_NR + 324] = { 2, 0,              SEN(pkey_alloc),                "pkey_alloc"            },
+[BASE_NR + 325] = { 1, 0,              SEN(pkey_free),                 "pkey_free"             },
+[BASE_NR + 326] = { 5, TD|TF|TSTA,     SEN(statx),                     "statx"                 },
+[BASE_NR + 327] = { 4, 0,              SEN(rseq),                      "rseq"                  },
+[BASE_NR + 328] = { 6, 0,              SEN(io_pgetevents_time64),      "io_pgetevents"         },
 /* [5329 ... 5423] - reserved to sync up with other architectures */
-[5424] = { 4,  TD|TS,          SEN(pidfd_send_signal),         "pidfd_send_signal"     },
-[5425] = { 2,  TD,             SEN(io_uring_setup),            "io_uring_setup"        },
-[5426] = { 6,  TD|TS,          SEN(io_uring_enter),            "io_uring_enter"        },
-[5427] = { 4,  TD|TM,          SEN(io_uring_register),         "io_uring_register"     },
+[BASE_NR + 424] = { 4, TD|TS,          SEN(pidfd_send_signal),         "pidfd_send_signal"     },
+[BASE_NR + 425] = { 2, TD,             SEN(io_uring_setup),            "io_uring_setup"        },
+[BASE_NR + 426] = { 6, TD|TS,          SEN(io_uring_enter),            "io_uring_enter"        },
+[BASE_NR + 427] = { 4, TD|TM,          SEN(io_uring_register),         "io_uring_register"     },
 
 # define SYS_socket_subcall      5500
 # include "subcall64.h"
 # include "syscallent-n64-stub.h"
 
 #endif
+#undef BASE_NR
index 7fdc60f67147b8f85568eb645692a4ddb3267077..6428e355a42c7373a8f7e42ef1f88dd5bf84c6eb 100644 (file)
  * SPDX-License-Identifier: LGPL-2.1-or-later
  */
 
+#define BASE_NR 4000
 #if defined LINUX_MIPSO32
 /* For an O32 strace, decode the o32 syscalls.  */
 # define SYS_syscall_subcall   4000
-[4000] = { MA, 0,              SEN(syscall),                   "syscall"               }, /* start of Linux o32 */
-[4001] = { 1,  TP|SE,          SEN(exit),                      "exit"                  },
-[4002] = { 0,  TP,             SEN(fork),                      "fork"                  },
-[4003] = { 3,  TD,             SEN(read),                      "read"                  },
-[4004] = { 3,  TD,             SEN(write),                     "write"                 },
-[4005] = { 3,  TD|TF,          SEN(open),                      "open"                  },
-[4006] = { 1,  TD,             SEN(close),                     "close"                 },
-[4007] = { 3,  TP,             SEN(waitpid),                   "waitpid"               },
-[4008] = { 2,  TD|TF,          SEN(creat),                     "creat"                 },
-[4009] = { 2,  TF,             SEN(link),                      "link"                  },
-[4010] = { 1,  TF,             SEN(unlink),                    "unlink"                },
-[4011] = { 3,  TF|TP|SE|SI,    SEN(execve),                    "execve"                },
-[4012] = { 1,  TF,             SEN(chdir),                     "chdir"                 },
-[4013] = { 1,  0,              SEN(time),                      "time"                  },
-[4014] = { 3,  TF,             SEN(mknod),                     "mknod"                 },
-[4015] = { 2,  TF,             SEN(chmod),                     "chmod"                 },
-[4016] = { 3,  TF,             SEN(chown),                     "lchown"                },
-[4017] = { 0,  TM,             SEN(break),                     "break"                 },
-[4018] = { 2,  TF|TST|TSTA,    SEN(oldstat),                   "oldstat"               },
-[4019] = { 3,  TD,             SEN(lseek),                     "lseek"                 },
-[4020] = { 0,  PU|NF,          SEN(getpid),                    "getpid"                },
-[4021] = { 5,  TF,             SEN(mount),                     "mount"                 },
-[4022] = { 1,  TF,             SEN(umount),                    "umount"                },
-[4023] = { 1,  0,              SEN(setuid),                    "setuid"                },
-[4024] = { 0,  PU|NF,          SEN(getuid),                    "getuid"                },
-[4025] = { 1,  0,              SEN(stime),                     "stime"                 },
-[4026] = { 4,  0,              SEN(ptrace),                    "ptrace"                },
-[4027] = { 1,  0,              SEN(alarm),                     "alarm"                 },
-[4028] = { 2,  TD|TFST|TSTA,   SEN(oldfstat),                  "oldfstat"              },
-[4029] = { 0,  TS,             SEN(pause),                     "pause"                 },
-[4030] = { 2,  TF,             SEN(utime),                     "utime"                 },
-[4031] = { 0,  0,              SEN(stty),                      "stty"                  },
-[4032] = { 0,  0,              SEN(gtty),                      "gtty"                  },
-[4033] = { 2,  TF,             SEN(access),                    "access"                },
-[4034] = { 1,  0,              SEN(nice),                      "nice"                  },
-[4035] = { 1,  0,              SEN(ftime),                     "ftime"                 },
-[4036] = { 0,  0,              SEN(sync),                      "sync"                  },
-[4037] = { 2,  TS,             SEN(kill),                      "kill"                  },
-[4038] = { 2,  TF,             SEN(rename),                    "rename"                },
-[4039] = { 2,  TF,             SEN(mkdir),                     "mkdir"                 },
-[4040] = { 1,  TF,             SEN(rmdir),                     "rmdir"                 },
-[4041] = { 1,  TD,             SEN(dup),                       "dup"                   },
-[4042] = { 0,  TD,             SEN(pipe),                      "pipe"                  },
-[4043] = { 1,  0,              SEN(times),                     "times"                 },
-[4044] = { 0,  0,              SEN(prof),                      "prof"                  },
-[4045] = { 1,  TM|SI,          SEN(brk),                       "brk"                   },
-[4046] = { 1,  0,              SEN(setgid),                    "setgid"                },
-[4047] = { 0,  PU|NF,          SEN(getgid),                    "getgid"                },
-[4048] = { 2,  TS,             SEN(signal),                    "signal"                },
-[4049] = { 0,  PU|NF,          SEN(geteuid),                   "geteuid"               },
-[4050] = { 0,  PU|NF,          SEN(getegid),                   "getegid"               },
-[4051] = { 1,  TF,             SEN(acct),                      "acct"                  },
-[4052] = { 2,  TF,             SEN(umount2),                   "umount2"               },
-[4053] = { 0,  0,              SEN(lock),                      "lock"                  },
-[4054] = { 3,  TD,             SEN(ioctl),                     "ioctl"                 },
-[4055] = { 3,  TD,             SEN(fcntl),                     "fcntl"                 },
-[4056] = { 0,  0,              SEN(mpx),                       "mpx"                   },
-[4057] = { 2,  0,              SEN(setpgid),                   "setpgid"               },
-[4058] = { 0,  0,              SEN(ulimit),                    "ulimit"                },
-[4059] = { 1,  0,              SEN(oldolduname),               "oldolduname"           },
-[4060] = { 1,  NF,             SEN(umask),                     "umask"                 },
-[4061] = { 1,  TF,             SEN(chroot),                    "chroot"                },
-[4062] = { 2,  TSFA,           SEN(ustat),                     "ustat"                 },
-[4063] = { 2,  TD,             SEN(dup2),                      "dup2"                  },
-[4064] = { 0,  PU|NF,          SEN(getppid),                   "getppid"               },
-[4065] = { 0,  PU|NF,          SEN(getpgrp),                   "getpgrp"               },
-[4066] = { 0,  0,              SEN(setsid),                    "setsid"                },
-[4067] = { 3,  TS,             SEN(sigaction),                 "sigaction"             },
-[4068] = { 0,  TS,             SEN(sgetmask),                  "sgetmask"              },
-[4069] = { 1,  TS,             SEN(ssetmask),                  "ssetmask"              },
-[4070] = { 2,  0,              SEN(setreuid),                  "setreuid"              },
-[4071] = { 2,  0,              SEN(setregid),                  "setregid"              },
-[4072] = { 1,  TS,             SEN(sigsuspend),                "sigsuspend"            },
-[4073] = { 1,  TS,             SEN(sigpending),                "sigpending"            },
-[4074] = { 2,  0,              SEN(sethostname),               "sethostname"           },
-[4075] = { 2,  0,              SEN(setrlimit),                 "setrlimit"             },
-[4076] = { 2,  0,              SEN(getrlimit),                 "getrlimit"             },
-[4077] = { 2,  0,              SEN(getrusage),                 "getrusage"             },
-[4078] = { 2,  0,              SEN(gettimeofday),              "gettimeofday"          },
-[4079] = { 2,  0,              SEN(settimeofday),              "settimeofday"          },
-[4080] = { 2,  0,              SEN(getgroups),                 "getgroups"             },
-[4081] = { 2,  0,              SEN(setgroups),                 "setgroups"             },
-[4082] = { 0,  0,              SEN(printargs),                 "reserved82"            },
-[4083] = { 2,  TF,             SEN(symlink),                   "symlink"               },
-[4084] = { 2,  TF|TLST|TSTA,   SEN(oldlstat),                  "oldlstat"              },
-[4085] = { 3,  TF,             SEN(readlink),                  "readlink"              },
-[4086] = { 1,  TF,             SEN(uselib),                    "uselib"                },
-[4087] = { 2,  TF,             SEN(swapon),                    "swapon"                },
-[4088] = { 4,  0,              SEN(reboot),                    "reboot"                },
-[4089] = { 3,  TD,             SEN(readdir),                   "readdir"               },
-[4090] = { 6,  TD|TM|SI,       SEN(mmap),                      "mmap"                  },
-[4091] = { 2,  TM|SI,          SEN(munmap),                    "munmap"                },
-[4092] = { 2,  TF,             SEN(truncate),                  "truncate"              },
-[4093] = { 2,  TD,             SEN(ftruncate),                 "ftruncate"             },
-[4094] = { 2,  TD,             SEN(fchmod),                    "fchmod"                },
-[4095] = { 3,  TD,             SEN(fchown),                    "fchown"                },
-[4096] = { 2,  0,              SEN(getpriority),               "getpriority"           },
-[4097] = { 3,  0,              SEN(setpriority),               "setpriority"           },
-[4098] = { 0,  0,              SEN(profil),                    "profil"                },
-[4099] = { 2,  TF|TSF|TSFA,    SEN(statfs),                    "statfs"                },
-[4100] = { 2,  TD|TFSF|TSFA,   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"             },
-[4105] = { 2,  0,              SEN(getitimer),                 "getitimer"             },
-[4106] = { 2,  TF|TST|TSTA,    SEN(stat),                      "stat"                  },
-[4107] = { 2,  TF|TLST|TSTA,   SEN(lstat),                     "lstat"                 },
-[4108] = { 2,  TD|TFST|TSTA,   SEN(fstat),                     "fstat"                 },
-[4109] = { 1,  0,              SEN(olduname),                  "olduname"              },
-[4110] = { 1,  0,              SEN(iopl),                      "iopl"                  },
-[4111] = { 0,  0,              SEN(vhangup),                   "vhangup"               },
-[4112] = { 0,  0,              SEN(idle),                      "idle"                  },
-[4113] = { 5,  0,              SEN(vm86old),                   "vm86"                  },
-[4114] = { 4,  TP,             SEN(wait4),                     "wait4"                 },
-[4115] = { 1,  TF,             SEN(swapoff),                   "swapoff"               },
-[4116] = { 1,  0,              SEN(sysinfo),                   "sysinfo"               },
-[4117] = { 6,  TI,             SEN(ipc),                       "ipc"                   },
-[4118] = { 1,  TD,             SEN(fsync),                     "fsync"                 },
-[4119] = { 0,  TS,             SEN(sigreturn),                 "sigreturn"             },
-[4120] = { 5,  TP,             SEN(clone),                     "clone"                 },
-[4121] = { 2,  0,              SEN(setdomainname),             "setdomainname"         },
-[4122] = { 1,  0,              SEN(uname),                     "uname"                 },
-[4123] = { 0,  0,              SEN(modify_ldt),                "modify_ldt"            },
-[4124] = { 1,  0,              SEN(adjtimex32),                "adjtimex"              },
-[4125] = { 3,  TM|SI,          SEN(mprotect),                  "mprotect"              },
-[4126] = { 3,  TS,             SEN(sigprocmask),               "sigprocmask"           },
-[4127] = { 2,  0,              SEN(create_module),             "create_module"         },
-[4128] = { 3,  0,              SEN(init_module),               "init_module"           },
-[4129] = { 2,  0,              SEN(delete_module),             "delete_module"         },
-[4130] = { 1,  0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
-[4131] = { 4,  TF,             SEN(quotactl),                  "quotactl"              },
-[4132] = { 1,  0,              SEN(getpgid),                   "getpgid"               },
-[4133] = { 1,  TD,             SEN(fchdir),                    "fchdir"                },
-[4134] = { 2,  0,              SEN(bdflush),                   "bdflush"               },
-[4135] = { 3,  0,              SEN(sysfs),                     "sysfs"                 },
-[4136] = { 1,  NF,             SEN(personality),               "personality"           },
-[4137] = { 0,  0,              SEN(afs_syscall),               "afs_syscall"           },
-[4138] = { 1,  NF,             SEN(setfsuid),                  "setfsuid"              },
-[4139] = { 1,  NF,             SEN(setfsgid),                  "setfsgid"              },
-[4140] = { 5,  TD,             SEN(llseek),                    "_llseek"               },
-[4141] = { 3,  TD,             SEN(getdents),                  "getdents"              },
-[4142] = { 5,  TD,             SEN(select),                    "_newselect"            },
-[4143] = { 2,  TD,             SEN(flock),                     "flock"                 },
-[4144] = { 3,  TM,             SEN(msync),                     "msync"                 },
-[4145] = { 3,  TD,             SEN(readv),                     "readv"                 },
-[4146] = { 3,  TD,             SEN(writev),                    "writev"                },
-[4147] = { 3,  0,              SEN(printargs),                 "cacheflush"            },
-[4148] = { 3,  0,              SEN(printargs),                 "cachectl"              },
-[4149] = { 4,  0,              SEN(sysmips),                   "sysmips"               },
-[4150] = { 0,  0,              SEN(setup),                     "setup"                 },
-[4151] = { 1,  0,              SEN(getsid),                    "getsid"                },
-[4152] = { 1,  TD,             SEN(fdatasync),                 "fdatasync"             },
-[4153] = { 1,  0,              SEN(sysctl),                    "_sysctl"               },
-[4154] = { 2,  TM,             SEN(mlock),                     "mlock"                 },
-[4155] = { 2,  TM,             SEN(munlock),                   "munlock"               },
-[4156] = { 1,  TM,             SEN(mlockall),                  "mlockall"              },
-[4157] = { 0,  TM,             SEN(munlockall),                "munlockall"            },
-[4158] = { 2,  0,              SEN(sched_setparam),            "sched_setparam"        },
-[4159] = { 2,  0,              SEN(sched_getparam),            "sched_getparam"        },
-[4160] = { 3,  0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
-[4161] = { 1,  0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
-[4162] = { 0,  0,              SEN(sched_yield),               "sched_yield"           },
-[4163] = { 1,  0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
-[4164] = { 1,  0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
-[4165] = { 2,  0,              SEN(sched_rr_get_interval_time32),"sched_rr_get_interval"},
-[4166] = { 2,  0,              SEN(nanosleep_time32),          "nanosleep"             },
-[4167] = { 5,  TM|SI,          SEN(mremap),                    "mremap"                },
-[4168] = { 3,  TN,             SEN(accept),                    "accept"                },
-[4169] = { 3,  TN,             SEN(bind),                      "bind"                  },
-[4170] = { 3,  TN,             SEN(connect),                   "connect"               },
-[4171] = { 3,  TN,             SEN(getpeername),               "getpeername"           },
-[4172] = { 3,  TN,             SEN(getsockname),               "getsockname"           },
-[4173] = { 5,  TN,             SEN(getsockopt),                "getsockopt"            },
-[4174] = { 2,  TN,             SEN(listen),                    "listen"                },
-[4175] = { 4,  TN,             SEN(recv),                      "recv"                  },
-[4176] = { 6,  TN,             SEN(recvfrom),                  "recvfrom"              },
-[4177] = { 3,  TN,             SEN(recvmsg),                   "recvmsg"               },
-[4178] = { 4,  TN,             SEN(send),                      "send"                  },
-[4179] = { 3,  TN,             SEN(sendmsg),                   "sendmsg"               },
-[4180] = { 6,  TN,             SEN(sendto),                    "sendto"                },
-[4181] = { 5,  TN,             SEN(setsockopt),                "setsockopt"            },
-[4182] = { 2,  TN,             SEN(shutdown),                  "shutdown"              },
-[4183] = { 3,  TN,             SEN(socket),                    "socket"                },
-[4184] = { 4,  TN,             SEN(socketpair),                "socketpair"            },
-[4185] = { 3,  0,              SEN(setresuid),                 "setresuid"             },
-[4186] = { 3,  0,              SEN(getresuid),                 "getresuid"             },
-[4187] = { 5,  0,              SEN(query_module),              "query_module"          },
-[4188] = { 3,  TD,             SEN(poll_time32),               "poll"                  },
-[4189] = { 3,  0,              SEN(nfsservctl),                "nfsservctl"            },
-[4190] = { 3,  0,              SEN(setresgid),                 "setresgid"             },
-[4191] = { 3,  0,              SEN(getresgid),                 "getresgid"             },
-[4192] = { 5,  0,              SEN(prctl),                     "prctl"                 },
-[4193] = { 0,  TS,             SEN(rt_sigreturn),              "rt_sigreturn"          },
-[4194] = { 4,  TS,             SEN(rt_sigaction),              "rt_sigaction"          },
-[4195] = { 4,  TS,             SEN(rt_sigprocmask),            "rt_sigprocmask"        },
-[4196] = { 2,  TS,             SEN(rt_sigpending),             "rt_sigpending"         },
-[4197] = { 4,  TS,             SEN(rt_sigtimedwait_time32),    "rt_sigtimedwait"       },
-[4198] = { 3,  TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
-[4199] = { 2,  TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
-[4200] = { 6,  TD,             SEN(pread),                     "pread64"               },
-[4201] = { 6,  TD,             SEN(pwrite),                    "pwrite64"              },
-[4202] = { 3,  TF,             SEN(chown),                     "chown"                 },
-[4203] = { 2,  TF,             SEN(getcwd),                    "getcwd"                },
-[4204] = { 2,  0,              SEN(capget),                    "capget"                },
-[4205] = { 2,  0,              SEN(capset),                    "capset"                },
-[4206] = { 2,  TS,             SEN(sigaltstack),               "sigaltstack"           },
-[4207] = { 4,  TD|TN,          SEN(sendfile),                  "sendfile"              },
-[4208] = { 5,  TN,             SEN(getpmsg),                   "getpmsg"               },
-[4209] = { 5,  TN,             SEN(putpmsg),                   "putpmsg"               },
-[4210] = { 6,  TD|TM|SI,       SEN(mmap_4koff),                "mmap2"                 },
-[4211] = { 4,  TF,             SEN(truncate64),                "truncate64"            },
-[4212] = { 4,  TD,             SEN(ftruncate64),               "ftruncate64"           },
-[4213] = { 2,  TF|TST|TSTA,    SEN(stat64),                    "stat64"                },
-[4214] = { 2,  TF|TLST|TSTA,   SEN(lstat64),                   "lstat64"               },
-[4215] = { 2,  TD|TFST|TSTA,   SEN(fstat64),                   "fstat64"               },
-[4216] = { 2,  TF,             SEN(pivotroot),                 "pivot_root"            },
-[4217] = { 3,  TM,             SEN(mincore),                   "mincore"               },
-[4218] = { 3,  TM,             SEN(madvise),                   "madvise"               },
-[4219] = { 3,  TD,             SEN(getdents64),                "getdents64"            },
-[4220] = { 3,  TD,             SEN(fcntl64),                   "fcntl64"               },
-[4221] = { 0,  0,              SEN(printargs),                 "reserved221"           },
-[4222] = { 0,  PU|NF,          SEN(gettid),                    "gettid"                },
-[4223] = { 5,  TD,             SEN(readahead),                 "readahead"             },
-[4224] = { 5,  TF,             SEN(setxattr),                  "setxattr"              },
-[4225] = { 5,  TF,             SEN(setxattr),                  "lsetxattr"             },
-[4226] = { 5,  TD,             SEN(fsetxattr),                 "fsetxattr"             },
-[4227] = { 4,  TF,             SEN(getxattr),                  "getxattr"              },
-[4228] = { 4,  TF,             SEN(getxattr),                  "lgetxattr"             },
-[4229] = { 4,  TD,             SEN(fgetxattr),                 "fgetxattr"             },
-[4230] = { 3,  TF,             SEN(listxattr),                 "listxattr"             },
-[4231] = { 3,  TF,             SEN(listxattr),                 "llistxattr"            },
-[4232] = { 3,  TD,             SEN(flistxattr),                "flistxattr"            },
-[4233] = { 2,  TF,             SEN(removexattr),               "removexattr"           },
-[4234] = { 2,  TF,             SEN(removexattr),               "lremovexattr"          },
-[4235] = { 2,  TD,             SEN(fremovexattr),              "fremovexattr"          },
-[4236] = { 2,  TS,             SEN(kill),                      "tkill"                 },
-[4237] = { 4,  TD|TN,          SEN(sendfile64),                "sendfile64"            },
-[4238] = { 6,  0,              SEN(futex_time32),              "futex"                 },
-[4239] = { 3,  0,              SEN(sched_setaffinity),         "sched_setaffinity"     },
-[4240] = { 3,  0,              SEN(sched_getaffinity),         "sched_getaffinity"     },
-[4241] = { 2,  TM,             SEN(io_setup),                  "io_setup"              },
-[4242] = { 1,  TM,             SEN(io_destroy),                "io_destroy"            },
-[4243] = { 5,  0,              SEN(io_getevents_time32),       "io_getevents"          },
-[4244] = { 3,  0,              SEN(io_submit),                 "io_submit"             },
-[4245] = { 3,  0,              SEN(io_cancel),                 "io_cancel"             },
-[4246] = { 1,  TP|SE,          SEN(exit),                      "exit_group"            },
-[4247] = { 4,  0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
-[4248] = { 1,  TD,             SEN(epoll_create),              "epoll_create"          },
-[4249] = { 4,  TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
-[4250] = { 4,  TD,             SEN(epoll_wait),                "epoll_wait"            },
-[4251] = { 5,  TM|SI,          SEN(remap_file_pages),          "remap_file_pages"      },
-[4252] = { 1,  0,              SEN(set_tid_address),           "set_tid_address"       },
-[4253] = { 0,  0,              SEN(restart_syscall),           "restart_syscall"       },
-[4254] = { 7,  TD,             SEN(fadvise64_64),              "fadvise64"             },
-[4255] = { 3,  TF|TSF|TSFA,    SEN(statfs64),                  "statfs64"              },
-[4256] = { 3,  TD|TFSF|TSFA,   SEN(fstatfs64),                 "fstatfs64"             },
-[4257] = { 3,  0,              SEN(timer_create),              "timer_create"          },
-[4258] = { 4,  0,              SEN(timer_settime32),           "timer_settime"         },
-[4259] = { 2,  0,              SEN(timer_gettime32),           "timer_gettime"         },
-[4260] = { 1,  0,              SEN(timer_getoverrun),          "timer_getoverrun"      },
-[4261] = { 1,  0,              SEN(timer_delete),              "timer_delete"          },
-[4262] = { 2,  0,              SEN(clock_settime32),           "clock_settime"         },
-[4263] = { 2,  0,              SEN(clock_gettime32),           "clock_gettime"         },
-[4264] = { 2,  0,              SEN(clock_getres_time32),       "clock_getres"          },
-[4265] = { 4,  0,              SEN(clock_nanosleep_time32),    "clock_nanosleep"       },
-[4266] = { 3,  TS,             SEN(tgkill),                    "tgkill"                },
-[4267] = { 2,  TF,             SEN(utimes),                    "utimes"                },
-[4268] = { 6,  TM,             SEN(mbind),                     "mbind"                 },
-[4269] = { 5,  TM,             SEN(get_mempolicy),             "get_mempolicy"         },
-[4270] = { 3,  TM,             SEN(set_mempolicy),             "set_mempolicy"         },
-[4271] = { 4,  TD,             SEN(mq_open),                   "mq_open"               },
-[4272] = { 1,  0,              SEN(mq_unlink),                 "mq_unlink"             },
-[4273] = { 5,  TD,             SEN(mq_timedsend_time32),       "mq_timedsend"          },
-[4274] = { 5,  TD,             SEN(mq_timedreceive_time32),    "mq_timedreceive"       },
-[4275] = { 2,  TD,             SEN(mq_notify),                 "mq_notify"             },
-[4276] = { 3,  TD,             SEN(mq_getsetattr),             "mq_getsetattr"         },
-[4277] = { 5,  0,              SEN(vserver),                   "vserver"               },
-[4278] = { 5,  TP,             SEN(waitid),                    "waitid"                },
-[4279] = { },
-[4280] = { 5,  0,              SEN(add_key),                   "add_key"               },
-[4281] = { 4,  0,              SEN(request_key),               "request_key"           },
-[4282] = { 5,  0,              SEN(keyctl),                    "keyctl"                },
-[4283] = { 1,  0,              SEN(set_thread_area),           "set_thread_area"       },
-[4284] = { 0,  TD,             SEN(inotify_init),              "inotify_init"          },
-[4285] = { 3,  TD|TF,          SEN(inotify_add_watch),         "inotify_add_watch"     },
-[4286] = { 2,  TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
-[4287] = { 4,  TM,             SEN(migrate_pages),             "migrate_pages"         },
-[4288] = { 4,  TD|TF,          SEN(openat),                    "openat"                },
-[4289] = { 3,  TD|TF,          SEN(mkdirat),                   "mkdirat"               },
-[4290] = { 4,  TD|TF,          SEN(mknodat),                   "mknodat"               },
-[4291] = { 5,  TD|TF,          SEN(fchownat),                  "fchownat"              },
-[4292] = { 3,  TD|TF,          SEN(futimesat),                 "futimesat"             },
-[4293] = { 4,  TD|TF|TFST|TSTA,SEN(fstatat64),                 "fstatat64"             },
-[4294] = { 3,  TD|TF,          SEN(unlinkat),                  "unlinkat"              },
-[4295] = { 4,  TD|TF,          SEN(renameat),                  "renameat"              },
-[4296] = { 5,  TD|TF,          SEN(linkat),                    "linkat"                },
-[4297] = { 3,  TD|TF,          SEN(symlinkat),                 "symlinkat"             },
-[4298] = { 4,  TD|TF,          SEN(readlinkat),                "readlinkat"            },
-[4299] = { 3,  TD|TF,          SEN(fchmodat),                  "fchmodat"              },
-[4300] = { 3,  TD|TF,          SEN(faccessat),                 "faccessat"             },
-[4301] = { 6,  TD,             SEN(pselect6_time32),           "pselect6"              },
-[4302] = { 5,  TD,             SEN(ppoll_time32),              "ppoll"                 },
-[4303] = { 1,  TP,             SEN(unshare),                   "unshare"               },
-[4304] = { 6,  TD,             SEN(splice),                    "splice"                },
-[4305] = { 7,  TD,             SEN(sync_file_range),           "sync_file_range"       },
-[4306] = { 4,  TD,             SEN(tee),                       "tee"                   },
-[4307] = { 4,  TD,             SEN(vmsplice),                  "vmsplice"              },
-[4308] = { 6,  TM,             SEN(move_pages),                "move_pages"            },
-[4309] = { 2,  0,              SEN(set_robust_list),           "set_robust_list"       },
-[4310] = { 3,  0,              SEN(get_robust_list),           "get_robust_list"       },
-[4311] = { 4,  0,              SEN(kexec_load),                "kexec_load"            },
-[4312] = { 3,  0,              SEN(getcpu),                    "getcpu"                },
-[4313] = { 6,  TD,             SEN(epoll_pwait),               "epoll_pwait"           },
-[4314] = { 3,  0,              SEN(ioprio_set),                "ioprio_set"            },
-[4315] = { 2,  0,              SEN(ioprio_get),                "ioprio_get"            },
-[4316] = { 4,  TD|TF,          SEN(utimensat_time32),          "utimensat"             },
-[4317] = { 3,  TD|TS,          SEN(signalfd),                  "signalfd"              },
-[4318] = { 4,  TD,             SEN(timerfd),                   "timerfd"               },
-[4319] = { 1,  TD,             SEN(eventfd),                   "eventfd"               },
-[4320] = { 6,  TD,             SEN(fallocate),                 "fallocate"             },
-[4321] = { 2,  TD,             SEN(timerfd_create),            "timerfd_create"        },
-[4322] = { 2,  TD,             SEN(timerfd_gettime32),         "timerfd_gettime"       },
-[4323] = { 4,  TD,             SEN(timerfd_settime32),         "timerfd_settime"       },
-[4324] = { 4,  TD|TS,          SEN(signalfd4),                 "signalfd4"             },
-[4325] = { 2,  TD,             SEN(eventfd2),                  "eventfd2"              },
-[4326] = { 1,  TD,             SEN(epoll_create1),             "epoll_create1"         },
-[4327] = { 3,  TD,             SEN(dup3),                      "dup3"                  },
-[4328] = { 2,  TD,             SEN(pipe2),                     "pipe2"                 },
-[4329] = { 1,  TD,             SEN(inotify_init1),             "inotify_init1"         },
-[4330] = { 5,  TD,             SEN(preadv),                    "preadv"                },
-[4331] = { 5,  TD,             SEN(pwritev),                   "pwritev"               },
-[4332] = { 4,  TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
-[4333] = { 5,  TD,             SEN(perf_event_open),           "perf_event_open"       },
-[4334] = { 4,  TN,             SEN(accept4),                   "accept4"               },
-[4335] = { 5,  TN,             SEN(recvmmsg_time32),           "recvmmsg"              },
-[4336] = { 2,  TD,             SEN(fanotify_init),             "fanotify_init"         },
-[4337] = { 6,  TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
-[4338] = { 4,  0,              SEN(prlimit64),                 "prlimit64"             },
-[4339] = { 5,  TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
-[4340] = { 3,  TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
-[4341] = { 2,  0,              SEN(clock_adjtime32),           "clock_adjtime"         },
-[4342] = { 1,  TD,             SEN(syncfs),                    "syncfs"                },
-[4343] = { 4,  TN,             SEN(sendmmsg),                  "sendmmsg"              },
-[4344] = { 2,  TD,             SEN(setns),                     "setns"                 },
-[4345] = { 6,  0,              SEN(process_vm_readv),          "process_vm_readv"      },
-[4346] = { 6,  0,              SEN(process_vm_writev),         "process_vm_writev"     },
-[4347] = { 5,  0,              SEN(kcmp),                      "kcmp"                  },
-[4348] = { 3,  TD,             SEN(finit_module),              "finit_module"          },
-[4349] = { 3,  0,              SEN(sched_setattr),             "sched_setattr"         },
-[4350] = { 4,  0,              SEN(sched_getattr),             "sched_getattr"         },
-[4351] = { 5,  TD|TF,          SEN(renameat2),                 "renameat2"             },
-[4352] = { 3,  0,              SEN(seccomp),                   "seccomp"               },
-[4353] = { 3,  0,              SEN(getrandom),                 "getrandom"             },
-[4354] = { 2,  TD,             SEN(memfd_create),              "memfd_create"          },
-[4355] = { 3,  TD,             SEN(bpf),                       "bpf"                   },
-[4356] = { 5,  TD|TF|TP|SE|SI, SEN(execveat),                  "execveat"              },
-[4357] = { 1,  TD,             SEN(userfaultfd),               "userfaultfd"           },
-[4358] = { 2,  0,              SEN(membarrier),                "membarrier"            },
-[4359] = { 3,  TM,             SEN(mlock2),                    "mlock2"                },
-[4360] = { 6,  TD,             SEN(copy_file_range),           "copy_file_range"       },
-[4361] = { 6,  TD,             SEN(preadv2),                   "preadv2"               },
-[4362] = { 6,  TD,             SEN(pwritev2),                  "pwritev2"              },
-[4363] = { 4,  TM|SI,          SEN(pkey_mprotect),             "pkey_mprotect"         },
-[4364] = { 2,  0,              SEN(pkey_alloc),                "pkey_alloc"            },
-[4365] = { 1,  0,              SEN(pkey_free),                 "pkey_free"             },
-[4366] = { 5,  TD|TF|TSTA,     SEN(statx),                     "statx"                 },
-[4367] = { 4,  0,              SEN(rseq),                      "rseq"                  },
-[4368] = { 6,  0,              SEN(io_pgetevents_time32),      "io_pgetevents"         },
+[BASE_NR +   0] = { MA,        0,              SEN(syscall),                   "syscall"               }, /* start of Linux o32 */
+[BASE_NR +   1] = { 1, TP|SE,          SEN(exit),                      "exit"                  },
+[BASE_NR +   2] = { 0, TP,             SEN(fork),                      "fork"                  },
+[BASE_NR +   3] = { 3, TD,             SEN(read),                      "read"                  },
+[BASE_NR +   4] = { 3, TD,             SEN(write),                     "write"                 },
+[BASE_NR +   5] = { 3, TD|TF,          SEN(open),                      "open"                  },
+[BASE_NR +   6] = { 1, TD,             SEN(close),                     "close"                 },
+[BASE_NR +   7] = { 3, TP,             SEN(waitpid),                   "waitpid"               },
+[BASE_NR +   8] = { 2, TD|TF,          SEN(creat),                     "creat"                 },
+[BASE_NR +   9] = { 2, TF,             SEN(link),                      "link"                  },
+[BASE_NR +  10] = { 1, TF,             SEN(unlink),                    "unlink"                },
+[BASE_NR +  11] = { 3, TF|TP|SE|SI,    SEN(execve),                    "execve"                },
+[BASE_NR +  12] = { 1, TF,             SEN(chdir),                     "chdir"                 },
+[BASE_NR +  13] = { 1, 0,              SEN(time),                      "time"                  },
+[BASE_NR +  14] = { 3, TF,             SEN(mknod),                     "mknod"                 },
+[BASE_NR +  15] = { 2, TF,             SEN(chmod),                     "chmod"                 },
+[BASE_NR +  16] = { 3, TF,             SEN(chown),                     "lchown"                },
+[BASE_NR +  17] = { 0, TM,             SEN(break),                     "break"                 },
+[BASE_NR +  18] = { 2, TF|TST|TSTA,    SEN(oldstat),                   "oldstat"               },
+[BASE_NR +  19] = { 3, TD,             SEN(lseek),                     "lseek"                 },
+[BASE_NR +  20] = { 0, PU|NF,          SEN(getpid),                    "getpid"                },
+[BASE_NR +  21] = { 5, TF,             SEN(mount),                     "mount"                 },
+[BASE_NR +  22] = { 1, TF,             SEN(umount),                    "umount"                },
+[BASE_NR +  23] = { 1, 0,              SEN(setuid),                    "setuid"                },
+[BASE_NR +  24] = { 0, PU|NF,          SEN(getuid),                    "getuid"                },
+[BASE_NR +  25] = { 1, 0,              SEN(stime),                     "stime"                 },
+[BASE_NR +  26] = { 4, 0,              SEN(ptrace),                    "ptrace"                },
+[BASE_NR +  27] = { 1, 0,              SEN(alarm),                     "alarm"                 },
+[BASE_NR +  28] = { 2, TD|TFST|TSTA,   SEN(oldfstat),                  "oldfstat"              },
+[BASE_NR +  29] = { 0, TS,             SEN(pause),                     "pause"                 },
+[BASE_NR +  30] = { 2, TF,             SEN(utime),                     "utime"                 },
+[BASE_NR +  31] = { 0, 0,              SEN(stty),                      "stty"                  },
+[BASE_NR +  32] = { 0, 0,              SEN(gtty),                      "gtty"                  },
+[BASE_NR +  33] = { 2, TF,             SEN(access),                    "access"                },
+[BASE_NR +  34] = { 1, 0,              SEN(nice),                      "nice"                  },
+[BASE_NR +  35] = { 1, 0,              SEN(ftime),                     "ftime"                 },
+[BASE_NR +  36] = { 0, 0,              SEN(sync),                      "sync"                  },
+[BASE_NR +  37] = { 2, TS,             SEN(kill),                      "kill"                  },
+[BASE_NR +  38] = { 2, TF,             SEN(rename),                    "rename"                },
+[BASE_NR +  39] = { 2, TF,             SEN(mkdir),                     "mkdir"                 },
+[BASE_NR +  40] = { 1, TF,             SEN(rmdir),                     "rmdir"                 },
+[BASE_NR +  41] = { 1, TD,             SEN(dup),                       "dup"                   },
+[BASE_NR +  42] = { 0, TD,             SEN(pipe),                      "pipe"                  },
+[BASE_NR +  43] = { 1, 0,              SEN(times),                     "times"                 },
+[BASE_NR +  44] = { 0, 0,              SEN(prof),                      "prof"                  },
+[BASE_NR +  45] = { 1, TM|SI,          SEN(brk),                       "brk"                   },
+[BASE_NR +  46] = { 1, 0,              SEN(setgid),                    "setgid"                },
+[BASE_NR +  47] = { 0, PU|NF,          SEN(getgid),                    "getgid"                },
+[BASE_NR +  48] = { 2, TS,             SEN(signal),                    "signal"                },
+[BASE_NR +  49] = { 0, PU|NF,          SEN(geteuid),                   "geteuid"               },
+[BASE_NR +  50] = { 0, PU|NF,          SEN(getegid),                   "getegid"               },
+[BASE_NR +  51] = { 1, TF,             SEN(acct),                      "acct"                  },
+[BASE_NR +  52] = { 2, TF,             SEN(umount2),                   "umount2"               },
+[BASE_NR +  53] = { 0, 0,              SEN(lock),                      "lock"                  },
+[BASE_NR +  54] = { 3, TD,             SEN(ioctl),                     "ioctl"                 },
+[BASE_NR +  55] = { 3, TD,             SEN(fcntl),                     "fcntl"                 },
+[BASE_NR +  56] = { 0, 0,              SEN(mpx),                       "mpx"                   },
+[BASE_NR +  57] = { 2, 0,              SEN(setpgid),                   "setpgid"               },
+[BASE_NR +  58] = { 0, 0,              SEN(ulimit),                    "ulimit"                },
+[BASE_NR +  59] = { 1, 0,              SEN(oldolduname),               "oldolduname"           },
+[BASE_NR +  60] = { 1, NF,             SEN(umask),                     "umask"                 },
+[BASE_NR +  61] = { 1, TF,             SEN(chroot),                    "chroot"                },
+[BASE_NR +  62] = { 2, TSFA,           SEN(ustat),                     "ustat"                 },
+[BASE_NR +  63] = { 2, TD,             SEN(dup2),                      "dup2"                  },
+[BASE_NR +  64] = { 0, PU|NF,          SEN(getppid),                   "getppid"               },
+[BASE_NR +  65] = { 0, PU|NF,          SEN(getpgrp),                   "getpgrp"               },
+[BASE_NR +  66] = { 0, 0,              SEN(setsid),                    "setsid"                },
+[BASE_NR +  67] = { 3, TS,             SEN(sigaction),                 "sigaction"             },
+[BASE_NR +  68] = { 0, TS,             SEN(sgetmask),                  "sgetmask"              },
+[BASE_NR +  69] = { 1, TS,             SEN(ssetmask),                  "ssetmask"              },
+[BASE_NR +  70] = { 2, 0,              SEN(setreuid),                  "setreuid"              },
+[BASE_NR +  71] = { 2, 0,              SEN(setregid),                  "setregid"              },
+[BASE_NR +  72] = { 1, TS,             SEN(sigsuspend),                "sigsuspend"            },
+[BASE_NR +  73] = { 1, TS,             SEN(sigpending),                "sigpending"            },
+[BASE_NR +  74] = { 2, 0,              SEN(sethostname),               "sethostname"           },
+[BASE_NR +  75] = { 2, 0,              SEN(setrlimit),                 "setrlimit"             },
+[BASE_NR +  76] = { 2, 0,              SEN(getrlimit),                 "getrlimit"             },
+[BASE_NR +  77] = { 2, 0,              SEN(getrusage),                 "getrusage"             },
+[BASE_NR +  78] = { 2, 0,              SEN(gettimeofday),              "gettimeofday"          },
+[BASE_NR +  79] = { 2, 0,              SEN(settimeofday),              "settimeofday"          },
+[BASE_NR +  80] = { 2, 0,              SEN(getgroups),                 "getgroups"             },
+[BASE_NR +  81] = { 2, 0,              SEN(setgroups),                 "setgroups"             },
+[BASE_NR +  82] = { 0, 0,              SEN(printargs),                 "reserved82"            },
+[BASE_NR +  83] = { 2, TF,             SEN(symlink),                   "symlink"               },
+[BASE_NR +  84] = { 2, TF|TLST|TSTA,   SEN(oldlstat),                  "oldlstat"              },
+[BASE_NR +  85] = { 3, TF,             SEN(readlink),                  "readlink"              },
+[BASE_NR +  86] = { 1, TF,             SEN(uselib),                    "uselib"                },
+[BASE_NR +  87] = { 2, TF,             SEN(swapon),                    "swapon"                },
+[BASE_NR +  88] = { 4, 0,              SEN(reboot),                    "reboot"                },
+[BASE_NR +  89] = { 3, TD,             SEN(readdir),                   "readdir"               },
+[BASE_NR +  90] = { 6, TD|TM|SI,       SEN(mmap),                      "mmap"                  },
+[BASE_NR +  91] = { 2, TM|SI,          SEN(munmap),                    "munmap"                },
+[BASE_NR +  92] = { 2, TF,             SEN(truncate),                  "truncate"              },
+[BASE_NR +  93] = { 2, TD,             SEN(ftruncate),                 "ftruncate"             },
+[BASE_NR +  94] = { 2, TD,             SEN(fchmod),                    "fchmod"                },
+[BASE_NR +  95] = { 3, TD,             SEN(fchown),                    "fchown"                },
+[BASE_NR +  96] = { 2, 0,              SEN(getpriority),               "getpriority"           },
+[BASE_NR +  97] = { 3, 0,              SEN(setpriority),               "setpriority"           },
+[BASE_NR +  98] = { 0, 0,              SEN(profil),                    "profil"                },
+[BASE_NR +  99] = { 2, TF|TSF|TSFA,    SEN(statfs),                    "statfs"                },
+[BASE_NR + 100] = { 2, TD|TFSF|TSFA,   SEN(fstatfs),                   "fstatfs"               },
+[BASE_NR + 101] = { 3, 0,              SEN(ioperm),                    "ioperm"                },
+[BASE_NR + 102] = { 2, TD,             SEN(socketcall),                "socketcall"            },
+[BASE_NR + 103] = { 3, 0,              SEN(syslog),                    "syslog"                },
+[BASE_NR + 104] = { 3, 0,              SEN(setitimer),                 "setitimer"             },
+[BASE_NR + 105] = { 2, 0,              SEN(getitimer),                 "getitimer"             },
+[BASE_NR + 106] = { 2, TF|TST|TSTA,    SEN(stat),                      "stat"                  },
+[BASE_NR + 107] = { 2, TF|TLST|TSTA,   SEN(lstat),                     "lstat"                 },
+[BASE_NR + 108] = { 2, TD|TFST|TSTA,   SEN(fstat),                     "fstat"                 },
+[BASE_NR + 109] = { 1, 0,              SEN(olduname),                  "olduname"              },
+[BASE_NR + 110] = { 1, 0,              SEN(iopl),                      "iopl"                  },
+[BASE_NR + 111] = { 0, 0,              SEN(vhangup),                   "vhangup"               },
+[BASE_NR + 112] = { 0, 0,              SEN(idle),                      "idle"                  },
+[BASE_NR + 113] = { 5, 0,              SEN(vm86old),                   "vm86"                  },
+[BASE_NR + 114] = { 4, TP,             SEN(wait4),                     "wait4"                 },
+[BASE_NR + 115] = { 1, TF,             SEN(swapoff),                   "swapoff"               },
+[BASE_NR + 116] = { 1, 0,              SEN(sysinfo),                   "sysinfo"               },
+[BASE_NR + 117] = { 6, TI,             SEN(ipc),                       "ipc"                   },
+[BASE_NR + 118] = { 1, TD,             SEN(fsync),                     "fsync"                 },
+[BASE_NR + 119] = { 0, TS,             SEN(sigreturn),                 "sigreturn"             },
+[BASE_NR + 120] = { 5, TP,             SEN(clone),                     "clone"                 },
+[BASE_NR + 121] = { 2, 0,              SEN(setdomainname),             "setdomainname"         },
+[BASE_NR + 122] = { 1, 0,              SEN(uname),                     "uname"                 },
+[BASE_NR + 123] = { 0, 0,              SEN(modify_ldt),                "modify_ldt"            },
+[BASE_NR + 124] = { 1, 0,              SEN(adjtimex32),                "adjtimex"              },
+[BASE_NR + 125] = { 3, TM|SI,          SEN(mprotect),                  "mprotect"              },
+[BASE_NR + 126] = { 3, TS,             SEN(sigprocmask),               "sigprocmask"           },
+[BASE_NR + 127] = { 2, 0,              SEN(create_module),             "create_module"         },
+[BASE_NR + 128] = { 3, 0,              SEN(init_module),               "init_module"           },
+[BASE_NR + 129] = { 2, 0,              SEN(delete_module),             "delete_module"         },
+[BASE_NR + 130] = { 1, 0,              SEN(get_kernel_syms),           "get_kernel_syms"       },
+[BASE_NR + 131] = { 4, TF,             SEN(quotactl),                  "quotactl"              },
+[BASE_NR + 132] = { 1, 0,              SEN(getpgid),                   "getpgid"               },
+[BASE_NR + 133] = { 1, TD,             SEN(fchdir),                    "fchdir"                },
+[BASE_NR + 134] = { 2, 0,              SEN(bdflush),                   "bdflush"               },
+[BASE_NR + 135] = { 3, 0,              SEN(sysfs),                     "sysfs"                 },
+[BASE_NR + 136] = { 1, NF,             SEN(personality),               "personality"           },
+[BASE_NR + 137] = { 0, 0,              SEN(afs_syscall),               "afs_syscall"           },
+[BASE_NR + 138] = { 1, NF,             SEN(setfsuid),                  "setfsuid"              },
+[BASE_NR + 139] = { 1, NF,             SEN(setfsgid),                  "setfsgid"              },
+[BASE_NR + 140] = { 5, TD,             SEN(llseek),                    "_llseek"               },
+[BASE_NR + 141] = { 3, TD,             SEN(getdents),                  "getdents"              },
+[BASE_NR + 142] = { 5, TD,             SEN(select),                    "_newselect"            },
+[BASE_NR + 143] = { 2, TD,             SEN(flock),                     "flock"                 },
+[BASE_NR + 144] = { 3, TM,             SEN(msync),                     "msync"                 },
+[BASE_NR + 145] = { 3, TD,             SEN(readv),                     "readv"                 },
+[BASE_NR + 146] = { 3, TD,             SEN(writev),                    "writev"                },
+[BASE_NR + 147] = { 3, 0,              SEN(printargs),                 "cacheflush"            },
+[BASE_NR + 148] = { 3, 0,              SEN(printargs),                 "cachectl"              },
+[BASE_NR + 149] = { 4, 0,              SEN(sysmips),                   "sysmips"               },
+[BASE_NR + 150] = { 0, 0,              SEN(setup),                     "setup"                 },
+[BASE_NR + 151] = { 1, 0,              SEN(getsid),                    "getsid"                },
+[BASE_NR + 152] = { 1, TD,             SEN(fdatasync),                 "fdatasync"             },
+[BASE_NR + 153] = { 1, 0,              SEN(sysctl),                    "_sysctl"               },
+[BASE_NR + 154] = { 2, TM,             SEN(mlock),                     "mlock"                 },
+[BASE_NR + 155] = { 2, TM,             SEN(munlock),                   "munlock"               },
+[BASE_NR + 156] = { 1, TM,             SEN(mlockall),                  "mlockall"              },
+[BASE_NR + 157] = { 0, TM,             SEN(munlockall),                "munlockall"            },
+[BASE_NR + 158] = { 2, 0,              SEN(sched_setparam),            "sched_setparam"        },
+[BASE_NR + 159] = { 2, 0,              SEN(sched_getparam),            "sched_getparam"        },
+[BASE_NR + 160] = { 3, 0,              SEN(sched_setscheduler),        "sched_setscheduler"    },
+[BASE_NR + 161] = { 1, 0,              SEN(sched_getscheduler),        "sched_getscheduler"    },
+[BASE_NR + 162] = { 0, 0,              SEN(sched_yield),               "sched_yield"           },
+[BASE_NR + 163] = { 1, 0,              SEN(sched_get_priority_max),    "sched_get_priority_max"},
+[BASE_NR + 164] = { 1, 0,              SEN(sched_get_priority_min),    "sched_get_priority_min"},
+[BASE_NR + 165] = { 2, 0,              SEN(sched_rr_get_interval_time32),"sched_rr_get_interval"},
+[BASE_NR + 166] = { 2, 0,              SEN(nanosleep_time32),          "nanosleep"             },
+[BASE_NR + 167] = { 5, TM|SI,          SEN(mremap),                    "mremap"                },
+[BASE_NR + 168] = { 3, TN,             SEN(accept),                    "accept"                },
+[BASE_NR + 169] = { 3, TN,             SEN(bind),                      "bind"                  },
+[BASE_NR + 170] = { 3, TN,             SEN(connect),                   "connect"               },
+[BASE_NR + 171] = { 3, TN,             SEN(getpeername),               "getpeername"           },
+[BASE_NR + 172] = { 3, TN,             SEN(getsockname),               "getsockname"           },
+[BASE_NR + 173] = { 5, TN,             SEN(getsockopt),                "getsockopt"            },
+[BASE_NR + 174] = { 2, TN,             SEN(listen),                    "listen"                },
+[BASE_NR + 175] = { 4, TN,             SEN(recv),                      "recv"                  },
+[BASE_NR + 176] = { 6, TN,             SEN(recvfrom),                  "recvfrom"              },
+[BASE_NR + 177] = { 3, TN,             SEN(recvmsg),                   "recvmsg"               },
+[BASE_NR + 178] = { 4, TN,             SEN(send),                      "send"                  },
+[BASE_NR + 179] = { 3, TN,             SEN(sendmsg),                   "sendmsg"               },
+[BASE_NR + 180] = { 6, TN,             SEN(sendto),                    "sendto"                },
+[BASE_NR + 181] = { 5, TN,             SEN(setsockopt),                "setsockopt"            },
+[BASE_NR + 182] = { 2, TN,             SEN(shutdown),                  "shutdown"              },
+[BASE_NR + 183] = { 3, TN,             SEN(socket),                    "socket"                },
+[BASE_NR + 184] = { 4, TN,             SEN(socketpair),                "socketpair"            },
+[BASE_NR + 185] = { 3, 0,              SEN(setresuid),                 "setresuid"             },
+[BASE_NR + 186] = { 3, 0,              SEN(getresuid),                 "getresuid"             },
+[BASE_NR + 187] = { 5, 0,              SEN(query_module),              "query_module"          },
+[BASE_NR + 188] = { 3, TD,             SEN(poll_time32),               "poll"                  },
+[BASE_NR + 189] = { 3, 0,              SEN(nfsservctl),                "nfsservctl"            },
+[BASE_NR + 190] = { 3, 0,              SEN(setresgid),                 "setresgid"             },
+[BASE_NR + 191] = { 3, 0,              SEN(getresgid),                 "getresgid"             },
+[BASE_NR + 192] = { 5, 0,              SEN(prctl),                     "prctl"                 },
+[BASE_NR + 193] = { 0, TS,             SEN(rt_sigreturn),              "rt_sigreturn"          },
+[BASE_NR + 194] = { 4, TS,             SEN(rt_sigaction),              "rt_sigaction"          },
+[BASE_NR + 195] = { 4, TS,             SEN(rt_sigprocmask),            "rt_sigprocmask"        },
+[BASE_NR + 196] = { 2, TS,             SEN(rt_sigpending),             "rt_sigpending"         },
+[BASE_NR + 197] = { 4, TS,             SEN(rt_sigtimedwait_time32),    "rt_sigtimedwait"       },
+[BASE_NR + 198] = { 3, TS,             SEN(rt_sigqueueinfo),           "rt_sigqueueinfo"       },
+[BASE_NR + 199] = { 2, TS,             SEN(rt_sigsuspend),             "rt_sigsuspend"         },
+[BASE_NR + 200] = { 6, TD,             SEN(pread),                     "pread64"               },
+[BASE_NR + 201] = { 6, TD,             SEN(pwrite),                    "pwrite64"              },
+[BASE_NR + 202] = { 3, TF,             SEN(chown),                     "chown"                 },
+[BASE_NR + 203] = { 2, TF,             SEN(getcwd),                    "getcwd"                },
+[BASE_NR + 204] = { 2, 0,              SEN(capget),                    "capget"                },
+[BASE_NR + 205] = { 2, 0,              SEN(capset),                    "capset"                },
+[BASE_NR + 206] = { 2, TS,             SEN(sigaltstack),               "sigaltstack"           },
+[BASE_NR + 207] = { 4, TD|TN,          SEN(sendfile),                  "sendfile"              },
+[BASE_NR + 208] = { 5, TN,             SEN(getpmsg),                   "getpmsg"               },
+[BASE_NR + 209] = { 5, TN,             SEN(putpmsg),                   "putpmsg"               },
+[BASE_NR + 210] = { 6, TD|TM|SI,       SEN(mmap_4koff),                "mmap2"                 },
+[BASE_NR + 211] = { 4, TF,             SEN(truncate64),                "truncate64"            },
+[BASE_NR + 212] = { 4, TD,             SEN(ftruncate64),               "ftruncate64"           },
+[BASE_NR + 213] = { 2, TF|TST|TSTA,    SEN(stat64),                    "stat64"                },
+[BASE_NR + 214] = { 2, TF|TLST|TSTA,   SEN(lstat64),                   "lstat64"               },
+[BASE_NR + 215] = { 2, TD|TFST|TSTA,   SEN(fstat64),                   "fstat64"               },
+[BASE_NR + 216] = { 2, TF,             SEN(pivotroot),                 "pivot_root"            },
+[BASE_NR + 217] = { 3, TM,             SEN(mincore),                   "mincore"               },
+[BASE_NR + 218] = { 3, TM,             SEN(madvise),                   "madvise"               },
+[BASE_NR + 219] = { 3, TD,             SEN(getdents64),                "getdents64"            },
+[BASE_NR + 220] = { 3, TD,             SEN(fcntl64),                   "fcntl64"               },
+[BASE_NR + 221] = { 0, 0,              SEN(printargs),                 "reserved221"           },
+[BASE_NR + 222] = { 0, PU|NF,          SEN(gettid),                    "gettid"                },
+[BASE_NR + 223] = { 5, TD,             SEN(readahead),                 "readahead"             },
+[BASE_NR + 224] = { 5, TF,             SEN(setxattr),                  "setxattr"              },
+[BASE_NR + 225] = { 5, TF,             SEN(setxattr),                  "lsetxattr"             },
+[BASE_NR + 226] = { 5, TD,             SEN(fsetxattr),                 "fsetxattr"             },
+[BASE_NR + 227] = { 4, TF,             SEN(getxattr),                  "getxattr"              },
+[BASE_NR + 228] = { 4, TF,             SEN(getxattr),                  "lgetxattr"             },
+[BASE_NR + 229] = { 4, TD,             SEN(fgetxattr),                 "fgetxattr"             },
+[BASE_NR + 230] = { 3, TF,             SEN(listxattr),                 "listxattr"             },
+[BASE_NR + 231] = { 3, TF,             SEN(listxattr),                 "llistxattr"            },
+[BASE_NR + 232] = { 3, TD,             SEN(flistxattr),                "flistxattr"            },
+[BASE_NR + 233] = { 2, TF,             SEN(removexattr),               "removexattr"           },
+[BASE_NR + 234] = { 2, TF,             SEN(removexattr),               "lremovexattr"          },
+[BASE_NR + 235] = { 2, TD,             SEN(fremovexattr),              "fremovexattr"          },
+[BASE_NR + 236] = { 2, TS,             SEN(kill),                      "tkill"                 },
+[BASE_NR + 237] = { 4, TD|TN,          SEN(sendfile64),                "sendfile64"            },
+[BASE_NR + 238] = { 6, 0,              SEN(futex_time32),              "futex"                 },
+[BASE_NR + 239] = { 3, 0,              SEN(sched_setaffinity),         "sched_setaffinity"     },
+[BASE_NR + 240] = { 3, 0,              SEN(sched_getaffinity),         "sched_getaffinity"     },
+[BASE_NR + 241] = { 2, TM,             SEN(io_setup),                  "io_setup"              },
+[BASE_NR + 242] = { 1, TM,             SEN(io_destroy),                "io_destroy"            },
+[BASE_NR + 243] = { 5, 0,              SEN(io_getevents_time32),       "io_getevents"          },
+[BASE_NR + 244] = { 3, 0,              SEN(io_submit),                 "io_submit"             },
+[BASE_NR + 245] = { 3, 0,              SEN(io_cancel),                 "io_cancel"             },
+[BASE_NR + 246] = { 1, TP|SE,          SEN(exit),                      "exit_group"            },
+[BASE_NR + 247] = { 4, 0,              SEN(lookup_dcookie),            "lookup_dcookie"        },
+[BASE_NR + 248] = { 1, TD,             SEN(epoll_create),              "epoll_create"          },
+[BASE_NR + 249] = { 4, TD,             SEN(epoll_ctl),                 "epoll_ctl"             },
+[BASE_NR + 250] = { 4, TD,             SEN(epoll_wait),                "epoll_wait"            },
+[BASE_NR + 251] = { 5, TM|SI,          SEN(remap_file_pages),          "remap_file_pages"      },
+[BASE_NR + 252] = { 1, 0,              SEN(set_tid_address),           "set_tid_address"       },
+[BASE_NR + 253] = { 0, 0,              SEN(restart_syscall),           "restart_syscall"       },
+[BASE_NR + 254] = { 7, TD,             SEN(fadvise64_64),              "fadvise64"             },
+[BASE_NR + 255] = { 3, TF|TSF|TSFA,    SEN(statfs64),                  "statfs64"              },
+[BASE_NR + 256] = { 3, TD|TFSF|TSFA,   SEN(fstatfs64),                 "fstatfs64"             },
+[BASE_NR + 257] = { 3, 0,              SEN(timer_create),              "timer_create"          },
+[BASE_NR + 258] = { 4, 0,              SEN(timer_settime32),           "timer_settime"         },
+[BASE_NR + 259] = { 2, 0,              SEN(timer_gettime32),           "timer_gettime"         },
+[BASE_NR + 260] = { 1, 0,              SEN(timer_getoverrun),          "timer_getoverrun"      },
+[BASE_NR + 261] = { 1, 0,              SEN(timer_delete),              "timer_delete"          },
+[BASE_NR + 262] = { 2, 0,              SEN(clock_settime32),           "clock_settime"         },
+[BASE_NR + 263] = { 2, 0,              SEN(clock_gettime32),           "clock_gettime"         },
+[BASE_NR + 264] = { 2, 0,              SEN(clock_getres_time32),       "clock_getres"          },
+[BASE_NR + 265] = { 4, 0,              SEN(clock_nanosleep_time32),    "clock_nanosleep"       },
+[BASE_NR + 266] = { 3, TS,             SEN(tgkill),                    "tgkill"                },
+[BASE_NR + 267] = { 2, TF,             SEN(utimes),                    "utimes"                },
+[BASE_NR + 268] = { 6, TM,             SEN(mbind),                     "mbind"                 },
+[BASE_NR + 269] = { 5, TM,             SEN(get_mempolicy),             "get_mempolicy"         },
+[BASE_NR + 270] = { 3, TM,             SEN(set_mempolicy),             "set_mempolicy"         },
+[BASE_NR + 271] = { 4, TD,             SEN(mq_open),                   "mq_open"               },
+[BASE_NR + 272] = { 1, 0,              SEN(mq_unlink),                 "mq_unlink"             },
+[BASE_NR + 273] = { 5, TD,             SEN(mq_timedsend_time32),       "mq_timedsend"          },
+[BASE_NR + 274] = { 5, TD,             SEN(mq_timedreceive_time32),    "mq_timedreceive"       },
+[BASE_NR + 275] = { 2, TD,             SEN(mq_notify),                 "mq_notify"             },
+[BASE_NR + 276] = { 3, TD,             SEN(mq_getsetattr),             "mq_getsetattr"         },
+[BASE_NR + 277] = { 5, 0,              SEN(vserver),                   "vserver"               },
+[BASE_NR + 278] = { 5, TP,             SEN(waitid),                    "waitid"                },
+[BASE_NR + 279] = { },
+[BASE_NR + 280] = { 5, 0,              SEN(add_key),                   "add_key"               },
+[BASE_NR + 281] = { 4, 0,              SEN(request_key),               "request_key"           },
+[BASE_NR + 282] = { 5, 0,              SEN(keyctl),                    "keyctl"                },
+[BASE_NR + 283] = { 1, 0,              SEN(set_thread_area),           "set_thread_area"       },
+[BASE_NR + 284] = { 0, TD,             SEN(inotify_init),              "inotify_init"          },
+[BASE_NR + 285] = { 3, TD|TF,          SEN(inotify_add_watch),         "inotify_add_watch"     },
+[BASE_NR + 286] = { 2, TD,             SEN(inotify_rm_watch),          "inotify_rm_watch"      },
+[BASE_NR + 287] = { 4, TM,             SEN(migrate_pages),             "migrate_pages"         },
+[BASE_NR + 288] = { 4, TD|TF,          SEN(openat),                    "openat"                },
+[BASE_NR + 289] = { 3, TD|TF,          SEN(mkdirat),                   "mkdirat"               },
+[BASE_NR + 290] = { 4, TD|TF,          SEN(mknodat),                   "mknodat"               },
+[BASE_NR + 291] = { 5, TD|TF,          SEN(fchownat),                  "fchownat"              },
+[BASE_NR + 292] = { 3, TD|TF,          SEN(futimesat),                 "futimesat"             },
+[BASE_NR + 293] = { 4, TD|TF|TFST|TSTA,SEN(fstatat64),                 "fstatat64"             },
+[BASE_NR + 294] = { 3, TD|TF,          SEN(unlinkat),                  "unlinkat"              },
+[BASE_NR + 295] = { 4, TD|TF,          SEN(renameat),                  "renameat"              },
+[BASE_NR + 296] = { 5, TD|TF,          SEN(linkat),                    "linkat"                },
+[BASE_NR + 297] = { 3, TD|TF,          SEN(symlinkat),                 "symlinkat"             },
+[BASE_NR + 298] = { 4, TD|TF,          SEN(readlinkat),                "readlinkat"            },
+[BASE_NR + 299] = { 3, TD|TF,          SEN(fchmodat),                  "fchmodat"              },
+[BASE_NR + 300] = { 3, TD|TF,          SEN(faccessat),                 "faccessat"             },
+[BASE_NR + 301] = { 6, TD,             SEN(pselect6_time32),           "pselect6"              },
+[BASE_NR + 302] = { 5, TD,             SEN(ppoll_time32),              "ppoll"                 },
+[BASE_NR + 303] = { 1, TP,             SEN(unshare),                   "unshare"               },
+[BASE_NR + 304] = { 6, TD,             SEN(splice),                    "splice"                },
+[BASE_NR + 305] = { 7, TD,             SEN(sync_file_range),           "sync_file_range"       },
+[BASE_NR + 306] = { 4, TD,             SEN(tee),                       "tee"                   },
+[BASE_NR + 307] = { 4, TD,             SEN(vmsplice),                  "vmsplice"              },
+[BASE_NR + 308] = { 6, TM,             SEN(move_pages),                "move_pages"            },
+[BASE_NR + 309] = { 2, 0,              SEN(set_robust_list),           "set_robust_list"       },
+[BASE_NR + 310] = { 3, 0,              SEN(get_robust_list),           "get_robust_list"       },
+[BASE_NR + 311] = { 4, 0,              SEN(kexec_load),                "kexec_load"            },
+[BASE_NR + 312] = { 3, 0,              SEN(getcpu),                    "getcpu"                },
+[BASE_NR + 313] = { 6, TD,             SEN(epoll_pwait),               "epoll_pwait"           },
+[BASE_NR + 314] = { 3, 0,              SEN(ioprio_set),                "ioprio_set"            },
+[BASE_NR + 315] = { 2, 0,              SEN(ioprio_get),                "ioprio_get"            },
+[BASE_NR + 316] = { 4, TD|TF,          SEN(utimensat_time32),          "utimensat"             },
+[BASE_NR + 317] = { 3, TD|TS,          SEN(signalfd),                  "signalfd"              },
+[BASE_NR + 318] = { 4, TD,             SEN(timerfd),                   "timerfd"               },
+[BASE_NR + 319] = { 1, TD,             SEN(eventfd),                   "eventfd"               },
+[BASE_NR + 320] = { 6, TD,             SEN(fallocate),                 "fallocate"             },
+[BASE_NR + 321] = { 2, TD,             SEN(timerfd_create),            "timerfd_create"        },
+[BASE_NR + 322] = { 2, TD,             SEN(timerfd_gettime32),         "timerfd_gettime"       },
+[BASE_NR + 323] = { 4, TD,             SEN(timerfd_settime32),         "timerfd_settime"       },
+[BASE_NR + 324] = { 4, TD|TS,          SEN(signalfd4),                 "signalfd4"             },
+[BASE_NR + 325] = { 2, TD,             SEN(eventfd2),                  "eventfd2"              },
+[BASE_NR + 326] = { 1, TD,             SEN(epoll_create1),             "epoll_create1"         },
+[BASE_NR + 327] = { 3, TD,             SEN(dup3),                      "dup3"                  },
+[BASE_NR + 328] = { 2, TD,             SEN(pipe2),                     "pipe2"                 },
+[BASE_NR + 329] = { 1, TD,             SEN(inotify_init1),             "inotify_init1"         },
+[BASE_NR + 330] = { 5, TD,             SEN(preadv),                    "preadv"                },
+[BASE_NR + 331] = { 5, TD,             SEN(pwritev),                   "pwritev"               },
+[BASE_NR + 332] = { 4, TP|TS,          SEN(rt_tgsigqueueinfo),         "rt_tgsigqueueinfo"     },
+[BASE_NR + 333] = { 5, TD,             SEN(perf_event_open),           "perf_event_open"       },
+[BASE_NR + 334] = { 4, TN,             SEN(accept4),                   "accept4"               },
+[BASE_NR + 335] = { 5, TN,             SEN(recvmmsg_time32),           "recvmmsg"              },
+[BASE_NR + 336] = { 2, TD,             SEN(fanotify_init),             "fanotify_init"         },
+[BASE_NR + 337] = { 6, TD|TF,          SEN(fanotify_mark),             "fanotify_mark"         },
+[BASE_NR + 338] = { 4, 0,              SEN(prlimit64),                 "prlimit64"             },
+[BASE_NR + 339] = { 5, TD|TF,          SEN(name_to_handle_at),         "name_to_handle_at"     },
+[BASE_NR + 340] = { 3, TD,             SEN(open_by_handle_at),         "open_by_handle_at"     },
+[BASE_NR + 341] = { 2, 0,              SEN(clock_adjtime32),           "clock_adjtime"         },
+[BASE_NR + 342] = { 1, TD,             SEN(syncfs),                    "syncfs"                },
+[BASE_NR + 343] = { 4, TN,             SEN(sendmmsg),                  "sendmmsg"              },
+[BASE_NR + 344] = { 2, TD,             SEN(setns),                     "setns"                 },
+[BASE_NR + 345] = { 6, 0,              SEN(process_vm_readv),          "process_vm_readv"      },
+[BASE_NR + 346] = { 6, 0,              SEN(process_vm_writev),         "process_vm_writev"     },
+[BASE_NR + 347] = { 5, 0,              SEN(kcmp),                      "kcmp"                  },
+[BASE_NR + 348] = { 3, TD,             SEN(finit_module),              "finit_module"          },
+[BASE_NR + 349] = { 3, 0,              SEN(sched_setattr),             "sched_setattr"         },
+[BASE_NR + 350] = { 4, 0,              SEN(sched_getattr),             "sched_getattr"         },
+[BASE_NR + 351] = { 5, TD|TF,          SEN(renameat2),                 "renameat2"             },
+[BASE_NR + 352] = { 3, 0,              SEN(seccomp),                   "seccomp"               },
+[BASE_NR + 353] = { 3, 0,              SEN(getrandom),                 "getrandom"             },
+[BASE_NR + 354] = { 2, TD,             SEN(memfd_create),              "memfd_create"          },
+[BASE_NR + 355] = { 3, TD,             SEN(bpf),                       "bpf"                   },
+[BASE_NR + 356] = { 5, TD|TF|TP|SE|SI, SEN(execveat),                  "execveat"              },
+[BASE_NR + 357] = { 1, TD,             SEN(userfaultfd),               "userfaultfd"           },
+[BASE_NR + 358] = { 2, 0,              SEN(membarrier),                "membarrier"            },
+[BASE_NR + 359] = { 3, TM,             SEN(mlock2),                    "mlock2"                },
+[BASE_NR + 360] = { 6, TD,             SEN(copy_file_range),           "copy_file_range"       },
+[BASE_NR + 361] = { 6, TD,             SEN(preadv2),                   "preadv2"               },
+[BASE_NR + 362] = { 6, TD,             SEN(pwritev2),                  "pwritev2"              },
+[BASE_NR + 363] = { 4, TM|SI,          SEN(pkey_mprotect),             "pkey_mprotect"         },
+[BASE_NR + 364] = { 2, 0,              SEN(pkey_alloc),                "pkey_alloc"            },
+[BASE_NR + 365] = { 1, 0,              SEN(pkey_free),                 "pkey_free"             },
+[BASE_NR + 366] = { 5, TD|TF|TSTA,     SEN(statx),                     "statx"                 },
+[BASE_NR + 367] = { 4, 0,              SEN(rseq),                      "rseq"                  },
+[BASE_NR + 368] = { 6, 0,              SEN(io_pgetevents_time32),      "io_pgetevents"         },
 /* room for arch specific calls */
-[4393] = { 3,  TI,             SEN(semget),                    "semget"                },
-[4394] = { 4,  TI,             SEN(semctl),                    "semctl"                },
-[4395] = { 3,  TI,             SEN(shmget),                    "shmget"                },
-[4396] = { 3,  TI,             SEN(shmctl),                    "shmctl"                },
-[4397] = { 3,  TI|TM|SI,       SEN(shmat),                     "shmat"                 },
-[4398] = { 1,  TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
-[4399] = { 2,  TI,             SEN(msgget),                    "msgget"                },
-[4400] = { 4,  TI,             SEN(msgsnd),                    "msgsnd"                },
-[4401] = { 5,  TI,             SEN(msgrcv),                    "msgrcv"                },
-[4402] = { 3,  TI,             SEN(msgctl),                    "msgctl"                },
-[4403] = { 2,  0,              SEN(clock_gettime64),           "clock_gettime64"       },
-[4404] = { 2,  0,              SEN(clock_settime64),           "clock_settime64"       },
-[4405] = { 2,  0,              SEN(clock_adjtime64),           "clock_adjtime64"       },
-[4406] = { 2,  0,              SEN(clock_getres_time64),       "clock_getres_time64"   },
-[4407] = { 4,  0,              SEN(clock_nanosleep_time64),    "clock_nanosleep_time64"},
-[4408] = { 2,  0,              SEN(timer_gettime64),           "timer_gettime64"       },
-[4409] = { 4,  0,              SEN(timer_settime64),           "timer_settime64"       },
-[4410] = { 2,  TD,             SEN(timerfd_gettime64),         "timerfd_gettime64"     },
-[4411] = { 4,  TD,             SEN(timerfd_settime64),         "timerfd_settime64"     },
-[4412] = { 4,  TD|TF,          SEN(utimensat_time64),          "utimensat_time64"      },
-[4413] = { 6,  TD,             SEN(pselect6_time64),           "pselect6_time64"       },
-[4414] = { 5,  TD,             SEN(ppoll_time64),              "ppoll_time64"          },
-[4416] = { 6,  0,              SEN(io_pgetevents_time64),      "io_pgetevents_time64"  },
-[4417] = { 5,  TN,             SEN(recvmmsg_time64),           "recvmmsg_time64"       },
-[4418] = { 5,  TD,             SEN(mq_timedsend_time64),       "mq_timedsend_time64"   },
-[4419] = { 5,  TD,             SEN(mq_timedreceive_time64),    "mq_timedreceive_time64"},
-[4420] = { 4,  TI,             SEN(semtimedop_time64),         "semtimedop_time64"     },
-[4421] = { 4,  TS,             SEN(rt_sigtimedwait_time64),    "rt_sigtimedwait_time64"},
-[4422] = { 6,  0,              SEN(futex_time64),              "futex_time64"          },
-[4423] = { 2,  0,              SEN(sched_rr_get_interval_time64),      "sched_rr_get_interval_time64"  },
-[4424] = { 4,  TD|TS,          SEN(pidfd_send_signal),         "pidfd_send_signal"     },
-[4425] = { 2,  TD,             SEN(io_uring_setup),            "io_uring_setup"        },
-[4426] = { 6,  TD|TS,          SEN(io_uring_enter),            "io_uring_enter"        },
-[4427] = { 4,  TD|TM,          SEN(io_uring_register),         "io_uring_register"     },
+[BASE_NR + 393] = { 3, TI,             SEN(semget),                    "semget"                },
+[BASE_NR + 394] = { 4, TI,             SEN(semctl),                    "semctl"                },
+[BASE_NR + 395] = { 3, TI,             SEN(shmget),                    "shmget"                },
+[BASE_NR + 396] = { 3, TI,             SEN(shmctl),                    "shmctl"                },
+[BASE_NR + 397] = { 3, TI|TM|SI,       SEN(shmat),                     "shmat"                 },
+[BASE_NR + 398] = { 1, TI|TM|SI,       SEN(shmdt),                     "shmdt"                 },
+[BASE_NR + 399] = { 2, TI,             SEN(msgget),                    "msgget"                },
+[BASE_NR + 400] = { 4, TI,             SEN(msgsnd),                    "msgsnd"                },
+[BASE_NR + 401] = { 5, TI,             SEN(msgrcv),                    "msgrcv"                },
+[BASE_NR + 402] = { 3, TI,             SEN(msgctl),                    "msgctl"                },
+[BASE_NR + 403] = { 2, 0,              SEN(clock_gettime64),           "clock_gettime64"       },
+[BASE_NR + 404] = { 2, 0,              SEN(clock_settime64),           "clock_settime64"       },
+[BASE_NR + 405] = { 2, 0,              SEN(clock_adjtime64),           "clock_adjtime64"       },
+[BASE_NR + 406] = { 2, 0,              SEN(clock_getres_time64),       "clock_getres_time64"   },
+[BASE_NR + 407] = { 4, 0,              SEN(clock_nanosleep_time64),    "clock_nanosleep_time64"},
+[BASE_NR + 408] = { 2, 0,              SEN(timer_gettime64),           "timer_gettime64"       },
+[BASE_NR + 409] = { 4, 0,              SEN(timer_settime64),           "timer_settime64"       },
+[BASE_NR + 410] = { 2, TD,             SEN(timerfd_gettime64),         "timerfd_gettime64"     },
+[BASE_NR + 411] = { 4, TD,             SEN(timerfd_settime64),         "timerfd_settime64"     },
+[BASE_NR + 412] = { 4, TD|TF,          SEN(utimensat_time64),          "utimensat_time64"      },
+[BASE_NR + 413] = { 6, TD,             SEN(pselect6_time64),           "pselect6_time64"       },
+[BASE_NR + 414] = { 5, TD,             SEN(ppoll_time64),              "ppoll_time64"          },
+[BASE_NR + 416] = { 6, 0,              SEN(io_pgetevents_time64),      "io_pgetevents_time64"  },
+[BASE_NR + 417] = { 5, TN,             SEN(recvmmsg_time64),           "recvmmsg_time64"       },
+[BASE_NR + 418] = { 5, TD,             SEN(mq_timedsend_time64),       "mq_timedsend_time64"   },
+[BASE_NR + 419] = { 5, TD,             SEN(mq_timedreceive_time64),    "mq_timedreceive_time64"},
+[BASE_NR + 420] = { 4, TI,             SEN(semtimedop_time64),         "semtimedop_time64"     },
+[BASE_NR + 421] = { 4, TS,             SEN(rt_sigtimedwait_time64),    "rt_sigtimedwait_time64"},
+[BASE_NR + 422] = { 6, 0,              SEN(futex_time64),              "futex_time64"          },
+[BASE_NR + 423] = { 2, 0,              SEN(sched_rr_get_interval_time64),      "sched_rr_get_interval_time64"  },
+[BASE_NR + 424] = { 4, TD|TS,          SEN(pidfd_send_signal),         "pidfd_send_signal"     },
+[BASE_NR + 425] = { 2, TD,             SEN(io_uring_setup),            "io_uring_setup"        },
+[BASE_NR + 426] = { 6, TD|TS,          SEN(io_uring_enter),            "io_uring_enter"        },
+[BASE_NR + 427] = { 4, TD|TM,          SEN(io_uring_register),         "io_uring_register"     },
 
 # define SYS_socket_subcall      4500
 # include "subcall32.h"
 # include "syscallent-o32-stub.h"
 
 #endif
+#undef BASE_NR