[{"id":3684308,"web_url":"http://patchwork.ozlabs.org/comment/3684308/","msgid":"<6d3f5166-d1fe-410c-9fde-995b85f0045d@oss.qualcomm.com>","list_archive_url":null,"date":"2026-04-29T22:41:02","subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","submitter":{"id":93152,"url":"http://patchwork.ozlabs.org/api/people/93152/","name":"Pierrick Bouvier","email":"pierrick.bouvier@oss.qualcomm.com"},"content":"On 4/29/2026 7:38 AM, Warner Losh wrote:\n> Generate strace.list in a stable way. All FreeBSD system call numbers\n> are stable: they always and will forever mean only one thing (even if we\n> abandon a syscall number and remove the code from the kernel, we'll\n> never reuse it). System calls are the same across all architectures, and\n> newer versions just have more of them. Use the number in the generated\n> table so we can compile it on any version of FreeBSD.\n> \n> Also include the script that I used to generate this. It requires the\n> FreeBSD source tree, which is why we can't use it to generate\n> strace.list. This depends on the FreeBSD source tree at the moment,\n> since it uses the same system call generation machinery that FreeBSD\n> uses to generate its system call tables, so we can't connect it to the\n> qemu build until that issue is corrected. We've had a terrible strace.list\n> for a while, and this will make it better (and there's serious issues\n> with strace, just like linux-user, so it's a little-used feature).\n>\n\nThat's fine for now, and you can eliminate the intree strace.list once\nit will be solved.\n\n> Note: I derived this script from one of the FreeBSD system call\n> generation scripts, so it needs to be BSD-2-Clause license, which\n> deviates a bit from the GPL-2.0-or-newer preference, but I think is OK\n> since it's not folded into the qemu binaries themselves (and output of\n> scripts is typically public domain, as is the case here). This script is\n> written in lua, but every FreeBSD installation has a 'flua' binary that\n> can run this script, and it leverages about 7k lines of library and\n> metadata FreeBSD maintains well.\n>\n\nThis sounds like a reasonable requirement given that it will be only\ncalled on FreeBSD hosts.\n\n> Signed-off-by: Warner Losh <imp@bsdimp.com>\n> ---\n>  bsd-user/freebsd/scripts/strace.lua | 117 ++++++\n>  bsd-user/freebsd/strace.list        | 708 ++++++++++++++++++++++--------------\n>  2 files changed, 556 insertions(+), 269 deletions(-)\n> \n> diff --git a/bsd-user/freebsd/scripts/strace.lua b/bsd-user/freebsd/scripts/strace.lua\n> new file mode 100755\n> index 0000000000..c89e8e3aeb\n> --- /dev/null\n> +++ b/bsd-user/freebsd/scripts/strace.lua\n> @@ -0,0 +1,117 @@\n> +#!/usr/libexec/flua\n> +--\n> +-- SPDX-License-Identifier: BSD-2-Clause\n> +--\n> +-- Copyright (c) 2026 Warner Losh <imp@FreeBSD.org>\n> +-- Copyright (c) 2024 Tyler Baxter <agge@FreeBSD.org>\n> +-- Copyright (c) 2019 Kyle Evans <kevans@FreeBSD.org>\n> +--\n> +\n> +-- Add library root to the package path.\n> +local path = arg[0]:gsub(\"/[^/]+.lua$\", \"\")\n> +package.path = package.path .. \";\" .. path .. \"/?.lua;\" .. os.getenv('FREEBSD_SYSCALL_DIR') .. \"/?.lua\"\n> +\n> +local FreeBSDSyscall = require(\"core.freebsd-syscall\")\n> +local generator = require(\"tools.generator\")\n> +local config = require(\"config\")\n> +\n> +-- File has not been decided yet; config will decide file.  Default defined as\n> +-- /dev/null.\n\nNot sure what this comment means, given that it's declared and defined\nas stdout on next line.\n\n> +file = \"/dev/stdout\"\n> +\n> +function generate(tbl, config, fh)\n> +\t-- Grab the master system calls table.\n> +\tlocal s = tbl.syscalls\n> +\n> +\ttable.sort(s, function(a, b)\n> +\t    return a.arg_alias < b.arg_alias\n> +\tend)\n> +\t-- Bind the generator to the parameter file.\n> +\tlocal gen = generator:new({}, fh)\n> +\tgen.storage_levels = {}\t-- make sure storage is clear\n> +\n> +\t-- Write the generated preamble.\n> +\tgen:preamble(\"FreeBSD strace list\\nNOTE: Use syscall numbers so we work on all the branches.\")\n> +\n> +\tfor _, v in pairs(s) do\n> +\t\tlocal c = v:compatLevel()\n> +\n> +\t\t-- Handle non-compat:\n> +\t\tif v:native() then\n> +\t\t\t-- All these negation conditions are because (in\n> +\t\t\t-- general) these are cases where code for sysproto.h\n> +\t\t\t-- is not generated.\n> +\t\t\tif not v.type.NOARGS and not v.type.NOPROTO and\n> +\t\t\t    not v.type.NODEF then\n> +\t\t\t\tfmt = \"NULL\"\n> +\t\t\t\tfcn = \"NULL\"\n> +\t\t\t\tif v.arg_alias == \"__sysctl\" then\n> +\t\t\t\t\tfcn = \"print_sysctl\"\n> +\t\t\t\telseif v.arg_alias == \"execve\" or v.arg_alias == \"fexecve\" then\n> +\t\t\t\t\tfcn = \"print_execve\"\n> +\t\t\t\telseif v.arg_alias == \"ioctl\" then\n> +\t\t\t\t\tfcn = \"print_ioctl\"\n> +\t\t\t\telseif v.arg_alias == \"mmap\" then\n> +\t\t\t\t\tfcn = \"print_mmap\"\n> +\t\t\t\telseif v.arg_alias == \"sysarch\" then\n> +\t\t\t\t\tfcn = \"print_sysarch\"\n> +\t\t\t\telseif #v.args > 0 then\n> +\t\t\t\t\tfmt = \"\\\"%s(\"\n> +\t\t\t\t\tfor _, arg in ipairs(v.args) do\n> +\t\t\t\t\t\tif arg.type == \"char *\" then\n> +\t\t\t\t\t\t\tfmt = fmt .. \"%s, \"\n> +\t\t\t\t\t\telseif arg.type == \"mode_t\" then\n> +\t\t\t\t\t\t\tfmt = fmt .. \"%o, \"\n> +\t\t\t\t\t\telse\n> +\t\t\t\t\t\t\tfmt = fmt .. \"%#x, \"\n> +\t\t\t\t\t\tend\n> +\t\t\t\t\tend\n> +\t\t\t\t\tfmt = fmt:sub(1, -3)  .. \")\\\"\"\n> +\t\t\t\tend\n> +\t\t\t\tgen:write(string.format(\n> +\t\t\t\t    \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n> +\t\t\t\t    v.num, v.arg_alias, fmt, fcn))\n> +\t\t\tend\n> +\t\t-- Handle compat (everything >= FREEBSD9):\n> +\t\telseif c >= 9 then\n> +\t\t\tlocal idx = c * 10\n> +\t\t\tif not v.type.NOARGS and not v.type.NOPROTO and\n> +\t\t\t    not v.type.NODEF then\n> +\t\t\t\tfmt = \"NULL\"\n> +\t\t\t\tif #v.args > 0 then\n> +\t\t\t\t\tfmt = \"\\\"%s(\"\n> +\t\t\t\t\tfor _, arg in ipairs(v.args) do\n> +\t\t\t\t\t\tif arg.type == \"char *\" then\n> +\t\t\t\t\t\t\tfmt = fmt .. \"%s, \"\n> +\t\t\t\t\t\telseif arg.type == \"mode_t\" then\n> +\t\t\t\t\t\t\tfmt = fmt .. \"%o, \"\n> +\t\t\t\t\t\telse\n> +\t\t\t\t\t\t\tfmt = fmt .. \"%#x, \"\n> +\t\t\t\t\t\tend\n> +\t\t\t\t\tend\n> +\t\t\t\t\tfmt = fmt:sub(1, -3)  .. \")\\\"\"\n> +\t\t\t\tend\n> +\t\t\t\tgen:write(string.format(\n> +\t\t\t\t    \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n> +\t\t\t\t    v.num, v.arg_alias, fmt, fcn))\n> +\t\t\tend\n> +\t\tend\n> +\t\t-- Do nothing for obsolete, unimplemented, and reserved.\n> +\tend\n> +end\n> +\n> +\n> +if #arg < 1 or #arg > 2 then\n> +\terror(\"usage: \" .. arg[0] .. \" syscall.master\")\n> +end\n> +\n> +local sysfile = arg[1]\n> +\n> +config.merge(None)\n> +config.mergeCompat()\n> +\n> +-- The parsed system call table.\n> +local tbl = FreeBSDSyscall:new{sysfile = sysfile, config = config}\n> +\n> +file = arg[2] or \"/dev/stdout\"\n\nI'm not very familiar with lua, but since file has a default value set\nto /dev/stdout, I guess it could be?\nfile = arg[2] or file\n\n> +generate(tbl, config, file)\n> diff --git a/bsd-user/freebsd/strace.list b/bsd-user/freebsd/strace.list\n> index d7f61f480e..2c4176475a 100644\n> --- a/bsd-user/freebsd/strace.list\n> +++ b/bsd-user/freebsd/strace.list\n> @@ -1,273 +1,443 @@\n>  /*\n> - *  FreeBSD strace list\n> + * FreeBSD strace list\n> + * NOTE: Use syscall numbers so we work on all the branches.\n>   *\n> - *\n> - *  This program is free software; you can redistribute it and/or modify\n> - *  it under the terms of the GNU General Public License as published by\n> - *  the Free Software Foundation; either version 2 of the License, or\n> - *  (at your option) any later version.\n> - *\n> - *  This program is distributed in the hope that it will be useful,\n> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of\n> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n> - *  GNU General Public License for more details.\n> - *\n> - *  You should have received a copy of the GNU General Public License\n> - *  along with this program; if not, see <http://www.gnu.org/licenses/>.\n> + * DO NOT EDIT-- this file is automatically @generated.\n>   */\n>  \n> -{ TARGET_FREEBSD_NR___acl_aclcheck_fd, \"__acl_aclcheck_fd\", \"%s(%d, %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_aclcheck_file, \"__acl_aclcheck_file\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_aclcheck_link, \"__acl_aclcheck_link\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_delete_fd, \"__acl_delete_fd\", \"%s(%d, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_delete_file, \"__acl_delete_file\", \"%s(\\\"%s\\\", %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_delete_link, \"__acl_delete_link\", \"%s(\\\"%s\\\", %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_get_fd, \"__acl_get_fd\", \"%s(%d, %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_get_file, \"__acl_get_file\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_get_link, \"__acl_get_link\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_set_fd, \"__acl_set_fd\", \"%s(%d, %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_set_file, \"__acl_set_file\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_set_link, \"__acl_set_link\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___getcwd, \"__getcwd\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR___semctl, \"__semctl\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR___syscall, \"__syscall\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR___sysctl, \"__sysctl\", NULL, print_sysctl, NULL },\n> -{ TARGET_FREEBSD_NR__umtx_op, \"_umtx_op\", \"%s(%#x, %d, %d, %#x, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_accept, \"accept\", \"%s(%d,%#x,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_accept4, \"accept4\", \"%s(%d,%d,%#x,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_access, \"access\", \"%s(\\\"%s\\\",%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_acct, \"acct\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_adjtime, \"adjtime\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_bind, \"bind\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_bindat, \"bindat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_break, \"break\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_enter, \"cap_enter\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_fcntls_get, \"cap_fcntls_get\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_fcntls_limit, \"cap_fcntls_limit\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_getmode, \"cap_getmode\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_ioctls_get, \"cap_ioctls_get\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_ioctls_limit, \"cap_ioctls_limit\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cap_rights_limit, \"cap_rights_limit\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_chdir, \"chdir\", \"%s(\\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_chflags, \"chflags\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_chflagsat, \"chflagsat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_chmod, \"chmod\", \"%s(\\\"%s\\\",%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_chown, \"chown\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_chroot, \"chroot\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_clock_getres, \"clock_getres\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_clock_gettime, \"clock_gettime\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_clock_settime, \"clock_settime\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_close, \"close\", \"%s(%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_connect, \"connect\", \"%s(%d,%#x,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_connectat, \"connectat\", \"%s(%d,%d,%#x,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cpuset_getdomain, \"cpuset_getdomain\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_cpuset_setdomain, \"cpuset_setdomain\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_dup, \"dup\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_dup2, \"dup2\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_eaccess, \"eaccess\", \"%s(\\\"%s\\\",%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_execve, \"execve\", NULL, print_execve, NULL },\n> -{ TARGET_FREEBSD_NR_exit, \"exit\", \"%s(%d)\\n\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattrctl, \"extattrctl\", \"%s(\\\"%s\\\", %d, \\\"%s\\\", %d, \\\"%s\\\"\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_delete_fd, \"extattr_delete_fd\", \"%s(%d, %d, \\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_delete_file, \"extattr_delete_file\", \"%s(\\\"%s\\\", %d, \\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_delete_link, \"extattr_delete_link\", \"%s(\\\"%s\\\", %d, \\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_get_fd, \"extattr_get_fd\", \"%s(%d, %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_get_file, \"extattr_get_file\", \"%s(\\\"%s\\\", %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_get_file, \"extattr_get_link\", \"%s(\\\"%s\\\", %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_list_fd, \"extattr_list_fd\", \"%s(%d, %d, %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_list_file, \"extattr_list_file\", \"%s(\\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_list_link, \"extattr_list_link\", \"%s(\\\"%s\\\", %d, %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_set_fd, \"extattr_set_fd\", \"%s(%d, %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_set_file, \"extattr_set_file\", \"%s(\\\"%s\\\", %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_extattr_set_link, \"extattr_set_link\", \"%s(\\\"%s\\\", %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fchdir, \"fchdir\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fchflags, \"fchflags\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fchmod, \"fchmod\", \"%s(%d,%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fchown, \"fchown\", \"%s(%d,%d,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fcntl, \"fcntl\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fdatasync, \"fdatasync\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fexecve, \"fexecve\", NULL, print_execve, NULL },\n> -{ TARGET_FREEBSD_NR_fhopen, \"fhopen\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fhstat, \"fhstat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fhstatfs, \"fhstatfs\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_fhstat, \"freebsd11_fhstat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_fhstatfs, \"freebsd11_fhstatfs\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_flock, \"flock\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fork, \"fork\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fpathconf, \"fpathconf\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fstat, \"fstat\", \"%s(%d,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fstatat, \"fstatat\", \"%s(%d,\\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fstatfs, \"fstatfs\", \"%s(%d,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_fstat, \"freebsd11_fstat\", \"%s(%d,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_fstatat, \"freebsd11_fstatat\", \"%s(%d,\\\"%s\\\", %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_fstatfs, \"freebsd11_fstatfs\", \"%s(%d,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_fsync, \"fsync\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ftruncate, \"ftruncate\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_futimens, \"futimens\", \"%s(%d,%p)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_futimes, \"futimes\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getcontext, \"getcontext\", \"%s(%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getdirentries, \"getdirentries\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_getdirentries, \"freebsd11_getdirentries\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getegid, \"getegid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_geteuid, \"geteuid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getfh, \"getfh\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getfsstat, \"getfsstat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_getfsstat, \"freebsd11_getfsstat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getgid, \"getgid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getgroups, \"getgroups\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getitimer, \"getitimer\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getlogin, \"getlogin\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getpeername, \"getpeername\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getpgid, \"getpgid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getpgrp, \"getpgrp\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getpid, \"getpid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getppid, \"getppid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getpriority, \"getpriority\", \"%s(%#x,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getrandom, \"getrandom\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getresgid, \"getresgid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getresuid, \"getresuid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getrlimit, \"getrlimit\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getrusage, \"getrusage\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getsid, \"getsid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getsockname, \"getsockname\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getsockopt, \"getsockopt\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_gettimeofday, \"gettimeofday\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_getuid, \"getuid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ioctl, \"ioctl\", NULL, print_ioctl, NULL },\n> -{ TARGET_FREEBSD_NR_issetugid, \"issetugid\", \"%s()\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_kevent, \"freebsd11_kevent\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_kevent, \"kevent\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_kill, \"kill\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_kqueue, \"kqueue\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ktrace, \"ktrace\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_lchown, \"lchown\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_link, \"link\", \"%s(\\\"%s\\\",\\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_listen, \"listen\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_lpathconf, \"lpathconf\", \"%s(\\\"%s\\\", %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_lseek, \"lseek\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_lstat, \"freebsd11_lstat\", \"%s(\\\"%s\\\",%p)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_madvise, \"madvise\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mincore, \"mincore\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_minherit, \"minherit\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mkdir, \"mkdir\", \"%s(\\\"%s\\\",%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mkfifo, \"mkfifo\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mknodat, \"mknodat\", \"%s(%d, \\\"%s\\\",%#o,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_mknod, \"freebsd11_mknod\", \"%s(\\\"%s\\\",%#o,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_mknodat, \"freebsd11_mknodat\", \"%s(%d, \\\"%s\\\",%#o,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mlock, \"mlock\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mlockall, \"mlockall\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mmap, \"mmap\", NULL, NULL, print_syscall_ret_addr },\n> -{ TARGET_FREEBSD_NR_mount, \"mount\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_mprotect, \"mprotect\", \"%s(%#x,%#x,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_msgctl, \"msgctl\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_msgget, \"msgget\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_msgrcv, \"msgrcv\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_msgsnd, \"msgsnd\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_msync, \"msync\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_munlock, \"munlock\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_munlockall, \"munlockall\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_munmap, \"munmap\", \"%s(%p,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_nanosleep, \"nanosleep\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_nfssvc, \"nfssvc\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_open, \"open\", \"%s(\\\"%s\\\",%#x,%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_openat, \"openat\", \"%s(%d, \\\"%s\\\",%#x,%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_pathconf, \"pathconf\", \"%s(\\\"%s\\\", %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd10_pipe, \"freebsd10_pipe\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_pipe2, \"pipe2\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_poll, \"poll\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_posix_fallocate, \"posix_fallocate\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_pread, \"pread\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_preadv, \"preadv\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_profil, \"profil\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ptrace, \"ptrace\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_pwrite, \"pwrite\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_pwritev, \"pwritev\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_quotactl, \"quotactl\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_read, \"read\", \"%s(%d,%#x,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_readlink, \"readlink\", \"%s(\\\"%s\\\",%p,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_readv, \"readv\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_reboot, \"reboot\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_recvfrom, \"recvfrom\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_recvmsg, \"recvmsg\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_rename, \"rename\", \"%s(\\\"%s\\\",\\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_revoke, \"revoke\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_rfork, \"rfork\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_rmdir, \"rmdir\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_rtprio_thread, \"rtprio_thread\", \"%s(%d, %d, %p)\", NULL, NULL },\n> -#ifdef TARGET_FREEBSD_NR_sbrk\n> -{ TARGET_FREEBSD_NR_sbrk, \"sbrk\", NULL, NULL, NULL },\n> -#endif\n> -{ TARGET_FREEBSD_NR_sched_get_priority_max, \"sched_get_priority_max\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sched_get_priority_min, \"sched_get_priority_min\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sched_yield, \"sched_yield\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_select, \"select\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_semget, \"semget\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_semop, \"semop\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sendmsg, \"sendmsg\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sendto, \"sendto\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setcontext, \"setcontext\", \"%s(%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setegid, \"setegid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_seteuid, \"seteuid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setgid, \"setgid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setgroups, \"setgroups\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setitimer, \"setitimer\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setlogin, \"setlogin\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setpgid, \"setpgid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setpriority, \"setpriority\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setregid, \"setregid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setresgid, \"setresgid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setresuid, \"setresuid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setreuid, \"setreuid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setrlimit, \"setrlimit\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setsid, \"setsid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setsockopt, \"setsockopt\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_settimeofday, \"settimeofday\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_setuid, \"setuid\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_shmat, \"shmat\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_shmctl, \"shmctl\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_shmdt, \"shmdt\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_shmget, \"shmget\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_shutdown, \"shutdown\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sigaction, \"sigaction\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sigaltstack, \"sigaltstack\", \"%s(%p,%p)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sigpending, \"sigpending\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sigprocmask, \"sigprocmask\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sigreturn, \"sigreturn\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sigsuspend, \"sigsuspend\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_socket, \"socket\", \"%s(%d,%d,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_socketpair, \"socketpair\", NULL, NULL, NULL },\n> -#ifdef TARGET_FREEBSD_NR_sstk\n> -{ TARGET_FREEBSD_NR_sstk, \"sstk\", NULL, NULL, NULL },\n> -#endif\n> -{ TARGET_FREEBSD_NR_freebsd11_stat, \"freebsd11_stat\", \"%s(\\\"%s\\\",%p)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_freebsd11_statfs, \"freebsd11_statfs\", \"%s(\\\"%s\\\",%p)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_symlink, \"symlink\", \"%s(\\\"%s\\\",\\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sync, \"sync\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_sysarch, \"sysarch\", NULL, print_sysarch, NULL },\n> -{ TARGET_FREEBSD_NR_syscall, \"syscall\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ktimer_create, \"timer_create\" , NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ktimer_delete, \"timer_delete\" , NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ktimer_settime, \"timer_settime\" , NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ktimer_gettime, \"timer_gettime\" , NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_ktimer_getoverrun, \"timer_getoverrun\" , NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_create, \"thr_create\", \"%s(%#x, %#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_exit, \"thr_exit\", \"%s(%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_kill, \"thr_kill\", \"%s(%d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_kill2, \"thr_kill2\", \"%s(%d, %d, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_new, \"thr_new\", \"%s(%#x, %d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_self, \"thr_self\", \"%s(%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_set_name, \"thr_set_name\", \"%s(%d, \\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_suspend, \"thr_suspend\", \"%s(%d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_thr_wake, \"thr_wake\", \"%s(%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_truncate, \"truncate\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_umask, \"umask\", \"%s(%#o)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_unlink, \"unlink\", \"%s(\\\"%s\\\")\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_unmount, \"unmount\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_utimes, \"utimes\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_utimensat, \"utimensat\", \"%s(%d,%s,%p,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_vfork, \"vfork\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_wait4, \"wait4\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_wait6, \"wait6\", NULL, NULL, NULL },\n> -{ TARGET_FREEBSD_NR_write, \"write\", \"%s(%d,%#x,%d)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_writev, \"writev\", \"%s(%d,%p,%#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR_posix_openpt, \"posix_openpt\", \"%s(%d)\", NULL, NULL },\n> +{ 354, \"__acl_aclcheck_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 353, \"__acl_aclcheck_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 428, \"__acl_aclcheck_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 352, \"__acl_delete_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 351, \"__acl_delete_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 427, \"__acl_delete_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 349, \"__acl_get_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 347, \"__acl_get_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 425, \"__acl_get_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 350, \"__acl_set_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 348, \"__acl_set_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 426, \"__acl_set_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 515, \"__cap_rights_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 326, \"__getcwd_args\", \"%s(%s, %#x)\", NULL, NULL },\n> +{ 415, \"__mac_execve_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 386, \"__mac_get_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 387, \"__mac_get_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 410, \"__mac_get_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 409, \"__mac_get_pid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 384, \"__mac_get_proc_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 388, \"__mac_set_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 389, \"__mac_set_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 411, \"__mac_set_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 385, \"__mac_set_proc_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 574, \"__realpathat_args\", \"%s(%#x, %#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 510, \"__semctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 374, \"__setugid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 577, \"__specialfd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 202, \"__sysctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 570, \"__sysctlbyname_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 1, \"_exit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 454, \"_umtx_op_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 463, \"abort2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 541, \"accept4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 30, \"accept_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 33, \"access_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 51, \"acct_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 140, \"adjtime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 377, \"afs3_syscall_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 316, \"aio_cancel_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 317, \"aio_error_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 465, \"aio_fsync_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 543, \"aio_mlock_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 255, \"aio_read_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 579, \"aio_readv_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 314, \"aio_return_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 315, \"aio_suspend_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 359, \"aio_waitcomplete_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 256, \"aio_write_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 578, \"aio_writev_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 445, \"audit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 453, \"auditctl_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 446, \"auditon_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 104, \"bind_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 538, \"bindat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 17, \"break_args\", \"%s(%s)\", NULL, NULL },\n> +{ 516, \"cap_enter_args\", NULL, NULL, NULL },\n> +{ 537, \"cap_fcntls_get_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 536, \"cap_fcntls_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 517, \"cap_getmode_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 535, \"cap_ioctls_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 534, \"cap_ioctls_limit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 533, \"cap_rights_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 12, \"chdir_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 34, \"chflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 540, \"chflagsat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 15, \"chmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 16, \"chown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 61, \"chroot_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 247, \"clock_getcpuclockid2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 234, \"clock_getres_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 232, \"clock_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 244, \"clock_nanosleep_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 233, \"clock_settime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 6, \"close_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 575, \"close_range_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 98, \"connect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 539, \"connectat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 569, \"copy_file_range_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 484, \"cpuset_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 487, \"cpuset_getaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 561, \"cpuset_getdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 486, \"cpuset_getid_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 488, \"cpuset_setaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 562, \"cpuset_setdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 485, \"cpuset_setid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 90, \"dup2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 41, \"dup_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 376, \"eaccess_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 59, \"execve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 373, \"extattr_delete_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 358, \"extattr_delete_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 414, \"extattr_delete_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 372, \"extattr_get_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 357, \"extattr_get_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 413, \"extattr_get_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 437, \"extattr_list_fd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 438, \"extattr_list_file_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 439, \"extattr_list_link_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 371, \"extattr_set_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 356, \"extattr_set_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 412, \"extattr_set_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 355, \"extattrctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 592, \"exterrctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 489, \"faccessat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 13, \"fchdir_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 35, \"fchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 124, \"fchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 490, \"fchmodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 123, \"fchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 491, \"fchownat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 590, \"fchroot_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 92, \"fcntl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 550, \"fdatasync_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 492, \"fexecve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 241, \"ffclock_getcounter_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 243, \"ffclock_getestimate_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 242, \"ffclock_setestimate_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 565, \"fhlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 566, \"fhlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 298, \"fhopen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 567, \"fhreadlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> +{ 553, \"fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 558, \"fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 131, \"flock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 2, \"fork_args\", NULL, NULL, NULL },\n> +{ 192, \"fpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 434, \"freebsd10__umtx_lock_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 435, \"freebsd10__umtx_unlock_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 42, \"freebsd10_pipe_args\", NULL, NULL, NULL },\n> +{ 299, \"freebsd11_fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 398, \"freebsd11_fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 189, \"freebsd11_fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 493, \"freebsd11_fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 397, \"freebsd11_fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 272, \"freebsd11_getdents_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> +{ 196, \"freebsd11_getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 395, \"freebsd11_getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 363, \"freebsd11_kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 190, \"freebsd11_lstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 14, \"freebsd11_mknod_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 498, \"freebsd11_mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 279, \"freebsd11_nfstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 280, \"freebsd11_nlstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 278, \"freebsd11_nstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 188, \"freebsd11_stat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 396, \"freebsd11_statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 72, \"freebsd11_vadvise_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 509, \"freebsd12_closefrom_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 482, \"freebsd12_shm_open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 424, \"freebsd13_swapoff_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 79, \"freebsd14_getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 80, \"freebsd14_setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 580, \"fspacectl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 551, \"fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 552, \"fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 556, \"fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 95, \"fsync_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 480, \"ftruncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 568, \"funlinkat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 546, \"futimens_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 206, \"futimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 494, \"futimesat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 451, \"getaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 449, \"getaudit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 447, \"getauid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 421, \"getcontext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 554, \"getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 89, \"getdtablesize_args\", NULL, NULL, NULL },\n> +{ 43, \"getegid_args\", NULL, NULL, NULL },\n> +{ 25, \"geteuid_args\", NULL, NULL, NULL },\n> +{ 161, \"getfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 564, \"getfhat_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 557, \"getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 47, \"getgid_args\", NULL, NULL, NULL },\n> +{ 595, \"getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 86, \"getitimer_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 49, \"getlogin_args\", \"%s(%s, %#x)\", NULL, NULL },\n> +{ 523, \"getloginclass_args\", \"%s(%s, %#x)\", NULL, NULL },\n> +{ 31, \"getpeername_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 207, \"getpgid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 81, \"getpgrp_args\", NULL, NULL, NULL },\n> +{ 20, \"getpid_args\", NULL, NULL, NULL },\n> +{ 39, \"getppid_args\", NULL, NULL, NULL },\n> +{ 100, \"getpriority_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 563, \"getrandom_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 361, \"getresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 360, \"getresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 194, \"getrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 589, \"getrlimitusage_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 117, \"getrusage_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 310, \"getsid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 32, \"getsockname_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 118, \"getsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 116, \"gettimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 24, \"getuid_args\", NULL, NULL, NULL },\n> +{ 593, \"inotify_add_watch_at_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 594, \"inotify_rm_watch_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 54, \"ioctl_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> +{ 253, \"issetugid_args\", NULL, NULL, NULL },\n> +{ 338, \"jail_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 436, \"jail_attach_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 597, \"jail_attach_jd_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 506, \"jail_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 508, \"jail_remove_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 598, \"jail_remove_jd_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 507, \"jail_set_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 588, \"kcmp_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 390, \"kenv_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> +{ 560, \"kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 599, \"kexec_load_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 37, \"kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 306, \"kldfind_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 309, \"kldfirstmod_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 304, \"kldload_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 307, \"kldnext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 308, \"kldstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 337, \"kldsym_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 305, \"kldunload_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 444, \"kldunloadf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 461, \"kmq_notify_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 457, \"kmq_open_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 458, \"kmq_setattr_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 459, \"kmq_timedreceive_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 460, \"kmq_timedsend_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 462, \"kmq_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 362, \"kqueue_args\", NULL, NULL, NULL },\n> +{ 583, \"kqueuex_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 400, \"ksem_close_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 408, \"ksem_destroy_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 407, \"ksem_getvalue_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 404, \"ksem_init_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 405, \"ksem_open_args\", \"%s(%#x, %#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 401, \"ksem_post_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 441, \"ksem_timedwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 403, \"ksem_trywait_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 406, \"ksem_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 402, \"ksem_wait_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 235, \"ktimer_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 236, \"ktimer_delete_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 239, \"ktimer_getoverrun_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 238, \"ktimer_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 237, \"ktimer_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 45, \"ktrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 391, \"lchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 274, \"lchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 254, \"lchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 160, \"lgetfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 9, \"link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 495, \"linkat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 257, \"lio_listio_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 106, \"listen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 513, \"lpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 478, \"lseek_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 276, \"lutimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 394, \"mac_syscall_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 75, \"madvise_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 584, \"membarrier_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 78, \"mincore_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> +{ 250, \"minherit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 136, \"mkdir_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 496, \"mkdirat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 132, \"mkfifo_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 497, \"mkfifoat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 559, \"mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 203, \"mlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 324, \"mlockall_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 477, \"mmap_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 303, \"modfind_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 302, \"modfnext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 300, \"modnext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 301, \"modstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 21, \"mount_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 74, \"mprotect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 511, \"msgctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 225, \"msgget_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 227, \"msgrcv_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 226, \"msgsnd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 170, \"msgsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 65, \"msync_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 204, \"munlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 325, \"munlockall_args\", NULL, NULL, NULL },\n> +{ 73, \"munmap_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 240, \"nanosleep_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 155, \"nfssvc_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 154, \"nlm_syscall_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 378, \"nmount_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 339, \"nnpfs_syscall_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 176, \"ntp_adjtime_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 248, \"ntp_gettime_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 5, \"open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 499, \"openat_args\", \"%s(%#x, %#x, %#x, %o)\", NULL, NULL },\n> +{ 191, \"pathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 518, \"pdfork_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 520, \"pdgetpid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 519, \"pdkill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 600, \"pdrfork_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 601, \"pdwait_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 542, \"pipe2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 209, \"poll_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 531, \"posix_fadvise_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 530, \"posix_fallocate_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 504, \"posix_openpt_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 545, \"ppoll_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 475, \"pread_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 289, \"preadv_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 544, \"procctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 44, \"profil_args\", \"%s(%s, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 522, \"pselect_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 26, \"ptrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 476, \"pwrite_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 290, \"pwritev_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 148, \"quotactl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 528, \"rctl_add_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 527, \"rctl_get_limits_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 525, \"rctl_get_racct_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 526, \"rctl_get_rules_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 529, \"rctl_remove_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 3, \"read_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 58, \"readlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> +{ 500, \"readlinkat_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> +{ 120, \"readv_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 55, \"reboot_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 29, \"recvfrom_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 27, \"recvmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 128, \"rename_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 602, \"renameat2_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 501, \"renameat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 56, \"revoke_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 251, \"rfork_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 137, \"rmdir_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 576, \"rpctls_syscall_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 166, \"rtprio_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 466, \"rtprio_thread_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 332, \"sched_get_priority_max_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 333, \"sched_get_priority_min_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 581, \"sched_getcpu_args\", NULL, NULL, NULL },\n> +{ 328, \"sched_getparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 330, \"sched_getscheduler_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 334, \"sched_rr_get_interval_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 327, \"sched_setparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 329, \"sched_setscheduler_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 331, \"sched_yield_args\", NULL, NULL, NULL },\n> +{ 474, \"sctp_generic_recvmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 472, \"sctp_generic_sendmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 473, \"sctp_generic_sendmsg_iov_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 471, \"sctp_peeloff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 93, \"select_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 221, \"semget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 222, \"semop_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 169, \"semsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 393, \"sendfile_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 28, \"sendmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 133, \"sendto_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 452, \"setaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 450, \"setaudit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 448, \"setauid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 422, \"setcontext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 591, \"setcred_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 182, \"setegid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 183, \"seteuid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 175, \"setfib_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 181, \"setgid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 596, \"setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 83, \"setitimer_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 50, \"setlogin_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 524, \"setloginclass_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 82, \"setpgid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 96, \"setpriority_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 127, \"setregid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 312, \"setresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 311, \"setresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 126, \"setreuid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 195, \"setrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 147, \"setsid_args\", NULL, NULL, NULL },\n> +{ 105, \"setsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 122, \"settimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 23, \"setuid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 571, \"shm_open2_args\", \"%s(%#x, %#x, %o, %#x, %#x)\", NULL, NULL },\n> +{ 572, \"shm_rename_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 483, \"shm_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 228, \"shmat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 512, \"shmctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 230, \"shmdt_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 231, \"shmget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 171, \"shmsys_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 134, \"shutdown_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 416, \"sigaction_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 53, \"sigaltstack_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 573, \"sigfastblock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 343, \"sigpending_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 340, \"sigprocmask_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 456, \"sigqueue_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 417, \"sigreturn_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 341, \"sigsuspend_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 345, \"sigtimedwait_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 429, \"sigwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 346, \"sigwaitinfo_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 97, \"socket_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 135, \"socketpair_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 555, \"statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 423, \"swapcontext_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 582, \"swapoff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 85, \"swapon_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 57, \"symlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 502, \"symlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 36, \"sync_args\", NULL, NULL, NULL },\n> +{ 165, \"sysarch_args\", \"%s(%#x, %s)\", NULL, NULL },\n> +{ 430, \"thr_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 431, \"thr_exit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 481, \"thr_kill2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 433, \"thr_kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 455, \"thr_new_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 432, \"thr_self_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 464, \"thr_set_name_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 442, \"thr_suspend_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 443, \"thr_wake_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 585, \"timerfd_create_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 586, \"timerfd_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 587, \"timerfd_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 479, \"truncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 60, \"umask_args\", \"%s(%o)\", NULL, NULL },\n> +{ 205, \"undelete_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 10, \"unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 503, \"unlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 22, \"unmount_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 547, \"utimensat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 138, \"utimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 335, \"utrace_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 392, \"uuidgen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 66, \"vfork_args\", NULL, NULL, NULL },\n> +{ 7, \"wait4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 532, \"wait6_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 4, \"write_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 121, \"writev_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 321, \"yield_args\", NULL, NULL, NULL },\n> \n\nOverall looks good, and my comments on file variable should not be blocking.\n\nReviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>\n\nRegards,\nPierrick","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (2048-bit key;\n unprotected) header.d=qualcomm.com header.i=@qualcomm.com header.a=rsa-sha256\n header.s=qcppdkim1 header.b=jz5EaSTx;\n\tdkim=pass (2048-bit key;\n unprotected) header.d=oss.qualcomm.com header.i=@oss.qualcomm.com\n header.a=rsa-sha256 header.s=google header.b=IEHQmt9/;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org\n (client-ip=209.51.188.17; helo=lists1p.gnu.org;\n envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists1p.gnu.org (lists1p.gnu.org [209.51.188.17])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4g5XNd2nmKz1yHv\n\tfor <incoming@patchwork.ozlabs.org>; Thu, 30 Apr 2026 08:41:51 +1000 (AEST)","from localhost ([::1] helo=lists1p.gnu.org)\n\tby lists1p.gnu.org with esmtp (Exim 4.90_1)\n\t(envelope-from <qemu-devel-bounces@nongnu.org>)\n\tid 1wIDas-00040s-3b; Wed, 29 Apr 2026 18:41:22 -0400","from eggs.gnu.org ([2001:470:142:3::10])\n by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <pierrick.bouvier@oss.qualcomm.com>)\n id 1wIDam-00040U-BI\n for qemu-devel@nongnu.org; Wed, 29 Apr 2026 18:41:16 -0400","from mx0a-0031df01.pphosted.com ([205.220.168.131])\n by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <pierrick.bouvier@oss.qualcomm.com>)\n id 1wIDah-0002GM-8f\n for qemu-devel@nongnu.org; Wed, 29 Apr 2026 18:41:16 -0400","from pps.filterd (m0279864.ppops.net [127.0.0.1])\n by mx0a-0031df01.pphosted.com (8.18.1.11/8.18.1.11) with ESMTP id\n 63TMFB7W3885255\n for <qemu-devel@nongnu.org>; Wed, 29 Apr 2026 22:41:07 GMT","from mail-dy1-f200.google.com (mail-dy1-f200.google.com\n [74.125.82.200])\n by mx0a-0031df01.pphosted.com (PPS) with ESMTPS id 4dutmag20k-1\n (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NOT)\n for <qemu-devel@nongnu.org>; Wed, 29 Apr 2026 22:41:07 +0000 (GMT)","by mail-dy1-f200.google.com with SMTP id\n 5a478bee46e88-2bdd327d970so241257eec.1\n for <qemu-devel@nongnu.org>; Wed, 29 Apr 2026 15:41:07 -0700 (PDT)","from [192.168.1.170] (216-71-219-44.dyn.novuscom.net.\n [216.71.219.44]) by smtp.gmail.com with ESMTPSA id\n 5a478bee46e88-2ed1bf6d315sm4515641eec.1.2026.04.29.15.41.03\n (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128);\n Wed, 29 Apr 2026 15:41:03 -0700 (PDT)"],"DKIM-Signature":["v=1; a=rsa-sha256; c=relaxed/relaxed; d=qualcomm.com; h=\n cc:content-transfer-encoding:content-type:date:from:in-reply-to\n :message-id:mime-version:references:subject:to; s=qcppdkim1; bh=\n QPBTm9h/2+r7R2lCk0Fyr1ynr6t+kRazsTuFELJ3ACE=; b=jz5EaSTxiiyj5HFc\n vecUgbSN4v8bznOCDxOOdzqz0kR/8Gny//gqPw1Y2c72XePULyIOeJk3dDWnobSV\n EQPe8YAwV6BxOSYC4ShMf7QCPXGjV3IXoZjROAxprIaLO9regAoFm8/Ngs2y1LUa\n Zq4tk3VYNmmcUu086TnONAdYbjOdqW/axrpnYaeMoibHJcPz4t3kb4udpRCD/Q8l\n vaQ8/r1HgaBzMXwK542zY06618azWcvU2Rf0n7fVvKU/7WR4RUDsUJ2PGbeCaPY5\n DL4+kjXSX9jBkJZhyIQpMk9juADK/ysP14pMApniAREWsXzrvBRW3kaQaSpnIH4D\n UeHHLw==","v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=oss.qualcomm.com; s=google; t=1777502466; x=1778107266; darn=nongnu.org;\n h=content-transfer-encoding:in-reply-to:content-language:from\n :references:cc:to:subject:user-agent:mime-version:date:message-id\n :from:to:cc:subject:date:message-id:reply-to;\n bh=QPBTm9h/2+r7R2lCk0Fyr1ynr6t+kRazsTuFELJ3ACE=;\n b=IEHQmt9/TPNVnvFIQfE7nHXwOvJW5eGsEH8Y4/178r3W/t/9eO7dblCNfAnO4+kt/b\n FRMnnnjO4dqbzd8JJsyaknNvqPc/BEmorYJcnszzaoP5lsaIh8ClwAaf55+EkmvaiSMU\n NiGBSOnvzJSNxBdwVbFKYnd87f6CMHHyNnbTjyBnojRc2jafOncx075a4psQtUPcMrAt\n Oa85mexuaxoOo6ehprQ/geH34eR2jy6OUPc08CyaUsbRRrOe/NnDoMcCkQdmPfSpTV/3\n XL97NlijnqFASR+k3g93cAE1bv3DDZkvyo0ZrO3OqhNJeU/+L98J+1L9EeOf9xnHmgkl\n kpAg=="],"X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=1e100.net; s=20251104; t=1777502466; x=1778107266;\n h=content-transfer-encoding:in-reply-to:content-language:from\n :references:cc:to:subject:user-agent:mime-version:date:message-id\n :x-gm-gg:x-gm-message-state:from:to:cc:subject:date:message-id\n :reply-to;\n bh=QPBTm9h/2+r7R2lCk0Fyr1ynr6t+kRazsTuFELJ3ACE=;\n b=M/RSMs/tjgN/OKQ+VDWNlQXnG8gQgfqAsYW3A7bWO+IlW4ZKFFAzgewrt7qOiRYWMw\n WgMEvBOPWDkCpxnIhmwqKsewCB2ivrsYBY3kcMHFkUxtBQKJVGBJqKceUPUAxoHYK4Zf\n tW4q8rp5ffY7t0U8c3cGTr/tJnZ94V+Szsi4PUbqTv6XbDDgguOOe7nVILJ+PtvYwKGh\n mgaQzkheV2BfKndqllujSCBTDzZI10cQN0FDCZEW5qSsD0/zuHZbeCqxNr3zcPKsPOom\n sfNkD7ieekufzCFxN9QTuote4MQz17usLou2XufJGBZ1Vgt+DUJf4nd62lg6dDbJQVlT\n 6KUw==","X-Forwarded-Encrypted":"i=1;\n AFNElJ8WDTYT9dVpFU6Q3q9fpoaDUrwGgYYAhKxGn5O+TLiku+HjNAXai+cq2hlh/eUaCH1ktDo7/Dg6qm6E@nongnu.org","X-Gm-Message-State":"AOJu0YzMEMIZCguzts+T0Tqlka9VG5zhDRseunb5Hpkul/w5bKWP6UUT\n WIYoMVrnEm1Mvf1/XgyUC8HFU0ASlDFtqdznN3NDYrv13qd6Zj9Y7gAjfDZEUlL5q8SVfvD22dT\n uEjnK/HPeW5zX+OzNbU3lRdUfakqn3ysMe3HSdnr7n5/5EK0Nisj4krcn4A==","X-Gm-Gg":"AeBDievynFm36M/wuACwUKL1hEKkCKKfkHnE3XtKWkzsJwkt1oW3TdZ2ZAa76wyNLJV\n WYt0EkNHprgahOPYe96+nv0LuQHS8LscAHhVpnucmLMeFn5h8tLfKRYHHsyg8enVR0AdRViMeR2\n wuDRaoMMHlvIpRkl2Zr0p6AggXlgKuGLIWitYtS+KXS8rGONFmNwUxSNLY0WkwlMQlmg5HJttlU\n PtJdyB6ZSn8SiZk6tq9fW0Zy+2sV7oSSg7ErpLeMF4qQeN/D5akBulOFYEiwoJQ7l/tNgwi+Koi\n nS0BtgZ8QAnpig3xi+rKnOCY9xGk553Md1tQkEVK3k2j3frLi6uCVblHyK/Zddg2dalh+zcd8dc\n uQIgOTcoF/ePp5Tjq7IHdMiQiOqs4jpDS0rsdhXK8tyK/7k0Qp/TZwF7KdAsq/Sgb4IbKfYBY1U\n HME0Vikwtey/8/xxzFWPOIxGcW","X-Received":["by 2002:a05:7301:5784:b0:2ea:ed27:56c7 with SMTP id\n 5a478bee46e88-2ed50cc5edcmr4441eec.20.1777502465856;\n Wed, 29 Apr 2026 15:41:05 -0700 (PDT)","by 2002:a05:7301:5784:b0:2ea:ed27:56c7 with SMTP id\n 5a478bee46e88-2ed50cc5edcmr4412eec.20.1777502464736;\n Wed, 29 Apr 2026 15:41:04 -0700 (PDT)"],"Message-ID":"<6d3f5166-d1fe-410c-9fde-995b85f0045d@oss.qualcomm.com>","Date":"Wed, 29 Apr 2026 15:41:02 -0700","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","To":"Warner Losh <imp@bsdimp.com>, qemu-devel@nongnu.org","Cc":"Kyle Evans <kevans@freebsd.org>, Paolo Bonzini <pbonzini@redhat.com>,\n\t=?utf-8?q?Marc-Andr=C3=A9_Lureau?= <marcandre.lureau@redhat.com>,\n\t=?utf-8?q?Daniel_P=2E_Berrang=C3=A9?= <berrange@redhat.com>, =?utf-8?q?Phil?=\n\t=?utf-8?q?ippe_Mathieu-Daud=C3=A9?= <philmd@linaro.org>","References":"<20260429-syscall-nr-v2-0-67a8d09dc13e@bsdimp.com>\n <20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>","From":"Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>","Content-Language":"en-US","In-Reply-To":"<20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>","Content-Type":"text/plain; charset=UTF-8","Content-Transfer-Encoding":"7bit","X-Proofpoint-ORIG-GUID":"lZ1YMWbsNOHGxU5ZIILuA7aoM2O-C6EM","X-Proofpoint-GUID":"lZ1YMWbsNOHGxU5ZIILuA7aoM2O-C6EM","X-Proofpoint-Spam-Details-Enc":"AW1haW4tMjYwNDI5MDIyNyBTYWx0ZWRfX8Ng0u77uVEuW\n kSxY6gGCCArlm/aF+0n3quJGKC83QTcb3xV4fYLUPSpH+5T9tFJ6x1i6Ax3j/XyU8+vM5UrLTLH\n 4aSbkXkF0BjPHRXupMQ8Kw+U1Efno70CPGIMnqoeBOE4zmZrcjVUwF334fmHbnEK7wCwuGrjQel\n 6Cc+R/9NERbtxMoml5BOnpKP5zUQo5LO3RYVA6mtasRGNldv1QJT5mGhhXlrFL5TUpwUZsuVqRl\n Qo8e3SlGt2yFcag/+DA/ihoFecsWvqQg67Yd4sOW7RfSb21HCFWpu93uIbOTSmBhS1+8ol+NE0C\n sL0TMj95E5Dcw+rK9mMSX3tHNksMiZFPN35aZDA1B3esQxbJgpLeEPObqQXfO2ZbFuTagZQ6Xnh\n ka4tg8llQd5o2Af2rz3vkArkWUCCx0lSbUAI02vsstoa0opnFkvlHe3+wystSlCYTM3OfJIsT4E\n RSyBhY/qCXR49L4PUsQ==","X-Authority-Analysis":"v=2.4 cv=Fpo1OWrq c=1 sm=1 tr=0 ts=69f28903 cx=c_pps\n a=PfFC4Oe2JQzmKTvty2cRDw==:117 a=iLqgmErQAxjCjdq5jj1Aqg==:17\n a=IkcTkHD0fZMA:10 a=A5OVakUREuEA:10 a=s4-Qcg_JpJYA:10\n a=VkNPw1HP01LnGYTKEx00:22 a=u7WPNUs3qKkmUXheDGA7:22 a=DJpcGTmdVt4CTyJn9g5Z:22\n a=mDV3o1hIAAAA:8 a=7Qk2ozbKAAAA:8 a=6I5d2MoRAAAA:8 a=EUspDBNiAAAA:8\n a=-BEVh7oj3nnX5ZedgFMA:9 a=QEXdDO2ut3YA:10 a=O8hF6Hzn-FEA:10\n a=6Ab_bkdmUrQuMsNx7PHu:22 a=1lyxoWkJIXJV6VJUPhuM:22","X-Proofpoint-Virus-Version":"vendor=baseguard\n engine=ICAP:2.0.293,Aquarius:18.0.1143,Hydra:6.1.51,FMLib:17.12.100.49\n definitions=2026-04-29_02,2026-04-28_01,2025-10-01_01","X-Proofpoint-Spam-Details":"rule=outbound_notspam policy=outbound score=0\n adultscore=0 impostorscore=0 suspectscore=0 malwarescore=0 spamscore=0\n clxscore=1015 lowpriorityscore=0 bulkscore=0 phishscore=0 priorityscore=1501\n classifier=typeunknown authscore=0 authtc= authcc= route=outbound adjust=0\n reason=mlx scancount=1 engine=8.22.0-2604200000 definitions=main-2604290227","Received-SPF":"pass client-ip=205.220.168.131;\n envelope-from=pierrick.bouvier@oss.qualcomm.com;\n helo=mx0a-0031df01.pphosted.com","X-Spam_score_int":"-27","X-Spam_score":"-2.8","X-Spam_bar":"--","X-Spam_report":"(-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,\n DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,\n RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001,\n SPF_PASS=-0.001 autolearn=ham autolearn_force=no","X-Spam_action":"no action","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"qemu development <qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<https://lists.nongnu.org/archive/html/qemu-devel>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org"}},{"id":3684376,"web_url":"http://patchwork.ozlabs.org/comment/3684376/","msgid":"<CANCZdfqGVDMLGaVJpcvOQnNRvM6P3SQz_i5nSw8w02H7wEiRTw@mail.gmail.com>","list_archive_url":null,"date":"2026-04-30T02:21:14","subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","submitter":{"id":1896,"url":"http://patchwork.ozlabs.org/api/people/1896/","name":"Warner Losh","email":"imp@bsdimp.com"},"content":"On Wed, Apr 29, 2026 at 4:41 PM Pierrick Bouvier <\npierrick.bouvier@oss.qualcomm.com> wrote:\n\n> On 4/29/2026 7:38 AM, Warner Losh wrote:\n> > Generate strace.list in a stable way. All FreeBSD system call numbers\n> > are stable: they always and will forever mean only one thing (even if we\n> > abandon a syscall number and remove the code from the kernel, we'll\n> > never reuse it). System calls are the same across all architectures, and\n> > newer versions just have more of them. Use the number in the generated\n> > table so we can compile it on any version of FreeBSD.\n> >\n> > Also include the script that I used to generate this. It requires the\n> > FreeBSD source tree, which is why we can't use it to generate\n> > strace.list. This depends on the FreeBSD source tree at the moment,\n> > since it uses the same system call generation machinery that FreeBSD\n> > uses to generate its system call tables, so we can't connect it to the\n> > qemu build until that issue is corrected. We've had a terrible\n> strace.list\n> > for a while, and this will make it better (and there's serious issues\n> > with strace, just like linux-user, so it's a little-used feature).\n> >\n>\n> That's fine for now, and you can eliminate the intree strace.list once\n> it will be solved.\n>\n\nYes. That's the plan.\n\n\n> > Note: I derived this script from one of the FreeBSD system call\n> > generation scripts, so it needs to be BSD-2-Clause license, which\n> > deviates a bit from the GPL-2.0-or-newer preference, but I think is OK\n> > since it's not folded into the qemu binaries themselves (and output of\n> > scripts is typically public domain, as is the case here). This script is\n> > written in lua, but every FreeBSD installation has a 'flua' binary that\n> > can run this script, and it leverages about 7k lines of library and\n> > metadata FreeBSD maintains well.\n> >\n>\n> This sounds like a reasonable requirement given that it will be only\n> called on FreeBSD hosts.\n>\n> > Signed-off-by: Warner Losh <imp@bsdimp.com>\n> > ---\n> >  bsd-user/freebsd/scripts/strace.lua | 117 ++++++\n> >  bsd-user/freebsd/strace.list        | 708\n> ++++++++++++++++++++++--------------\n> >  2 files changed, 556 insertions(+), 269 deletions(-)\n> >\n> > diff --git a/bsd-user/freebsd/scripts/strace.lua\n> b/bsd-user/freebsd/scripts/strace.lua\n> > new file mode 100755\n> > index 0000000000..c89e8e3aeb\n> > --- /dev/null\n> > +++ b/bsd-user/freebsd/scripts/strace.lua\n> > @@ -0,0 +1,117 @@\n> > +#!/usr/libexec/flua\n> > +--\n> > +-- SPDX-License-Identifier: BSD-2-Clause\n> > +--\n> > +-- Copyright (c) 2026 Warner Losh <imp@FreeBSD.org>\n> > +-- Copyright (c) 2024 Tyler Baxter <agge@FreeBSD.org>\n> > +-- Copyright (c) 2019 Kyle Evans <kevans@FreeBSD.org>\n> > +--\n> > +\n> > +-- Add library root to the package path.\n> > +local path = arg[0]:gsub(\"/[^/]+.lua$\", \"\")\n> > +package.path = package.path .. \";\" .. path .. \"/?.lua;\" ..\n> os.getenv('FREEBSD_SYSCALL_DIR') .. \"/?.lua\"\n> > +\n> > +local FreeBSDSyscall = require(\"core.freebsd-syscall\")\n> > +local generator = require(\"tools.generator\")\n> > +local config = require(\"config\")\n> > +\n> > +-- File has not been decided yet; config will decide file.  Default\n> defined as\n> > +-- /dev/null.\n>\n> Not sure what this comment means, given that it's declared and defined\n> as stdout on next line\n>\n\nThe comment is wrong. It was copied from what I started with and is bogus.\nI'll fix that.\n\n\n> > +file = \"/dev/stdout\"\n> > +\n> > +function generate(tbl, config, fh)\n> > +     -- Grab the master system calls table.\n> > +     local s = tbl.syscalls\n> > +\n> > +     table.sort(s, function(a, b)\n> > +         return a.arg_alias < b.arg_alias\n> > +     end)\n> > +     -- Bind the generator to the parameter file.\n> > +     local gen = generator:new({}, fh)\n> > +     gen.storage_levels = {} -- make sure storage is clear\n> > +\n> > +     -- Write the generated preamble.\n> > +     gen:preamble(\"FreeBSD strace list\\nNOTE: Use syscall numbers so we\n> work on all the branches.\")\n> > +\n> > +     for _, v in pairs(s) do\n> > +             local c = v:compatLevel()\n> > +\n> > +             -- Handle non-compat:\n> > +             if v:native() then\n> > +                     -- All these negation conditions are because (in\n> > +                     -- general) these are cases where code for\n> sysproto.h\n> > +                     -- is not generated.\n> > +                     if not v.type.NOARGS and not v.type.NOPROTO and\n> > +                         not v.type.NODEF then\n> > +                             fmt = \"NULL\"\n> > +                             fcn = \"NULL\"\n> > +                             if v.arg_alias == \"__sysctl\" then\n> > +                                     fcn = \"print_sysctl\"\n> > +                             elseif v.arg_alias == \"execve\" or\n> v.arg_alias == \"fexecve\" then\n> > +                                     fcn = \"print_execve\"\n> > +                             elseif v.arg_alias == \"ioctl\" then\n> > +                                     fcn = \"print_ioctl\"\n> > +                             elseif v.arg_alias == \"mmap\" then\n> > +                                     fcn = \"print_mmap\"\n> > +                             elseif v.arg_alias == \"sysarch\" then\n> > +                                     fcn = \"print_sysarch\"\n> > +                             elseif #v.args > 0 then\n> > +                                     fmt = \"\\\"%s(\"\n> > +                                     for _, arg in ipairs(v.args) do\n> > +                                             if arg.type == \"char *\"\n> then\n> > +                                                     fmt = fmt .. \"%s, \"\n> > +                                             elseif arg.type ==\n> \"mode_t\" then\n> > +                                                     fmt = fmt .. \"%o, \"\n> > +                                             else\n> > +                                                     fmt = fmt .. \"%#x,\n> \"\n> > +                                             end\n> > +                                     end\n> > +                                     fmt = fmt:sub(1, -3)  .. \")\\\"\"\n> > +                             end\n> > +                             gen:write(string.format(\n> > +                                 \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n> > +                                 v.num, v.arg_alias, fmt, fcn))\n> > +                     end\n> > +             -- Handle compat (everything >= FREEBSD9):\n> > +             elseif c >= 9 then\n> > +                     local idx = c * 10\n> > +                     if not v.type.NOARGS and not v.type.NOPROTO and\n> > +                         not v.type.NODEF then\n> > +                             fmt = \"NULL\"\n> > +                             if #v.args > 0 then\n> > +                                     fmt = \"\\\"%s(\"\n> > +                                     for _, arg in ipairs(v.args) do\n> > +                                             if arg.type == \"char *\"\n> then\n> > +                                                     fmt = fmt .. \"%s, \"\n> > +                                             elseif arg.type ==\n> \"mode_t\" then\n> > +                                                     fmt = fmt .. \"%o, \"\n> > +                                             else\n> > +                                                     fmt = fmt .. \"%#x,\n> \"\n> > +                                             end\n> > +                                     end\n> > +                                     fmt = fmt:sub(1, -3)  .. \")\\\"\"\n> > +                             end\n> > +                             gen:write(string.format(\n> > +                                 \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n> > +                                 v.num, v.arg_alias, fmt, fcn))\n> > +                     end\n> > +             end\n> > +             -- Do nothing for obsolete, unimplemented, and reserved.\n> > +     end\n> > +end\n> > +\n> > +\n> > +if #arg < 1 or #arg > 2 then\n> > +     error(\"usage: \" .. arg[0] .. \" syscall.master\")\n> > +end\n> > +\n> > +local sysfile = arg[1]\n> > +\n> > +config.merge(None)\n> > +config.mergeCompat()\n> > +\n> > +-- The parsed system call table.\n> > +local tbl = FreeBSDSyscall:new{sysfile = sysfile, config = config}\n> > +\n> > +file = arg[2] or \"/dev/stdout\"\n>\n> I'm not very familiar with lua, but since file has a default value set\n> to /dev/stdout, I guess it could be?\n> file = arg[2] or file\n>\n\nYea, this is just me being a little sloppy. I'll clean it up since I really\nshouldn't have\nthe stuff at the top of the file and here. But you're intuition is right,\nas written,\nit would be better as 'or file' here. I'll fix that in the next iteration.\n\nWarner\n\n\n> > +generate(tbl, config, file)\n> > diff --git a/bsd-user/freebsd/strace.list b/bsd-user/freebsd/strace.list\n> > index d7f61f480e..2c4176475a 100644\n> > --- a/bsd-user/freebsd/strace.list\n> > +++ b/bsd-user/freebsd/strace.list\n> > @@ -1,273 +1,443 @@\n> >  /*\n> > - *  FreeBSD strace list\n> > + * FreeBSD strace list\n> > + * NOTE: Use syscall numbers so we work on all the branches.\n> >   *\n> > - *\n> > - *  This program is free software; you can redistribute it and/or modify\n> > - *  it under the terms of the GNU General Public License as published by\n> > - *  the Free Software Foundation; either version 2 of the License, or\n> > - *  (at your option) any later version.\n> > - *\n> > - *  This program is distributed in the hope that it will be useful,\n> > - *  but WITHOUT ANY WARRANTY; without even the implied warranty of\n> > - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n> > - *  GNU General Public License for more details.\n> > - *\n> > - *  You should have received a copy of the GNU General Public License\n> > - *  along with this program; if not, see <http://www.gnu.org/licenses/\n> >.\n> > + * DO NOT EDIT-- this file is automatically @generated.\n> >   */\n> >\n> > -{ TARGET_FREEBSD_NR___acl_aclcheck_fd, \"__acl_aclcheck_fd\", \"%s(%d, %d,\n> %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_aclcheck_file, \"__acl_aclcheck_file\",\n> \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_aclcheck_link, \"__acl_aclcheck_link\",\n> \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_delete_fd, \"__acl_delete_fd\", \"%s(%d, %d)\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_delete_file, \"__acl_delete_file\", \"%s(\\\"%s\\\",\n> %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_delete_link, \"__acl_delete_link\", \"%s(\\\"%s\\\",\n> %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_get_fd, \"__acl_get_fd\", \"%s(%d, %d, %#x)\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_get_file, \"__acl_get_file\", \"%s(\\\"%s\\\", %d,\n> %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_get_link, \"__acl_get_link\", \"%s(\\\"%s\\\", %d,\n> %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_set_fd, \"__acl_set_fd\", \"%s(%d, %d, %#x)\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_set_file, \"__acl_set_file\", \"%s(\\\"%s\\\", %d,\n> %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_set_link, \"__acl_set_link\", \"%s(\\\"%s\\\", %d,\n> %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___getcwd, \"__getcwd\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___semctl, \"__semctl\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___syscall, \"__syscall\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___sysctl, \"__sysctl\", NULL, print_sysctl, NULL },\n> > -{ TARGET_FREEBSD_NR__umtx_op, \"_umtx_op\", \"%s(%#x, %d, %d, %#x, %#x)\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_accept, \"accept\", \"%s(%d,%#x,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_accept4, \"accept4\", \"%s(%d,%d,%#x,%#x)\", NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_access, \"access\", \"%s(\\\"%s\\\",%#o)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_acct, \"acct\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_adjtime, \"adjtime\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_bind, \"bind\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_bindat, \"bindat\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_break, \"break\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_cap_enter, \"cap_enter\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_cap_fcntls_get, \"cap_fcntls_get\", NULL, NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_cap_fcntls_limit, \"cap_fcntls_limit\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_cap_getmode, \"cap_getmode\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_cap_ioctls_get, \"cap_ioctls_get\", NULL, NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_cap_ioctls_limit, \"cap_ioctls_limit\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_cap_rights_limit, \"cap_rights_limit\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_chdir, \"chdir\", \"%s(\\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_chflags, \"chflags\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_chflagsat, \"chflagsat\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_chmod, \"chmod\", \"%s(\\\"%s\\\",%#o)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_chown, \"chown\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_chroot, \"chroot\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_clock_getres, \"clock_getres\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_clock_gettime, \"clock_gettime\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_clock_settime, \"clock_settime\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_close, \"close\", \"%s(%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_connect, \"connect\", \"%s(%d,%#x,%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_connectat, \"connectat\", \"%s(%d,%d,%#x,%d)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_cpuset_getdomain, \"cpuset_getdomain\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_cpuset_setdomain, \"cpuset_setdomain\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_dup, \"dup\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_dup2, \"dup2\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_eaccess, \"eaccess\", \"%s(\\\"%s\\\",%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_execve, \"execve\", NULL, print_execve, NULL },\n> > -{ TARGET_FREEBSD_NR_exit, \"exit\", \"%s(%d)\\n\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattrctl, \"extattrctl\", \"%s(\\\"%s\\\", %d, \\\"%s\\\",\n> %d, \\\"%s\\\"\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_delete_fd, \"extattr_delete_fd\", \"%s(%d, %d,\n> \\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_delete_file, \"extattr_delete_file\",\n> \"%s(\\\"%s\\\", %d, \\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_delete_link, \"extattr_delete_link\",\n> \"%s(\\\"%s\\\", %d, \\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_get_fd, \"extattr_get_fd\", \"%s(%d, %d,\n> \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_get_file, \"extattr_get_file\", \"%s(\\\"%s\\\",\n> %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_get_file, \"extattr_get_link\", \"%s(\\\"%s\\\",\n> %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_list_fd, \"extattr_list_fd\", \"%s(%d, %d,\n> %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_list_file, \"extattr_list_file\", \"%s(\\\"%s\\\",\n> %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_list_link, \"extattr_list_link\", \"%s(\\\"%s\\\",\n> %d, %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_set_fd, \"extattr_set_fd\", \"%s(%d, %d,\n> \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_set_file, \"extattr_set_file\", \"%s(\\\"%s\\\",\n> %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_extattr_set_link, \"extattr_set_link\", \"%s(\\\"%s\\\",\n> %d, \\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fchdir, \"fchdir\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fchflags, \"fchflags\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fchmod, \"fchmod\", \"%s(%d,%#o)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fchown, \"fchown\", \"%s(%d,%d,%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fcntl, \"fcntl\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fdatasync, \"fdatasync\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fexecve, \"fexecve\", NULL, print_execve, NULL },\n> > -{ TARGET_FREEBSD_NR_fhopen, \"fhopen\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fhstat, \"fhstat\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fhstatfs, \"fhstatfs\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_fhstat, \"freebsd11_fhstat\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_fhstatfs, \"freebsd11_fhstatfs\", NULL,\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_flock, \"flock\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fork, \"fork\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fpathconf, \"fpathconf\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fstat, \"fstat\", \"%s(%d,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fstatat, \"fstatat\", \"%s(%d,\\\"%s\\\", %#x, %d)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_fstatfs, \"fstatfs\", \"%s(%d,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_fstat, \"freebsd11_fstat\", \"%s(%d,%#x)\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_fstatat, \"freebsd11_fstatat\",\n> \"%s(%d,\\\"%s\\\", %#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_fstatfs, \"freebsd11_fstatfs\",\n> \"%s(%d,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_fsync, \"fsync\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ftruncate, \"ftruncate\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_futimens, \"futimens\", \"%s(%d,%p)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_futimes, \"futimes\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getcontext, \"getcontext\", \"%s(%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getdirentries, \"getdirentries\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_getdirentries, \"freebsd11_getdirentries\",\n> NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getegid, \"getegid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_geteuid, \"geteuid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getfh, \"getfh\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getfsstat, \"getfsstat\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_getfsstat, \"freebsd11_getfsstat\", NULL,\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getgid, \"getgid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getgroups, \"getgroups\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getitimer, \"getitimer\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getlogin, \"getlogin\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getpeername, \"getpeername\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getpgid, \"getpgid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getpgrp, \"getpgrp\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getpid, \"getpid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getppid, \"getppid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getpriority, \"getpriority\", \"%s(%#x,%#x)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_getrandom, \"getrandom\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getresgid, \"getresgid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getresuid, \"getresuid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getrlimit, \"getrlimit\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getrusage, \"getrusage\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getsid, \"getsid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getsockname, \"getsockname\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getsockopt, \"getsockopt\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_gettimeofday, \"gettimeofday\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_getuid, \"getuid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ioctl, \"ioctl\", NULL, print_ioctl, NULL },\n> > -{ TARGET_FREEBSD_NR_issetugid, \"issetugid\", \"%s()\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_kevent, \"freebsd11_kevent\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_kevent, \"kevent\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_kill, \"kill\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_kqueue, \"kqueue\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ktrace, \"ktrace\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_lchown, \"lchown\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_link, \"link\", \"%s(\\\"%s\\\",\\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_listen, \"listen\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_lpathconf, \"lpathconf\", \"%s(\\\"%s\\\", %d)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_lseek, \"lseek\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_lstat, \"freebsd11_lstat\",\n> \"%s(\\\"%s\\\",%p)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_madvise, \"madvise\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mincore, \"mincore\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_minherit, \"minherit\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mkdir, \"mkdir\", \"%s(\\\"%s\\\",%#o)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mkfifo, \"mkfifo\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mknodat, \"mknodat\", \"%s(%d, \\\"%s\\\",%#o,%#x)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_mknod, \"freebsd11_mknod\",\n> \"%s(\\\"%s\\\",%#o,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_mknodat, \"freebsd11_mknodat\", \"%s(%d,\n> \\\"%s\\\",%#o,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mlock, \"mlock\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mlockall, \"mlockall\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mmap, \"mmap\", NULL, NULL, print_syscall_ret_addr },\n> > -{ TARGET_FREEBSD_NR_mount, \"mount\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_mprotect, \"mprotect\", \"%s(%#x,%#x,%d)\", NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_msgctl, \"msgctl\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_msgget, \"msgget\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_msgrcv, \"msgrcv\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_msgsnd, \"msgsnd\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_msync, \"msync\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_munlock, \"munlock\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_munlockall, \"munlockall\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_munmap, \"munmap\", \"%s(%p,%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_nanosleep, \"nanosleep\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_nfssvc, \"nfssvc\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_open, \"open\", \"%s(\\\"%s\\\",%#x,%#o)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_openat, \"openat\", \"%s(%d, \\\"%s\\\",%#x,%#o)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_pathconf, \"pathconf\", \"%s(\\\"%s\\\", %d)\", NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_freebsd10_pipe, \"freebsd10_pipe\", NULL, NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_pipe2, \"pipe2\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_poll, \"poll\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_posix_fallocate, \"posix_fallocate\", NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_pread, \"pread\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_preadv, \"preadv\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_profil, \"profil\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ptrace, \"ptrace\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_pwrite, \"pwrite\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_pwritev, \"pwritev\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_quotactl, \"quotactl\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_read, \"read\", \"%s(%d,%#x,%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_readlink, \"readlink\", \"%s(\\\"%s\\\",%p,%d)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_readv, \"readv\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_reboot, \"reboot\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_recvfrom, \"recvfrom\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_recvmsg, \"recvmsg\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_rename, \"rename\", \"%s(\\\"%s\\\",\\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_revoke, \"revoke\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_rfork, \"rfork\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_rmdir, \"rmdir\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_rtprio_thread, \"rtprio_thread\", \"%s(%d, %d, %p)\",\n> NULL, NULL },\n> > -#ifdef TARGET_FREEBSD_NR_sbrk\n> > -{ TARGET_FREEBSD_NR_sbrk, \"sbrk\", NULL, NULL, NULL },\n> > -#endif\n> > -{ TARGET_FREEBSD_NR_sched_get_priority_max, \"sched_get_priority_max\",\n> NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sched_get_priority_min, \"sched_get_priority_min\",\n> NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sched_yield, \"sched_yield\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_select, \"select\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_semget, \"semget\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_semop, \"semop\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sendmsg, \"sendmsg\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sendto, \"sendto\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setcontext, \"setcontext\", \"%s(%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setegid, \"setegid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_seteuid, \"seteuid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setgid, \"setgid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setgroups, \"setgroups\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setitimer, \"setitimer\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setlogin, \"setlogin\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setpgid, \"setpgid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setpriority, \"setpriority\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setregid, \"setregid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setresgid, \"setresgid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setresuid, \"setresuid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setreuid, \"setreuid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setrlimit, \"setrlimit\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setsid, \"setsid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setsockopt, \"setsockopt\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_settimeofday, \"settimeofday\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_setuid, \"setuid\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_shmat, \"shmat\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_shmctl, \"shmctl\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_shmdt, \"shmdt\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_shmget, \"shmget\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_shutdown, \"shutdown\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sigaction, \"sigaction\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sigaltstack, \"sigaltstack\", \"%s(%p,%p)\", NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_sigpending, \"sigpending\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sigprocmask, \"sigprocmask\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sigreturn, \"sigreturn\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sigsuspend, \"sigsuspend\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_socket, \"socket\", \"%s(%d,%d,%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_socketpair, \"socketpair\", NULL, NULL, NULL },\n> > -#ifdef TARGET_FREEBSD_NR_sstk\n> > -{ TARGET_FREEBSD_NR_sstk, \"sstk\", NULL, NULL, NULL },\n> > -#endif\n> > -{ TARGET_FREEBSD_NR_freebsd11_stat, \"freebsd11_stat\", \"%s(\\\"%s\\\",%p)\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_freebsd11_statfs, \"freebsd11_statfs\",\n> \"%s(\\\"%s\\\",%p)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_symlink, \"symlink\", \"%s(\\\"%s\\\",\\\"%s\\\")\", NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_sync, \"sync\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_sysarch, \"sysarch\", NULL, print_sysarch, NULL },\n> > -{ TARGET_FREEBSD_NR_syscall, \"syscall\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ktimer_create, \"timer_create\" , NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ktimer_delete, \"timer_delete\" , NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_ktimer_settime, \"timer_settime\" , NULL, NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_ktimer_gettime, \"timer_gettime\" , NULL, NULL, NULL\n> },\n> > -{ TARGET_FREEBSD_NR_ktimer_getoverrun, \"timer_getoverrun\" , NULL, NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_thr_create, \"thr_create\", \"%s(%#x, %#x, %d)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_thr_exit, \"thr_exit\", \"%s(%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_thr_kill, \"thr_kill\", \"%s(%d, %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_thr_kill2, \"thr_kill2\", \"%s(%d, %d, %d)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_thr_new, \"thr_new\", \"%s(%#x, %d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_thr_self, \"thr_self\", \"%s(%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_thr_set_name, \"thr_set_name\", \"%s(%d, \\\"%s\\\")\",\n> NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_thr_suspend, \"thr_suspend\", \"%s(%d, %#x)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_thr_wake, \"thr_wake\", \"%s(%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_truncate, \"truncate\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_umask, \"umask\", \"%s(%#o)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_unlink, \"unlink\", \"%s(\\\"%s\\\")\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_unmount, \"unmount\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_utimes, \"utimes\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_utimensat, \"utimensat\", \"%s(%d,%s,%p,%#x)\", NULL,\n> NULL },\n> > -{ TARGET_FREEBSD_NR_vfork, \"vfork\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_wait4, \"wait4\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_wait6, \"wait6\", NULL, NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_write, \"write\", \"%s(%d,%#x,%d)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_writev, \"writev\", \"%s(%d,%p,%#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR_posix_openpt, \"posix_openpt\", \"%s(%d)\", NULL, NULL\n> },\n> > +{ 354, \"__acl_aclcheck_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 353, \"__acl_aclcheck_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 428, \"__acl_aclcheck_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 352, \"__acl_delete_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 351, \"__acl_delete_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 427, \"__acl_delete_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 349, \"__acl_get_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 347, \"__acl_get_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 425, \"__acl_get_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 350, \"__acl_set_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 348, \"__acl_set_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 426, \"__acl_set_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 515, \"__cap_rights_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 326, \"__getcwd_args\", \"%s(%s, %#x)\", NULL, NULL },\n> > +{ 415, \"__mac_execve_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 386, \"__mac_get_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 387, \"__mac_get_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 410, \"__mac_get_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 409, \"__mac_get_pid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 384, \"__mac_get_proc_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 388, \"__mac_set_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 389, \"__mac_set_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 411, \"__mac_set_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 385, \"__mac_set_proc_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 574, \"__realpathat_args\", \"%s(%#x, %#x, %s, %#x, %#x)\", NULL, NULL },\n> > +{ 510, \"__semctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 374, \"__setugid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 577, \"__specialfd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 202, \"__sysctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 570, \"__sysctlbyname_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 1, \"_exit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 454, \"_umtx_op_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 463, \"abort2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 541, \"accept4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 30, \"accept_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 33, \"access_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 51, \"acct_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 140, \"adjtime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 377, \"afs3_syscall_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 316, \"aio_cancel_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 317, \"aio_error_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 465, \"aio_fsync_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 543, \"aio_mlock_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 255, \"aio_read_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 579, \"aio_readv_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 314, \"aio_return_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 315, \"aio_suspend_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 359, \"aio_waitcomplete_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 256, \"aio_write_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 578, \"aio_writev_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 445, \"audit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 453, \"auditctl_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 446, \"auditon_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 104, \"bind_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 538, \"bindat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 17, \"break_args\", \"%s(%s)\", NULL, NULL },\n> > +{ 516, \"cap_enter_args\", NULL, NULL, NULL },\n> > +{ 537, \"cap_fcntls_get_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 536, \"cap_fcntls_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 517, \"cap_getmode_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 535, \"cap_ioctls_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 534, \"cap_ioctls_limit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 533, \"cap_rights_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 12, \"chdir_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 34, \"chflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 540, \"chflagsat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 15, \"chmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 16, \"chown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 61, \"chroot_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 247, \"clock_getcpuclockid2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 234, \"clock_getres_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 232, \"clock_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 244, \"clock_nanosleep_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 233, \"clock_settime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 6, \"close_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 575, \"close_range_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 98, \"connect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 539, \"connectat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 569, \"copy_file_range_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 484, \"cpuset_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 487, \"cpuset_getaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 561, \"cpuset_getdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 486, \"cpuset_getid_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 488, \"cpuset_setaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 562, \"cpuset_setdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 485, \"cpuset_setid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 90, \"dup2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 41, \"dup_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 376, \"eaccess_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 59, \"execve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 373, \"extattr_delete_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 358, \"extattr_delete_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 414, \"extattr_delete_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 372, \"extattr_get_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 357, \"extattr_get_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 413, \"extattr_get_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 437, \"extattr_list_fd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 438, \"extattr_list_file_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 439, \"extattr_list_link_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 371, \"extattr_set_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 356, \"extattr_set_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 412, \"extattr_set_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 355, \"extattrctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 592, \"exterrctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 489, \"faccessat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 13, \"fchdir_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 35, \"fchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 124, \"fchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 490, \"fchmodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 123, \"fchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 491, \"fchownat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 590, \"fchroot_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 92, \"fcntl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 550, \"fdatasync_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 492, \"fexecve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 241, \"ffclock_getcounter_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 243, \"ffclock_getestimate_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 242, \"ffclock_setestimate_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 565, \"fhlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 566, \"fhlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 298, \"fhopen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 567, \"fhreadlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> > +{ 553, \"fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 558, \"fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 131, \"flock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 2, \"fork_args\", NULL, NULL, NULL },\n> > +{ 192, \"fpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 434, \"freebsd10__umtx_lock_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 435, \"freebsd10__umtx_unlock_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 42, \"freebsd10_pipe_args\", NULL, NULL, NULL },\n> > +{ 299, \"freebsd11_fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 398, \"freebsd11_fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 189, \"freebsd11_fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 493, \"freebsd11_fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 397, \"freebsd11_fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 272, \"freebsd11_getdents_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> > +{ 196, \"freebsd11_getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 395, \"freebsd11_getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 363, \"freebsd11_kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 190, \"freebsd11_lstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 14, \"freebsd11_mknod_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 498, \"freebsd11_mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 279, \"freebsd11_nfstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 280, \"freebsd11_nlstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 278, \"freebsd11_nstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 188, \"freebsd11_stat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 396, \"freebsd11_statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 72, \"freebsd11_vadvise_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 509, \"freebsd12_closefrom_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 482, \"freebsd12_shm_open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 424, \"freebsd13_swapoff_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 79, \"freebsd14_getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 80, \"freebsd14_setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 580, \"fspacectl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 551, \"fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 552, \"fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 556, \"fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 95, \"fsync_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 480, \"ftruncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 568, \"funlinkat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 546, \"futimens_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 206, \"futimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 494, \"futimesat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 451, \"getaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 449, \"getaudit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 447, \"getauid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 421, \"getcontext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 554, \"getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> > +{ 89, \"getdtablesize_args\", NULL, NULL, NULL },\n> > +{ 43, \"getegid_args\", NULL, NULL, NULL },\n> > +{ 25, \"geteuid_args\", NULL, NULL, NULL },\n> > +{ 161, \"getfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 564, \"getfhat_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> > +{ 557, \"getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 47, \"getgid_args\", NULL, NULL, NULL },\n> > +{ 595, \"getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 86, \"getitimer_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 49, \"getlogin_args\", \"%s(%s, %#x)\", NULL, NULL },\n> > +{ 523, \"getloginclass_args\", \"%s(%s, %#x)\", NULL, NULL },\n> > +{ 31, \"getpeername_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 207, \"getpgid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 81, \"getpgrp_args\", NULL, NULL, NULL },\n> > +{ 20, \"getpid_args\", NULL, NULL, NULL },\n> > +{ 39, \"getppid_args\", NULL, NULL, NULL },\n> > +{ 100, \"getpriority_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 563, \"getrandom_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 361, \"getresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 360, \"getresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 194, \"getrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 589, \"getrlimitusage_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 117, \"getrusage_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 310, \"getsid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 32, \"getsockname_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 118, \"getsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 116, \"gettimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 24, \"getuid_args\", NULL, NULL, NULL },\n> > +{ 593, \"inotify_add_watch_at_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 594, \"inotify_rm_watch_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 54, \"ioctl_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> > +{ 253, \"issetugid_args\", NULL, NULL, NULL },\n> > +{ 338, \"jail_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 436, \"jail_attach_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 597, \"jail_attach_jd_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 506, \"jail_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 508, \"jail_remove_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 598, \"jail_remove_jd_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 507, \"jail_set_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 588, \"kcmp_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 390, \"kenv_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> > +{ 560, \"kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 599, \"kexec_load_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 37, \"kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 306, \"kldfind_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 309, \"kldfirstmod_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 304, \"kldload_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 307, \"kldnext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 308, \"kldstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 337, \"kldsym_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 305, \"kldunload_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 444, \"kldunloadf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 461, \"kmq_notify_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 457, \"kmq_open_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 458, \"kmq_setattr_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 459, \"kmq_timedreceive_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 460, \"kmq_timedsend_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 462, \"kmq_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 362, \"kqueue_args\", NULL, NULL, NULL },\n> > +{ 583, \"kqueuex_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 400, \"ksem_close_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 408, \"ksem_destroy_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 407, \"ksem_getvalue_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 404, \"ksem_init_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 405, \"ksem_open_args\", \"%s(%#x, %#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 401, \"ksem_post_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 441, \"ksem_timedwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 403, \"ksem_trywait_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 406, \"ksem_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 402, \"ksem_wait_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 235, \"ktimer_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 236, \"ktimer_delete_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 239, \"ktimer_getoverrun_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 238, \"ktimer_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 237, \"ktimer_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 45, \"ktrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 391, \"lchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 274, \"lchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 254, \"lchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 160, \"lgetfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 9, \"link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 495, \"linkat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 257, \"lio_listio_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 106, \"listen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 513, \"lpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 478, \"lseek_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 276, \"lutimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 394, \"mac_syscall_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 75, \"madvise_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 584, \"membarrier_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 78, \"mincore_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> > +{ 250, \"minherit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 136, \"mkdir_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 496, \"mkdirat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 132, \"mkfifo_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 497, \"mkfifoat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 559, \"mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 203, \"mlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 324, \"mlockall_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 477, \"mmap_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 303, \"modfind_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 302, \"modfnext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 300, \"modnext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 301, \"modstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 21, \"mount_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 74, \"mprotect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 511, \"msgctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 225, \"msgget_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 227, \"msgrcv_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 226, \"msgsnd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 170, \"msgsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 65, \"msync_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 204, \"munlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 325, \"munlockall_args\", NULL, NULL, NULL },\n> > +{ 73, \"munmap_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 240, \"nanosleep_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 155, \"nfssvc_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 154, \"nlm_syscall_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 378, \"nmount_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 339, \"nnpfs_syscall_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 176, \"ntp_adjtime_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 248, \"ntp_gettime_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 5, \"open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 499, \"openat_args\", \"%s(%#x, %#x, %#x, %o)\", NULL, NULL },\n> > +{ 191, \"pathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 518, \"pdfork_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 520, \"pdgetpid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 519, \"pdkill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 600, \"pdrfork_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 601, \"pdwait_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 542, \"pipe2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 209, \"poll_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 531, \"posix_fadvise_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 530, \"posix_fallocate_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 504, \"posix_openpt_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 545, \"ppoll_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 475, \"pread_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 289, \"preadv_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 544, \"procctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 44, \"profil_args\", \"%s(%s, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 522, \"pselect_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 26, \"ptrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 476, \"pwrite_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 290, \"pwritev_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 148, \"quotactl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 528, \"rctl_add_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 527, \"rctl_get_limits_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 525, \"rctl_get_racct_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 526, \"rctl_get_rules_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 529, \"rctl_remove_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 3, \"read_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 58, \"readlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> > +{ 500, \"readlinkat_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> > +{ 120, \"readv_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 55, \"reboot_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 29, \"recvfrom_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 27, \"recvmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 128, \"rename_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 602, \"renameat2_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 501, \"renameat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 56, \"revoke_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 251, \"rfork_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 137, \"rmdir_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 576, \"rpctls_syscall_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 166, \"rtprio_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 466, \"rtprio_thread_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 332, \"sched_get_priority_max_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 333, \"sched_get_priority_min_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 581, \"sched_getcpu_args\", NULL, NULL, NULL },\n> > +{ 328, \"sched_getparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 330, \"sched_getscheduler_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 334, \"sched_rr_get_interval_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 327, \"sched_setparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 329, \"sched_setscheduler_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 331, \"sched_yield_args\", NULL, NULL, NULL },\n> > +{ 474, \"sctp_generic_recvmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x,\n> %#x)\", NULL, NULL },\n> > +{ 472, \"sctp_generic_sendmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x,\n> %#x)\", NULL, NULL },\n> > +{ 473, \"sctp_generic_sendmsg_iov_args\", \"%s(%#x, %#x, %#x, %#x, %#x,\n> %#x, %#x)\", NULL, NULL },\n> > +{ 471, \"sctp_peeloff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 93, \"select_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 221, \"semget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 222, \"semop_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 169, \"semsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 393, \"sendfile_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 28, \"sendmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 133, \"sendto_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 452, \"setaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 450, \"setaudit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 448, \"setauid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 422, \"setcontext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 591, \"setcred_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 182, \"setegid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 183, \"seteuid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 175, \"setfib_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 181, \"setgid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 596, \"setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 83, \"setitimer_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 50, \"setlogin_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 524, \"setloginclass_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 82, \"setpgid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 96, \"setpriority_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 127, \"setregid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 312, \"setresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 311, \"setresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 126, \"setreuid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 195, \"setrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 147, \"setsid_args\", NULL, NULL, NULL },\n> > +{ 105, \"setsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 122, \"settimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 23, \"setuid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 571, \"shm_open2_args\", \"%s(%#x, %#x, %o, %#x, %#x)\", NULL, NULL },\n> > +{ 572, \"shm_rename_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 483, \"shm_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 228, \"shmat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 512, \"shmctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 230, \"shmdt_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 231, \"shmget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 171, \"shmsys_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 134, \"shutdown_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 416, \"sigaction_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 53, \"sigaltstack_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 573, \"sigfastblock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 343, \"sigpending_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 340, \"sigprocmask_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 456, \"sigqueue_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 417, \"sigreturn_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 341, \"sigsuspend_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 345, \"sigtimedwait_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 429, \"sigwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 346, \"sigwaitinfo_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 97, \"socket_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 135, \"socketpair_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 555, \"statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 423, \"swapcontext_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 582, \"swapoff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 85, \"swapon_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 57, \"symlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 502, \"symlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 36, \"sync_args\", NULL, NULL, NULL },\n> > +{ 165, \"sysarch_args\", \"%s(%#x, %s)\", NULL, NULL },\n> > +{ 430, \"thr_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 431, \"thr_exit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 481, \"thr_kill2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 433, \"thr_kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 455, \"thr_new_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 432, \"thr_self_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 464, \"thr_set_name_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 442, \"thr_suspend_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 443, \"thr_wake_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 585, \"timerfd_create_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 586, \"timerfd_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 587, \"timerfd_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 479, \"truncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 60, \"umask_args\", \"%s(%o)\", NULL, NULL },\n> > +{ 205, \"undelete_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 10, \"unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 503, \"unlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 22, \"unmount_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 547, \"utimensat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 138, \"utimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 335, \"utrace_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 392, \"uuidgen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 66, \"vfork_args\", NULL, NULL, NULL },\n> > +{ 7, \"wait4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 532, \"wait6_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 4, \"write_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 121, \"writev_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 321, \"yield_args\", NULL, NULL, NULL },\n> >\n>\n> Overall looks good, and my comments on file variable should not be\n> blocking.\n>\n> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>\n>\n> Regards,\n> Pierrick\n>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (2048-bit key;\n unprotected) header.d=bsdimp-com.20251104.gappssmtp.com\n header.i=@bsdimp-com.20251104.gappssmtp.com header.a=rsa-sha256\n header.s=20251104 header.b=CLQ6qB4K;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org\n (client-ip=209.51.188.17; helo=lists1p.gnu.org;\n envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists1p.gnu.org (lists1p.gnu.org [209.51.188.17])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4g5dGj2lTNz1yHZ\n\tfor <incoming@patchwork.ozlabs.org>; Thu, 30 Apr 2026 12:22:03 +1000 (AEST)","from localhost ([::1] helo=lists1p.gnu.org)\n\tby lists1p.gnu.org with esmtp (Exim 4.90_1)\n\t(envelope-from <qemu-devel-bounces@nongnu.org>)\n\tid 1wIH22-0006Ib-G1; Wed, 29 Apr 2026 22:21:38 -0400","from eggs.gnu.org ([2001:470:142:3::10])\n by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <wlosh@bsdimp.com>) id 1wIH20-0006I5-93\n for qemu-devel@nongnu.org; Wed, 29 Apr 2026 22:21:36 -0400","from mail-yx1-xb12f.google.com ([2607:f8b0:4864:20::b12f])\n by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)\n (Exim 4.90_1) (envelope-from <wlosh@bsdimp.com>) id 1wIH1r-0004zj-Lq\n for qemu-devel@nongnu.org; Wed, 29 Apr 2026 22:21:35 -0400","by mail-yx1-xb12f.google.com with SMTP id\n 956f58d0204a3-651b4d09141so680914d50.1\n for <qemu-devel@nongnu.org>; Wed, 29 Apr 2026 19:21:27 -0700 (PDT)"],"ARC-Seal":"i=1; a=rsa-sha256; t=1777515686; cv=none;\n d=google.com; s=arc-20240605;\n b=jnoI78bXzc7pZhV7JKpNAlTDPBdgtiyjR725iW08ysc8MQg6XNzE6dq974U7aKEF9+\n 8zmLr0vau7eVEd0uKGf7yKAEvHjkyuau9GzJ7FbjZkr9bfRzHHZdDsTGe1wvSdcFzimP\n haXHj5hCW/h+XlSHM8ckT3JMgGU6vIufW8GsDnQlWQ9BIiX5Uf7TZFjt4r64PfcSx7Uo\n HesVZvE2NWurxUDTMsEmxgSMkJeuA15lVVtt5h5LG9acKC9wVS/jCvHXI4FtniaNXGXz\n Y/pUy8SQdrGrPExlCqkGHDjJE8qgyEP/kGdRK+tCGk6tZfVna9zYYUVYsZ+SN6wtYsXk\n VnZA==","ARC-Message-Signature":"i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com;\n s=arc-20240605;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:dkim-signature;\n bh=MZYgzxZZDYeik5V2fifaaTiIc3Gxs8CFa3AAhmYGM6Q=;\n fh=MZUwNFUepYLwj5XB7pInzgE8gETH7ALXQ6oomyX8hk8=;\n b=OVrIsAhq9y12gyoI+vL2utOZRtvRwU6uofUBrtfjSikYUkM6SlTN2Sl1ZWrLC1h0E4\n ExcD20oVIngGRCI7yAeRCIYmZ5lmxIrORqVquQEC8OSfpXR+2gW0yFEV/NP9nt37EJVu\n 1NxzrqIZ4pj5gk6QBUNsZG+gc27u1JK6BbPkTerEni/PeD6KUJcg9gBLHr5/40a+CAmz\n p8BdGriZj1z1OcDDRD5UXWXeK7ky5s2EA/yZhUYBYrCf3Itq/BzrjLBREiedRcPWFpmq\n 0A4HBntBotFZnaZaGSiUC2QSvVNzQXact+Uu4CW9iGYM66PvBJdfl3BfMP5gXy5dcRpg\n 2Z0w==; darn=nongnu.org","ARC-Authentication-Results":"i=1; mx.google.com; arc=none","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=bsdimp-com.20251104.gappssmtp.com; s=20251104; t=1777515686; x=1778120486;\n darn=nongnu.org;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:from:to:cc:subject:date:message-id:reply-to;\n bh=MZYgzxZZDYeik5V2fifaaTiIc3Gxs8CFa3AAhmYGM6Q=;\n b=CLQ6qB4KguyYtC3TSZLEEuCzY1wsE3zVd3xGvVzr90iz5iyui67U0Z4LOamtVhUUUS\n SX5ETARZe+RZh6ZFuxgd6Kp+yKX45kIcJB73B/kmTpxvfv8hoemdJDE++npzWu3DdNTv\n CdyCT1DB8t0COoHx3Gubp+Lmz0a3QqZoJQ435RItBothme3BMg6w5mJhNJQ85BUfXMBl\n AlfPHV3Px09CkruZfO9iNww40b+xBCjnhUT8noMQpkeV/7zPFbpcCOil5ekqZEs8aShx\n L3TyBmdq9V6iPi0/+p2SzP1OnscHi32D7H6pkttRmDBvJ9hG+jLKOrwoXfXlTqYfBly6\n 1raw==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=1e100.net; s=20251104; t=1777515686; x=1778120486;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:x-gm-gg:x-gm-message-state:from:to:cc:subject:date\n :message-id:reply-to;\n bh=MZYgzxZZDYeik5V2fifaaTiIc3Gxs8CFa3AAhmYGM6Q=;\n b=WlHFTnBcuHjNqTgOEQBcmAvPb9M0VYMxAisEKUsStnXbT3CEqjEGEgqvd+9I8ZnGT6\n YDJ/cQiHUy2AkCA45Lis9BcZ1mjY1ID4sf5pYJ/PEQ9J4VdCsF/oit/Tp2y8o25E68HK\n +klClVcS7adtMDEOSoPcQECKOIfn07KIS2ASTVWlWXJz3EmK61IstT5/iegabeHGsODt\n 2X8OAqtyOeuFpA/M3LFfWknnfD+W1qw+m0wz71/Lsh41hg4NljGIlvoAnanM+NDdU7h6\n pRsscogYcgcchZkfb66q+6pN6hoz7z/19QZCd6wT7BKSjT4YXM7XqsiDMlAWH4qFOAsI\n Z30Q==","X-Gm-Message-State":"AOJu0YwiSKVFPXRZasNT/QENW9/6frT5SK2HVAcqPoUBQWPGaI1XBx3T\n 4pb2wGwSwYIFIuCYDPBH0rK5/RAy8fXxk/fygS/ZBcZ0gWhLnFgQ/uVeHwFOOKWQssGMTfrRCVW\n iW6VVgSqUAXJpQIHQLbG8MLj7/CputLAINhkq/ZRLEw==","X-Gm-Gg":"AeBDieu4Q9rF4Hx9VqwbNMe6veOTDTTYfTZpiF1D/Cuqr81rundkvXF7qyBhoCYcSbX\n JTKlK2zQ2TXsRI1PyevmgpdYZS8MJMaymYRMQpLog6pEW+waDSdYQs6z1qUvWh8jhpTOqw+HoYU\n UDdtQxIUpubUO/mAIRpBKDPRZtKcLSSa/12C95zKkOacKraAKRIYoIUt4QVX4oUqFWuUIBa5sFm\n f1cUHrYB3OPnSppvo35r4FQytsmHN3SFESANNEMOYHnQg+cgQxEraKf+n5qnRdl+NADQEYH25HP\n TAyZB8z9sUl0aQKBBg==","X-Received":"by 2002:a05:690e:d8f:b0:651:c221:9649 with SMTP id\n 956f58d0204a3-65c1b044b00mr341592d50.19.1777515685994; Wed, 29 Apr 2026\n 19:21:25 -0700 (PDT)","MIME-Version":"1.0","References":"<20260429-syscall-nr-v2-0-67a8d09dc13e@bsdimp.com>\n <20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>\n <6d3f5166-d1fe-410c-9fde-995b85f0045d@oss.qualcomm.com>","In-Reply-To":"<6d3f5166-d1fe-410c-9fde-995b85f0045d@oss.qualcomm.com>","From":"Warner Losh <imp@bsdimp.com>","Date":"Wed, 29 Apr 2026 20:21:14 -0600","X-Gm-Features":"AVHnY4KQQUto9GsCFBZ5lA9h5az4jbxUoPa0g6UaIB4nMbnfCB4fI5WA0ji7Wi0","Message-ID":"\n <CANCZdfqGVDMLGaVJpcvOQnNRvM6P3SQz_i5nSw8w02H7wEiRTw@mail.gmail.com>","Subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","To":"Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>","Cc":"qemu-devel@nongnu.org, Kyle Evans <kevans@freebsd.org>,\n  Paolo Bonzini <pbonzini@redhat.com>,\n =?utf-8?q?Marc-Andr=C3=A9_Lureau?= <marcandre.lureau@redhat.com>,\n\t=?utf-8?q?Daniel_P=2E_Berrang=C3=A9?= <berrange@redhat.com>, =?utf-8?q?Phil?=\n\t=?utf-8?q?ippe_Mathieu-Daud=C3=A9?= <philmd@linaro.org>","Content-Type":"multipart/alternative; boundary=\"0000000000000bf4400650a41fa1\"","Received-SPF":"none client-ip=2607:f8b0:4864:20::b12f;\n envelope-from=wlosh@bsdimp.com; helo=mail-yx1-xb12f.google.com","X-Spam_score_int":"-18","X-Spam_score":"-1.9","X-Spam_bar":"-","X-Spam_report":"(-1.9 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,\n DKIM_VALID=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001,\n SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no","X-Spam_action":"no action","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"qemu development <qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<https://lists.nongnu.org/archive/html/qemu-devel>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org"}},{"id":3684526,"web_url":"http://patchwork.ozlabs.org/comment/3684526/","msgid":"<afMQRlu2_ONaBxCX@redhat.com>","list_archive_url":null,"date":"2026-04-30T08:18:14","subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","submitter":{"id":2694,"url":"http://patchwork.ozlabs.org/api/people/2694/","name":"Daniel P. Berrangé","email":"berrange@redhat.com"},"content":"On Wed, Apr 29, 2026 at 08:38:55AM -0600, Warner Losh wrote:\n> Note: I derived this script from one of the FreeBSD system call\n> generation scripts, so it needs to be BSD-2-Clause license, which\n> deviates a bit from the GPL-2.0-or-newer preference, but I think is OK\n> since it's not folded into the qemu binaries themselves (and output of\n> scripts is typically public domain, as is the case here).\n\nYes, that's all absolutely fine - when pulling incode from outside,\nor derived from outside, it is required to preserve the license.\nThe GPL-2.0-or-newer rule only applies to green field code written\nfor QEMU.\n\nIt would be fine even if it applied to code that needs to be linked\ninto QEMU, since BSD-2-Clause is compatible with GPL-2 in a combined\nwork.\n\n>                                                           This script is\n> written in lua, but every FreeBSD installation has a 'flua' binary that\n> can run this script, and it leverages about 7k lines of library and\n> metadata FreeBSD maintains well.\n> \n> Signed-off-by: Warner Losh <imp@bsdimp.com>\n> ---\n>  bsd-user/freebsd/scripts/strace.lua | 117 ++++++\n>  bsd-user/freebsd/strace.list        | 708 ++++++++++++++++++++++--------------\n>  2 files changed, 556 insertions(+), 269 deletions(-)\n> \n> diff --git a/bsd-user/freebsd/scripts/strace.lua b/bsd-user/freebsd/scripts/strace.lua\n> new file mode 100755\n> index 0000000000..c89e8e3aeb\n> --- /dev/null\n> +++ b/bsd-user/freebsd/scripts/strace.lua\n> @@ -0,0 +1,117 @@\n\n> +\t\t\t\tgen:write(string.format(\n> +\t\t\t\t    \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n> +\t\t\t\t    v.num, v.arg_alias, fmt, fcn))\n\nIs there a reason to use v.num, instead of the symbolic name that\nwas previously used ?  eg something like:\n\n    \"{ TARGET_FREEBSD_NR_%s, \\\"%s\\\", %s, %s, NULL },\\n\",\n    v.arg_alias, v.arg_alias, fmt, fcn))\n\n\n> diff --git a/bsd-user/freebsd/strace.list b/bsd-user/freebsd/strace.list\n> index d7f61f480e..2c4176475a 100644\n> --- a/bsd-user/freebsd/strace.list\n> +++ b/bsd-user/freebsd/strace.list\n> @@ -1,273 +1,443 @@\n>  /*\n\nIf comparing the first few:\n\n> -{ TARGET_FREEBSD_NR___acl_aclcheck_fd, \"__acl_aclcheck_fd\", \"%s(%d, %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_aclcheck_file, \"__acl_aclcheck_file\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> -{ TARGET_FREEBSD_NR___acl_aclcheck_link, \"__acl_aclcheck_link\", \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n\nvs\n\n> +{ 354, \"__acl_aclcheck_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 353, \"__acl_aclcheck_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 428, \"__acl_aclcheck_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n\nThe args pattern has changed significantly. Everything is now\n%#x, where as before it was formatting strings and integers.\n\nLooking further at just the new definitions, essentially\neverything is now %#x.  Is that really intentional ? If\nso just put a note in the commit message about why nearly\nall the args are changing format.\n\n> +{ 352, \"__acl_delete_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 351, \"__acl_delete_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 427, \"__acl_delete_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 349, \"__acl_get_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 347, \"__acl_get_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 425, \"__acl_get_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 350, \"__acl_set_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 348, \"__acl_set_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 426, \"__acl_set_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 515, \"__cap_rights_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 326, \"__getcwd_args\", \"%s(%s, %#x)\", NULL, NULL },\n> +{ 415, \"__mac_execve_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 386, \"__mac_get_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 387, \"__mac_get_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 410, \"__mac_get_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 409, \"__mac_get_pid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 384, \"__mac_get_proc_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 388, \"__mac_set_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 389, \"__mac_set_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 411, \"__mac_set_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 385, \"__mac_set_proc_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 574, \"__realpathat_args\", \"%s(%#x, %#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 510, \"__semctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 374, \"__setugid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 577, \"__specialfd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 202, \"__sysctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 570, \"__sysctlbyname_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 1, \"_exit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 454, \"_umtx_op_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 463, \"abort2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 541, \"accept4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 30, \"accept_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 33, \"access_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 51, \"acct_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 140, \"adjtime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 377, \"afs3_syscall_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 316, \"aio_cancel_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 317, \"aio_error_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 465, \"aio_fsync_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 543, \"aio_mlock_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 255, \"aio_read_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 579, \"aio_readv_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 314, \"aio_return_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 315, \"aio_suspend_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 359, \"aio_waitcomplete_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 256, \"aio_write_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 578, \"aio_writev_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 445, \"audit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 453, \"auditctl_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 446, \"auditon_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 104, \"bind_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 538, \"bindat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 17, \"break_args\", \"%s(%s)\", NULL, NULL },\n> +{ 516, \"cap_enter_args\", NULL, NULL, NULL },\n> +{ 537, \"cap_fcntls_get_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 536, \"cap_fcntls_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 517, \"cap_getmode_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 535, \"cap_ioctls_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 534, \"cap_ioctls_limit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 533, \"cap_rights_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 12, \"chdir_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 34, \"chflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 540, \"chflagsat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 15, \"chmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 16, \"chown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 61, \"chroot_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 247, \"clock_getcpuclockid2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 234, \"clock_getres_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 232, \"clock_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 244, \"clock_nanosleep_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 233, \"clock_settime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 6, \"close_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 575, \"close_range_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 98, \"connect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 539, \"connectat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 569, \"copy_file_range_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 484, \"cpuset_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 487, \"cpuset_getaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 561, \"cpuset_getdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 486, \"cpuset_getid_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 488, \"cpuset_setaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 562, \"cpuset_setdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 485, \"cpuset_setid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 90, \"dup2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 41, \"dup_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 376, \"eaccess_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 59, \"execve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 373, \"extattr_delete_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 358, \"extattr_delete_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 414, \"extattr_delete_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 372, \"extattr_get_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 357, \"extattr_get_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 413, \"extattr_get_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 437, \"extattr_list_fd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 438, \"extattr_list_file_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 439, \"extattr_list_link_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 371, \"extattr_set_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 356, \"extattr_set_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 412, \"extattr_set_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 355, \"extattrctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 592, \"exterrctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 489, \"faccessat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 13, \"fchdir_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 35, \"fchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 124, \"fchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 490, \"fchmodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 123, \"fchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 491, \"fchownat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 590, \"fchroot_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 92, \"fcntl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 550, \"fdatasync_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 492, \"fexecve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 241, \"ffclock_getcounter_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 243, \"ffclock_getestimate_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 242, \"ffclock_setestimate_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 565, \"fhlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 566, \"fhlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 298, \"fhopen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 567, \"fhreadlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> +{ 553, \"fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 558, \"fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 131, \"flock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 2, \"fork_args\", NULL, NULL, NULL },\n> +{ 192, \"fpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 434, \"freebsd10__umtx_lock_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 435, \"freebsd10__umtx_unlock_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 42, \"freebsd10_pipe_args\", NULL, NULL, NULL },\n> +{ 299, \"freebsd11_fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 398, \"freebsd11_fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 189, \"freebsd11_fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 493, \"freebsd11_fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 397, \"freebsd11_fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 272, \"freebsd11_getdents_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> +{ 196, \"freebsd11_getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 395, \"freebsd11_getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 363, \"freebsd11_kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 190, \"freebsd11_lstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 14, \"freebsd11_mknod_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 498, \"freebsd11_mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 279, \"freebsd11_nfstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 280, \"freebsd11_nlstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 278, \"freebsd11_nstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 188, \"freebsd11_stat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 396, \"freebsd11_statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 72, \"freebsd11_vadvise_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 509, \"freebsd12_closefrom_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 482, \"freebsd12_shm_open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 424, \"freebsd13_swapoff_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 79, \"freebsd14_getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 80, \"freebsd14_setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 580, \"fspacectl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 551, \"fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 552, \"fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 556, \"fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 95, \"fsync_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 480, \"ftruncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 568, \"funlinkat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 546, \"futimens_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 206, \"futimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 494, \"futimesat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 451, \"getaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 449, \"getaudit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 447, \"getauid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 421, \"getcontext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 554, \"getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 89, \"getdtablesize_args\", NULL, NULL, NULL },\n> +{ 43, \"getegid_args\", NULL, NULL, NULL },\n> +{ 25, \"geteuid_args\", NULL, NULL, NULL },\n> +{ 161, \"getfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 564, \"getfhat_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> +{ 557, \"getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 47, \"getgid_args\", NULL, NULL, NULL },\n> +{ 595, \"getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 86, \"getitimer_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 49, \"getlogin_args\", \"%s(%s, %#x)\", NULL, NULL },\n> +{ 523, \"getloginclass_args\", \"%s(%s, %#x)\", NULL, NULL },\n> +{ 31, \"getpeername_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 207, \"getpgid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 81, \"getpgrp_args\", NULL, NULL, NULL },\n> +{ 20, \"getpid_args\", NULL, NULL, NULL },\n> +{ 39, \"getppid_args\", NULL, NULL, NULL },\n> +{ 100, \"getpriority_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 563, \"getrandom_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 361, \"getresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 360, \"getresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 194, \"getrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 589, \"getrlimitusage_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 117, \"getrusage_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 310, \"getsid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 32, \"getsockname_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 118, \"getsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 116, \"gettimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 24, \"getuid_args\", NULL, NULL, NULL },\n> +{ 593, \"inotify_add_watch_at_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 594, \"inotify_rm_watch_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 54, \"ioctl_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> +{ 253, \"issetugid_args\", NULL, NULL, NULL },\n> +{ 338, \"jail_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 436, \"jail_attach_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 597, \"jail_attach_jd_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 506, \"jail_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 508, \"jail_remove_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 598, \"jail_remove_jd_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 507, \"jail_set_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 588, \"kcmp_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 390, \"kenv_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> +{ 560, \"kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 599, \"kexec_load_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 37, \"kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 306, \"kldfind_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 309, \"kldfirstmod_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 304, \"kldload_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 307, \"kldnext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 308, \"kldstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 337, \"kldsym_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 305, \"kldunload_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 444, \"kldunloadf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 461, \"kmq_notify_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 457, \"kmq_open_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 458, \"kmq_setattr_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 459, \"kmq_timedreceive_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 460, \"kmq_timedsend_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 462, \"kmq_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 362, \"kqueue_args\", NULL, NULL, NULL },\n> +{ 583, \"kqueuex_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 400, \"ksem_close_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 408, \"ksem_destroy_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 407, \"ksem_getvalue_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 404, \"ksem_init_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 405, \"ksem_open_args\", \"%s(%#x, %#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 401, \"ksem_post_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 441, \"ksem_timedwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 403, \"ksem_trywait_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 406, \"ksem_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 402, \"ksem_wait_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 235, \"ktimer_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 236, \"ktimer_delete_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 239, \"ktimer_getoverrun_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 238, \"ktimer_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 237, \"ktimer_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 45, \"ktrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 391, \"lchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 274, \"lchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 254, \"lchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 160, \"lgetfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 9, \"link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 495, \"linkat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 257, \"lio_listio_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 106, \"listen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 513, \"lpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 478, \"lseek_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 276, \"lutimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 394, \"mac_syscall_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 75, \"madvise_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 584, \"membarrier_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 78, \"mincore_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> +{ 250, \"minherit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 136, \"mkdir_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 496, \"mkdirat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 132, \"mkfifo_args\", \"%s(%#x, %o)\", NULL, NULL },\n> +{ 497, \"mkfifoat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 559, \"mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> +{ 203, \"mlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 324, \"mlockall_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 477, \"mmap_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 303, \"modfind_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 302, \"modfnext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 300, \"modnext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 301, \"modstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 21, \"mount_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 74, \"mprotect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 511, \"msgctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 225, \"msgget_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 227, \"msgrcv_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 226, \"msgsnd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 170, \"msgsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 65, \"msync_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 204, \"munlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 325, \"munlockall_args\", NULL, NULL, NULL },\n> +{ 73, \"munmap_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 240, \"nanosleep_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 155, \"nfssvc_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 154, \"nlm_syscall_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 378, \"nmount_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 339, \"nnpfs_syscall_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 176, \"ntp_adjtime_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 248, \"ntp_gettime_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 5, \"open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> +{ 499, \"openat_args\", \"%s(%#x, %#x, %#x, %o)\", NULL, NULL },\n> +{ 191, \"pathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 518, \"pdfork_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 520, \"pdgetpid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 519, \"pdkill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 600, \"pdrfork_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 601, \"pdwait_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 542, \"pipe2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 209, \"poll_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 531, \"posix_fadvise_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 530, \"posix_fallocate_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 504, \"posix_openpt_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 545, \"ppoll_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 475, \"pread_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 289, \"preadv_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 544, \"procctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 44, \"profil_args\", \"%s(%s, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 522, \"pselect_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 26, \"ptrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 476, \"pwrite_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 290, \"pwritev_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 148, \"quotactl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 528, \"rctl_add_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 527, \"rctl_get_limits_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 525, \"rctl_get_racct_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 526, \"rctl_get_rules_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 529, \"rctl_remove_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 3, \"read_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 58, \"readlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> +{ 500, \"readlinkat_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> +{ 120, \"readv_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 55, \"reboot_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 29, \"recvfrom_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 27, \"recvmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 128, \"rename_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 602, \"renameat2_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 501, \"renameat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 56, \"revoke_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 251, \"rfork_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 137, \"rmdir_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 576, \"rpctls_syscall_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 166, \"rtprio_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 466, \"rtprio_thread_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 332, \"sched_get_priority_max_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 333, \"sched_get_priority_min_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 581, \"sched_getcpu_args\", NULL, NULL, NULL },\n> +{ 328, \"sched_getparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 330, \"sched_getscheduler_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 334, \"sched_rr_get_interval_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 327, \"sched_setparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 329, \"sched_setscheduler_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 331, \"sched_yield_args\", NULL, NULL, NULL },\n> +{ 474, \"sctp_generic_recvmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 472, \"sctp_generic_sendmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 473, \"sctp_generic_sendmsg_iov_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 471, \"sctp_peeloff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 93, \"select_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 221, \"semget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 222, \"semop_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 169, \"semsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 393, \"sendfile_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 28, \"sendmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 133, \"sendto_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 452, \"setaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 450, \"setaudit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 448, \"setauid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 422, \"setcontext_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 591, \"setcred_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 182, \"setegid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 183, \"seteuid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 175, \"setfib_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 181, \"setgid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 596, \"setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 83, \"setitimer_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 50, \"setlogin_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 524, \"setloginclass_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 82, \"setpgid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 96, \"setpriority_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 127, \"setregid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 312, \"setresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 311, \"setresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 126, \"setreuid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 195, \"setrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 147, \"setsid_args\", NULL, NULL, NULL },\n> +{ 105, \"setsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 122, \"settimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 23, \"setuid_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 571, \"shm_open2_args\", \"%s(%#x, %#x, %o, %#x, %#x)\", NULL, NULL },\n> +{ 572, \"shm_rename_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 483, \"shm_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 228, \"shmat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 512, \"shmctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 230, \"shmdt_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 231, \"shmget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 171, \"shmsys_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 134, \"shutdown_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 416, \"sigaction_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 53, \"sigaltstack_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 573, \"sigfastblock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 343, \"sigpending_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 340, \"sigprocmask_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 456, \"sigqueue_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 417, \"sigreturn_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 341, \"sigsuspend_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 345, \"sigtimedwait_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 429, \"sigwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 346, \"sigwaitinfo_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 97, \"socket_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 135, \"socketpair_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 555, \"statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 423, \"swapcontext_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 582, \"swapoff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 85, \"swapon_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 57, \"symlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 502, \"symlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 36, \"sync_args\", NULL, NULL, NULL },\n> +{ 165, \"sysarch_args\", \"%s(%#x, %s)\", NULL, NULL },\n> +{ 430, \"thr_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 431, \"thr_exit_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 481, \"thr_kill2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 433, \"thr_kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 455, \"thr_new_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 432, \"thr_self_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 464, \"thr_set_name_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 442, \"thr_suspend_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 443, \"thr_wake_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 585, \"timerfd_create_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 586, \"timerfd_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 587, \"timerfd_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 479, \"truncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 60, \"umask_args\", \"%s(%o)\", NULL, NULL },\n> +{ 205, \"undelete_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 10, \"unlink_args\", \"%s(%#x)\", NULL, NULL },\n> +{ 503, \"unlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 22, \"unmount_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 547, \"utimensat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 138, \"utimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 335, \"utrace_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 392, \"uuidgen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> +{ 66, \"vfork_args\", NULL, NULL, NULL },\n> +{ 7, \"wait4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 532, \"wait6_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> +{ 4, \"write_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 121, \"writev_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> +{ 321, \"yield_args\", NULL, NULL, NULL },\n> \n> -- \n> 2.52.0\n>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (1024-bit key;\n unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256\n header.s=mimecast20190719 header.b=bHLkH/Y2;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org\n (client-ip=209.51.188.17; helo=lists1p.gnu.org;\n envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists1p.gnu.org (lists1p.gnu.org [209.51.188.17])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4g5nBY0s50z1yHZ\n\tfor <incoming@patchwork.ozlabs.org>; Thu, 30 Apr 2026 18:19:01 +1000 (AEST)","from localhost ([::1] helo=lists1p.gnu.org)\n\tby lists1p.gnu.org with esmtp (Exim 4.90_1)\n\t(envelope-from <qemu-devel-bounces@nongnu.org>)\n\tid 1wIMbV-0006bi-EG; Thu, 30 Apr 2026 04:18:37 -0400","from eggs.gnu.org ([2001:470:142:3::10])\n by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <berrange@redhat.com>)\n id 1wIMbQ-0006aJ-4w\n for qemu-devel@nongnu.org; Thu, 30 Apr 2026 04:18:32 -0400","from us-smtp-delivery-124.mimecast.com ([170.10.133.124])\n by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <berrange@redhat.com>)\n id 1wIMbM-0006cG-OL\n for qemu-devel@nongnu.org; Thu, 30 Apr 2026 04:18:31 -0400","from mx-prod-mc-05.mail-002.prod.us-west-2.aws.redhat.com\n (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by\n relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3,\n cipher=TLS_AES_256_GCM_SHA384) id us-mta-102-7IcWcTyjNw-r5xAC9P2EsA-1; Thu,\n 30 Apr 2026 04:18:23 -0400","from mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com\n (mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.111])\n (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)\n key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest\n SHA256)\n (No client certificate requested)\n by mx-prod-mc-05.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS\n id 580D0195608A; Thu, 30 Apr 2026 08:18:21 +0000 (UTC)","from redhat.com (unknown [10.44.48.62])\n by mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with\n ESMTPS\n id 40FC3180045E; Thu, 30 Apr 2026 08:18:17 +0000 (UTC)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com;\n s=mimecast20190719; t=1777537107;\n h=from:from:reply-to:reply-to:subject:subject:date:date:\n message-id:message-id:to:to:cc:cc:mime-version:mime-version:\n content-type:content-type:in-reply-to:in-reply-to:  references:references;\n bh=QJJSKaiXPLYIwBfPXHJsF9JwxzwA6NiKRTZJlrlVC4M=;\n b=bHLkH/Y2V0MREe11U5f3D/SXCla9x8HuNebBg4MQ/RMtBQssqupAHiqTvbS9JMfIQqYsm1\n BgeyeccBuV5PV/vbJx36aBPUTSdbz3n0gMb3UJGIzTM/WYNqm2rLMwGbHH+iPjOm47yYR8\n +R3OY8wlERelMiQdA8NjFLftI3YBQkw=","X-MC-Unique":"7IcWcTyjNw-r5xAC9P2EsA-1","X-Mimecast-MFC-AGG-ID":"7IcWcTyjNw-r5xAC9P2EsA_1777537101","Date":"Thu, 30 Apr 2026 09:18:14 +0100","From":"Daniel =?utf-8?b?UC4gQmVycmFuZ8Op?= <berrange@redhat.com>","To":"Warner Losh <imp@bsdimp.com>","Cc":"qemu-devel@nongnu.org, Kyle Evans <kevans@freebsd.org>,\n Paolo Bonzini <pbonzini@redhat.com>,\n =?utf-8?q?Marc-Andr=C3=A9?= Lureau <marcandre.lureau@redhat.com>, Philippe\n\t=?utf-8?q?Mathieu-Daud=C3=A9?= <philmd@linaro.org>,\n Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>","Subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","Message-ID":"<afMQRlu2_ONaBxCX@redhat.com>","References":"<20260429-syscall-nr-v2-0-67a8d09dc13e@bsdimp.com>\n <20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>","MIME-Version":"1.0","Content-Type":"text/plain; charset=utf-8","Content-Disposition":"inline","In-Reply-To":"<20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>","User-Agent":"Mutt/2.3.1 (2026-03-20)","X-Scanned-By":"MIMEDefang 3.4.1 on 10.30.177.111","Received-SPF":"pass client-ip=170.10.133.124;\n envelope-from=berrange@redhat.com;\n helo=us-smtp-delivery-124.mimecast.com","X-Spam_score_int":"12","X-Spam_score":"1.2","X-Spam_bar":"+","X-Spam_report":"(1.2 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001,\n DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,\n RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001,\n RCVD_IN_SBL_CSS=3.335, SPF_HELO_PASS=-0.001,\n SPF_PASS=-0.001 autolearn=no autolearn_force=no","X-Spam_action":"no action","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"qemu development <qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<https://lists.nongnu.org/archive/html/qemu-devel>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Reply-To":"Daniel =?utf-8?b?UC4gQmVycmFuZ8Op?= <berrange@redhat.com>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org"}},{"id":3684820,"web_url":"http://patchwork.ozlabs.org/comment/3684820/","msgid":"<CANCZdfqAFREcN_xvYYcVjWCih5m0Oe1GTeFxt4h3DLvJU78bcg@mail.gmail.com>","list_archive_url":null,"date":"2026-04-30T16:17:02","subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","submitter":{"id":1896,"url":"http://patchwork.ozlabs.org/api/people/1896/","name":"Warner Losh","email":"imp@bsdimp.com"},"content":"On Thu, Apr 30, 2026 at 2:18 AM Daniel P. Berrangé <berrange@redhat.com>\nwrote:\n\n> On Wed, Apr 29, 2026 at 08:38:55AM -0600, Warner Losh wrote:\n> > Note: I derived this script from one of the FreeBSD system call\n> > generation scripts, so it needs to be BSD-2-Clause license, which\n> > deviates a bit from the GPL-2.0-or-newer preference, but I think is OK\n> > since it's not folded into the qemu binaries themselves (and output of\n> > scripts is typically public domain, as is the case here).\n>\n> Yes, that's all absolutely fine - when pulling incode from outside,\n> or derived from outside, it is required to preserve the license.\n> The GPL-2.0-or-newer rule only applies to green field code written\n> for QEMU.\n>\n> It would be fine even if it applied to code that needs to be linked\n> into QEMU, since BSD-2-Clause is compatible with GPL-2 in a combined\n> work.\n>\n> >                                                           This script is\n> > written in lua, but every FreeBSD installation has a 'flua' binary that\n> > can run this script, and it leverages about 7k lines of library and\n> > metadata FreeBSD maintains well.\n> >\n> > Signed-off-by: Warner Losh <imp@bsdimp.com>\n> > ---\n> >  bsd-user/freebsd/scripts/strace.lua | 117 ++++++\n> >  bsd-user/freebsd/strace.list        | 708\n> ++++++++++++++++++++++--------------\n> >  2 files changed, 556 insertions(+), 269 deletions(-)\n> >\n> > diff --git a/bsd-user/freebsd/scripts/strace.lua\n> b/bsd-user/freebsd/scripts/strace.lua\n> > new file mode 100755\n> > index 0000000000..c89e8e3aeb\n> > --- /dev/null\n> > +++ b/bsd-user/freebsd/scripts/strace.lua\n> > @@ -0,0 +1,117 @@\n>\n> > +                             gen:write(string.format(\n> > +                                 \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n> > +                                 v.num, v.arg_alias, fmt, fcn))\n>\n> Is there a reason to use v.num, instead of the symbolic name that\n> was previously used ?  eg something like:\n>\n>     \"{ TARGET_FREEBSD_NR_%s, \\\"%s\\\", %s, %s, NULL },\\n\",\n>     v.arg_alias, v.arg_alias, fmt, fcn))\n>\n\nYes. Since we're now generating the TARGET_FREEBSD_NR_ symbols from\nsys/syscalls.h,\nthere are going to be some that are undefined. FreeBSD current introduces\nnew system calls\nfrom time to time that older, but still supported, branches do not have. I\nwatned one file that\nwould work on all supported versions. Since adding an #ifdef before each\nline exploded things,\nand since you can't macroize #ifdef, and since the FreeBSD system call\nnumbers are completely\nstable and never change and since humans rarely read this file, I used the\nnumber so that it\nwould work everywhere.  I thought about adding a comment on each line, but\nthe syscall name\nis the next field over so it wouldn't add much, if any, value.\n\n\n>\n> > diff --git a/bsd-user/freebsd/strace.list b/bsd-user/freebsd/strace.list\n> > index d7f61f480e..2c4176475a 100644\n> > --- a/bsd-user/freebsd/strace.list\n> > +++ b/bsd-user/freebsd/strace.list\n> > @@ -1,273 +1,443 @@\n> >  /*\n>\n> If comparing the first few:\n>\n> > -{ TARGET_FREEBSD_NR___acl_aclcheck_fd, \"__acl_aclcheck_fd\", \"%s(%d, %d,\n> %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_aclcheck_file, \"__acl_aclcheck_file\",\n> \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n> > -{ TARGET_FREEBSD_NR___acl_aclcheck_link, \"__acl_aclcheck_link\",\n> \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n>\n> vs\n>\n> > +{ 354, \"__acl_aclcheck_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 353, \"__acl_aclcheck_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 428, \"__acl_aclcheck_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>\n> The args pattern has changed significantly. Everything is now\n> %#x, where as before it was formatting strings and integers.\n>\n> Looking further at just the new definitions, essentially\n> everything is now %#x.  Is that really intentional ? If\n> so just put a note in the commit message about why nearly\n> all the args are changing format.\n>\n\nHmmm, That's surprising to me. I'll double check what's going on to make\nsure my logic is correct since that's not what was intended, nor what\nearlier versions of the script produced.\n\nWarner\n\n\n> > +{ 352, \"__acl_delete_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 351, \"__acl_delete_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 427, \"__acl_delete_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 349, \"__acl_get_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 347, \"__acl_get_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 425, \"__acl_get_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 350, \"__acl_set_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 348, \"__acl_set_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 426, \"__acl_set_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 515, \"__cap_rights_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 326, \"__getcwd_args\", \"%s(%s, %#x)\", NULL, NULL },\n> > +{ 415, \"__mac_execve_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 386, \"__mac_get_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 387, \"__mac_get_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 410, \"__mac_get_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 409, \"__mac_get_pid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 384, \"__mac_get_proc_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 388, \"__mac_set_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 389, \"__mac_set_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 411, \"__mac_set_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 385, \"__mac_set_proc_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 574, \"__realpathat_args\", \"%s(%#x, %#x, %s, %#x, %#x)\", NULL, NULL },\n> > +{ 510, \"__semctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 374, \"__setugid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 577, \"__specialfd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 202, \"__sysctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 570, \"__sysctlbyname_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 1, \"_exit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 454, \"_umtx_op_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 463, \"abort2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 541, \"accept4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 30, \"accept_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 33, \"access_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 51, \"acct_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 140, \"adjtime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 377, \"afs3_syscall_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 316, \"aio_cancel_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 317, \"aio_error_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 465, \"aio_fsync_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 543, \"aio_mlock_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 255, \"aio_read_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 579, \"aio_readv_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 314, \"aio_return_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 315, \"aio_suspend_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 359, \"aio_waitcomplete_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 256, \"aio_write_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 578, \"aio_writev_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 445, \"audit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 453, \"auditctl_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 446, \"auditon_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 104, \"bind_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 538, \"bindat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 17, \"break_args\", \"%s(%s)\", NULL, NULL },\n> > +{ 516, \"cap_enter_args\", NULL, NULL, NULL },\n> > +{ 537, \"cap_fcntls_get_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 536, \"cap_fcntls_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 517, \"cap_getmode_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 535, \"cap_ioctls_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 534, \"cap_ioctls_limit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 533, \"cap_rights_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 12, \"chdir_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 34, \"chflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 540, \"chflagsat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 15, \"chmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 16, \"chown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 61, \"chroot_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 247, \"clock_getcpuclockid2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 234, \"clock_getres_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 232, \"clock_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 244, \"clock_nanosleep_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 233, \"clock_settime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 6, \"close_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 575, \"close_range_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 98, \"connect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 539, \"connectat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 569, \"copy_file_range_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 484, \"cpuset_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 487, \"cpuset_getaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 561, \"cpuset_getdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 486, \"cpuset_getid_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 488, \"cpuset_setaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 562, \"cpuset_setdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 485, \"cpuset_setid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 90, \"dup2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 41, \"dup_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 376, \"eaccess_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 59, \"execve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 373, \"extattr_delete_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 358, \"extattr_delete_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 414, \"extattr_delete_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 372, \"extattr_get_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 357, \"extattr_get_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 413, \"extattr_get_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 437, \"extattr_list_fd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 438, \"extattr_list_file_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 439, \"extattr_list_link_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 371, \"extattr_set_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 356, \"extattr_set_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 412, \"extattr_set_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 355, \"extattrctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 592, \"exterrctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 489, \"faccessat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 13, \"fchdir_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 35, \"fchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 124, \"fchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 490, \"fchmodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 123, \"fchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 491, \"fchownat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 590, \"fchroot_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 92, \"fcntl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 550, \"fdatasync_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 492, \"fexecve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 241, \"ffclock_getcounter_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 243, \"ffclock_getestimate_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 242, \"ffclock_setestimate_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 565, \"fhlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 566, \"fhlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 298, \"fhopen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 567, \"fhreadlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> > +{ 553, \"fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 558, \"fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 131, \"flock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 2, \"fork_args\", NULL, NULL, NULL },\n> > +{ 192, \"fpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 434, \"freebsd10__umtx_lock_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 435, \"freebsd10__umtx_unlock_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 42, \"freebsd10_pipe_args\", NULL, NULL, NULL },\n> > +{ 299, \"freebsd11_fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 398, \"freebsd11_fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 189, \"freebsd11_fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 493, \"freebsd11_fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 397, \"freebsd11_fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 272, \"freebsd11_getdents_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> > +{ 196, \"freebsd11_getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 395, \"freebsd11_getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 363, \"freebsd11_kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n> NULL, NULL },\n> > +{ 190, \"freebsd11_lstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 14, \"freebsd11_mknod_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 498, \"freebsd11_mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 279, \"freebsd11_nfstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 280, \"freebsd11_nlstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 278, \"freebsd11_nstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 188, \"freebsd11_stat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 396, \"freebsd11_statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 72, \"freebsd11_vadvise_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 509, \"freebsd12_closefrom_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 482, \"freebsd12_shm_open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 424, \"freebsd13_swapoff_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 79, \"freebsd14_getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 80, \"freebsd14_setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 580, \"fspacectl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 551, \"fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 552, \"fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 556, \"fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 95, \"fsync_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 480, \"ftruncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 568, \"funlinkat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 546, \"futimens_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 206, \"futimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 494, \"futimesat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 451, \"getaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 449, \"getaudit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 447, \"getauid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 421, \"getcontext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 554, \"getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> > +{ 89, \"getdtablesize_args\", NULL, NULL, NULL },\n> > +{ 43, \"getegid_args\", NULL, NULL, NULL },\n> > +{ 25, \"geteuid_args\", NULL, NULL, NULL },\n> > +{ 161, \"getfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 564, \"getfhat_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n> > +{ 557, \"getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 47, \"getgid_args\", NULL, NULL, NULL },\n> > +{ 595, \"getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 86, \"getitimer_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 49, \"getlogin_args\", \"%s(%s, %#x)\", NULL, NULL },\n> > +{ 523, \"getloginclass_args\", \"%s(%s, %#x)\", NULL, NULL },\n> > +{ 31, \"getpeername_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 207, \"getpgid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 81, \"getpgrp_args\", NULL, NULL, NULL },\n> > +{ 20, \"getpid_args\", NULL, NULL, NULL },\n> > +{ 39, \"getppid_args\", NULL, NULL, NULL },\n> > +{ 100, \"getpriority_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 563, \"getrandom_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 361, \"getresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 360, \"getresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 194, \"getrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 589, \"getrlimitusage_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 117, \"getrusage_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 310, \"getsid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 32, \"getsockname_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 118, \"getsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 116, \"gettimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 24, \"getuid_args\", NULL, NULL, NULL },\n> > +{ 593, \"inotify_add_watch_at_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 594, \"inotify_rm_watch_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 54, \"ioctl_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> > +{ 253, \"issetugid_args\", NULL, NULL, NULL },\n> > +{ 338, \"jail_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 436, \"jail_attach_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 597, \"jail_attach_jd_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 506, \"jail_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 508, \"jail_remove_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 598, \"jail_remove_jd_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 507, \"jail_set_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 588, \"kcmp_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 390, \"kenv_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> > +{ 560, \"kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 599, \"kexec_load_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 37, \"kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 306, \"kldfind_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 309, \"kldfirstmod_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 304, \"kldload_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 307, \"kldnext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 308, \"kldstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 337, \"kldsym_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 305, \"kldunload_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 444, \"kldunloadf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 461, \"kmq_notify_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 457, \"kmq_open_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 458, \"kmq_setattr_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 459, \"kmq_timedreceive_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 460, \"kmq_timedsend_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n> },\n> > +{ 462, \"kmq_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 362, \"kqueue_args\", NULL, NULL, NULL },\n> > +{ 583, \"kqueuex_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 400, \"ksem_close_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 408, \"ksem_destroy_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 407, \"ksem_getvalue_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 404, \"ksem_init_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 405, \"ksem_open_args\", \"%s(%#x, %#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 401, \"ksem_post_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 441, \"ksem_timedwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 403, \"ksem_trywait_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 406, \"ksem_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 402, \"ksem_wait_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 235, \"ktimer_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 236, \"ktimer_delete_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 239, \"ktimer_getoverrun_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 238, \"ktimer_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 237, \"ktimer_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 45, \"ktrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 391, \"lchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 274, \"lchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 254, \"lchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 160, \"lgetfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 9, \"link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 495, \"linkat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 257, \"lio_listio_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 106, \"listen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 513, \"lpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 478, \"lseek_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 276, \"lutimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 394, \"mac_syscall_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 75, \"madvise_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 584, \"membarrier_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 78, \"mincore_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n> > +{ 250, \"minherit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 136, \"mkdir_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 496, \"mkdirat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 132, \"mkfifo_args\", \"%s(%#x, %o)\", NULL, NULL },\n> > +{ 497, \"mkfifoat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 559, \"mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n> > +{ 203, \"mlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 324, \"mlockall_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 477, \"mmap_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 303, \"modfind_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 302, \"modfnext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 300, \"modnext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 301, \"modstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 21, \"mount_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 74, \"mprotect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 511, \"msgctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 225, \"msgget_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 227, \"msgrcv_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 226, \"msgsnd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 170, \"msgsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 65, \"msync_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 204, \"munlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 325, \"munlockall_args\", NULL, NULL, NULL },\n> > +{ 73, \"munmap_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 240, \"nanosleep_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 155, \"nfssvc_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 154, \"nlm_syscall_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 378, \"nmount_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 339, \"nnpfs_syscall_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 176, \"ntp_adjtime_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 248, \"ntp_gettime_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 5, \"open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n> > +{ 499, \"openat_args\", \"%s(%#x, %#x, %#x, %o)\", NULL, NULL },\n> > +{ 191, \"pathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 518, \"pdfork_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 520, \"pdgetpid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 519, \"pdkill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 600, \"pdrfork_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 601, \"pdwait_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 542, \"pipe2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 209, \"poll_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 531, \"posix_fadvise_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 530, \"posix_fallocate_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 504, \"posix_openpt_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 545, \"ppoll_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 475, \"pread_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 289, \"preadv_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 544, \"procctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 44, \"profil_args\", \"%s(%s, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 522, \"pselect_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 26, \"ptrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 476, \"pwrite_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 290, \"pwritev_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 148, \"quotactl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 528, \"rctl_add_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 527, \"rctl_get_limits_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 525, \"rctl_get_racct_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 526, \"rctl_get_rules_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 529, \"rctl_remove_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 3, \"read_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 58, \"readlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n> > +{ 500, \"readlinkat_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n> > +{ 120, \"readv_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 55, \"reboot_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 29, \"recvfrom_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 27, \"recvmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 128, \"rename_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 602, \"renameat2_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 501, \"renameat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 56, \"revoke_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 251, \"rfork_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 137, \"rmdir_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 576, \"rpctls_syscall_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 166, \"rtprio_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 466, \"rtprio_thread_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 332, \"sched_get_priority_max_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 333, \"sched_get_priority_min_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 581, \"sched_getcpu_args\", NULL, NULL, NULL },\n> > +{ 328, \"sched_getparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 330, \"sched_getscheduler_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 334, \"sched_rr_get_interval_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 327, \"sched_setparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 329, \"sched_setscheduler_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 331, \"sched_yield_args\", NULL, NULL, NULL },\n> > +{ 474, \"sctp_generic_recvmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x,\n> %#x)\", NULL, NULL },\n> > +{ 472, \"sctp_generic_sendmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x,\n> %#x)\", NULL, NULL },\n> > +{ 473, \"sctp_generic_sendmsg_iov_args\", \"%s(%#x, %#x, %#x, %#x, %#x,\n> %#x, %#x)\", NULL, NULL },\n> > +{ 471, \"sctp_peeloff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 93, \"select_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 221, \"semget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 222, \"semop_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 169, \"semsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 393, \"sendfile_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL,\n> NULL },\n> > +{ 28, \"sendmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 133, \"sendto_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 452, \"setaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 450, \"setaudit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 448, \"setauid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 422, \"setcontext_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 591, \"setcred_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 182, \"setegid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 183, \"seteuid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 175, \"setfib_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 181, \"setgid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 596, \"setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 83, \"setitimer_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 50, \"setlogin_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 524, \"setloginclass_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 82, \"setpgid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 96, \"setpriority_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 127, \"setregid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 312, \"setresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 311, \"setresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 126, \"setreuid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 195, \"setrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 147, \"setsid_args\", NULL, NULL, NULL },\n> > +{ 105, \"setsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 122, \"settimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 23, \"setuid_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 571, \"shm_open2_args\", \"%s(%#x, %#x, %o, %#x, %#x)\", NULL, NULL },\n> > +{ 572, \"shm_rename_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 483, \"shm_unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 228, \"shmat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 512, \"shmctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 230, \"shmdt_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 231, \"shmget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 171, \"shmsys_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 134, \"shutdown_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 416, \"sigaction_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 53, \"sigaltstack_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 573, \"sigfastblock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 343, \"sigpending_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 340, \"sigprocmask_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 456, \"sigqueue_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 417, \"sigreturn_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 341, \"sigsuspend_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 345, \"sigtimedwait_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 429, \"sigwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 346, \"sigwaitinfo_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 97, \"socket_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 135, \"socketpair_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 555, \"statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 423, \"swapcontext_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 582, \"swapoff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 85, \"swapon_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 57, \"symlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 502, \"symlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 36, \"sync_args\", NULL, NULL, NULL },\n> > +{ 165, \"sysarch_args\", \"%s(%#x, %s)\", NULL, NULL },\n> > +{ 430, \"thr_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 431, \"thr_exit_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 481, \"thr_kill2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 433, \"thr_kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 455, \"thr_new_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 432, \"thr_self_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 464, \"thr_set_name_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 442, \"thr_suspend_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 443, \"thr_wake_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 585, \"timerfd_create_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 586, \"timerfd_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 587, \"timerfd_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 479, \"truncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 60, \"umask_args\", \"%s(%o)\", NULL, NULL },\n> > +{ 205, \"undelete_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 10, \"unlink_args\", \"%s(%#x)\", NULL, NULL },\n> > +{ 503, \"unlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 22, \"unmount_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 547, \"utimensat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 138, \"utimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 335, \"utrace_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 392, \"uuidgen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n> > +{ 66, \"vfork_args\", NULL, NULL, NULL },\n> > +{ 7, \"wait4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 532, \"wait6_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n> > +{ 4, \"write_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 121, \"writev_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n> > +{ 321, \"yield_args\", NULL, NULL, NULL },\n> >\n> > --\n> > 2.52.0\n> >\n>\n>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (2048-bit key;\n unprotected) header.d=bsdimp-com.20251104.gappssmtp.com\n header.i=@bsdimp-com.20251104.gappssmtp.com header.a=rsa-sha256\n header.s=20251104 header.b=WdhrV6uO;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org\n (client-ip=209.51.188.17; helo=lists1p.gnu.org;\n envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists1p.gnu.org (lists1p.gnu.org [209.51.188.17])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4g5zqz1GWvz1yGq\n\tfor <incoming@patchwork.ozlabs.org>; Fri, 01 May 2026 02:18:37 +1000 (AEST)","from localhost ([::1] helo=lists1p.gnu.org)\n\tby lists1p.gnu.org with esmtp (Exim 4.90_1)\n\t(envelope-from <qemu-devel-bounces@nongnu.org>)\n\tid 1wIU53-0004FI-CO; Thu, 30 Apr 2026 12:17:37 -0400","from eggs.gnu.org ([2001:470:142:3::10])\n by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <wlosh@bsdimp.com>) id 1wIU4p-0004C0-NB\n for qemu-devel@nongnu.org; Thu, 30 Apr 2026 12:17:27 -0400","from mail-pf1-x435.google.com ([2607:f8b0:4864:20::435])\n by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)\n (Exim 4.90_1) (envelope-from <wlosh@bsdimp.com>) id 1wIU4i-0002zS-CF\n for qemu-devel@nongnu.org; Thu, 30 Apr 2026 12:17:23 -0400","by mail-pf1-x435.google.com with SMTP id\n d2e1a72fcca58-82fb2d0c5d1so1544726b3a.0\n for <qemu-devel@nongnu.org>; Thu, 30 Apr 2026 09:17:15 -0700 (PDT)"],"ARC-Seal":"i=1; a=rsa-sha256; t=1777565834; cv=none;\n d=google.com; s=arc-20240605;\n b=PPs90vjdmU9pdd/YRHNz9fiZeI7i9c8RC4tDTa/QCNgEEYo5azcFolq3lNLotnH/yv\n 6Dcuqr9mqkUY8zr88r2MP6WrXiNCKeYhHt05WwSzEKA3m6GKS7AyEJ6KJWsU08OubttN\n QmiSxnFQPP4yVluyOvP6EiiyBDxHEunQGhpKQJD+45V5wTTSN3G50qOMeqIxIH+NoRLv\n bKw1BinI46VDx4OHWPz84NgWZxRiZezS3VGe9G/IgvRIzMpIJ1Izo8J2xwMlbcWZt7at\n DOI25rZN4XmesfhU4ScfwJV0IK8NIqoTYJ/H66Un4rDDOybOqcEk/TFEM/2A/YAQjs1+\n 66Lg==","ARC-Message-Signature":"i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com;\n s=arc-20240605;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:dkim-signature;\n bh=uAD+sYn4RM64PH2/gMbjuwXnZUR1OqFQhTUbKMcNax0=;\n fh=xSF5Cn5IlcZ56sW4KBOds7v1bxJT9VYpErqAKX6G/rw=;\n b=gduQsxCidP2xNEvxUyU1GTZA3bvmfbdH0VF8WZVBOpjyt276jcmQ/ahsYZPpky+CUQ\n lBlkHApHLgCROoQAY08lhp9tRAEvtDT3HNqa/jqEycJ9s1BZoXoowiLqjZpFYSpzZgnz\n 5Ri74hwJK6MfXFVkubAxg3+Q6J130aLGbYf/e2Xc+oSqMD0+bUSSOQsPm3Wwb9GRVdhv\n TvlqDb+jwr0Ce5J07GDlMdaXL3tdA0k11V3fH383hFtu3bWmArrI8gxHMZUV14Ee4rNl\n qQOAcNuB6v0TSxXCMdSlZBOES3Oo/XDVRBqxqac4tG8/m/iMR/QjRQbF+bNk1s0CUwjA\n 9b2Q==; darn=nongnu.org","ARC-Authentication-Results":"i=1; mx.google.com; arc=none","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=bsdimp-com.20251104.gappssmtp.com; s=20251104; t=1777565834; x=1778170634;\n darn=nongnu.org;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:from:to:cc:subject:date:message-id:reply-to;\n bh=uAD+sYn4RM64PH2/gMbjuwXnZUR1OqFQhTUbKMcNax0=;\n b=WdhrV6uOg9z+ZJCUanpD+qvG+uSKKJj42w1QO3YJPemupJqQEv8i6xweKHd0DGli8d\n /DMu/t6bc+se4hiTk+cK3BDnpc5dJtnbtCvsK4cNfzOsopkNIlyyxGRuk8ilClHqmKe7\n M1scNktzwJLjZChGCnsQ3ZHtpwLQDqPYAIjU8+xcfcy+fPYwKrWpd+vhyS3yY6IoPJIi\n /qfBAFm1dWFCmWH3PNDEzfzB49XY4RjtFZRf58pZ2Pmqi6vrx9LtyBKIScXsakkE5+Um\n iuZxCyr3YIPMWa8DRHf50RfYZlXPgAtwicwNdbDwg8lEfNLA3AoB6Ltw8mzQ+KAhIW/W\n +aBw==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=1e100.net; s=20251104; t=1777565834; x=1778170634;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:x-gm-gg:x-gm-message-state:from:to:cc:subject:date\n :message-id:reply-to;\n bh=uAD+sYn4RM64PH2/gMbjuwXnZUR1OqFQhTUbKMcNax0=;\n b=nKc3RY+0NiYy8g1YH/e1MMOqcIygntLzi5BtjpmUhb+hX7zJ2FZzjZ7vQ/T79ic/47\n QcBb85ihWaExCwRpHwVmywExz/AGRKB9cRZ6SpQnLrnIUT/zdn+dqRZ4j+KYg3LnqY1S\n lnQAqT3cHgXgiPSdmRRO5FhdnO2v9Bq6a1YaXAUHUc0ZbROKrSXIc16JMPD9wND3Obwk\n JCtbGQGoiyFiDy0NwwPx8f+zp1f0+TvUniJGOio3HFvGpcXc+/Vt2x7b/1yhBw1PmlVj\n DNUyMfzlBf63MZWzfaSdFdccgkBQckXDsh8IqIW4l4EszuVwMklidVfs21isPJl1FGoO\n wR1A==","X-Gm-Message-State":"AOJu0YyKLcD/7kgLWtd5iQNF373Rewtlex8N7Qh8qECpGRI2/rde6SsE\n HqvL/jZsdDUOQuy0NUfdwauFMIBNQLajMwKfx3LTZ49Eig/m1I5eop8AielNSKLnsr7obo05Htt\n Fhe+h0CvCVTz+k1U4JvriQ2mkKexoVavwsqkBK1UEaA==","X-Gm-Gg":"AeBDieszX22y5gtPMm9W6gAZtfQWPmlWVXXEznJEQLsKnJThJihG8nWczn118ABWZEV\n eGlCjI7tAoKSb5OVN5VQ6qNzt7ve7QYXXypgvBnuG+zyjzEHXAICA1OQSGUXJ/HH4o6rIFCi2qy\n fiSvql1X0SxaqcTi2gofmlz1i0d+sBcxMCjd7YjQzzaEA/tc5gGAR/EQPxVwBBfZgAZ8fg2ONPm\n 8aJu0Mf7VptyS3iFKB+TF4MiKCueUPQ8Lcs7NdZM9qfHq3cnsnxx4fb5hHbMldCgeayXOrSKz1V\n WHPxrG6a/ESjkhjZTn1Pc0Nq8BrR","X-Received":"by 2002:a05:6a00:3021:b0:81f:5acb:55fc with SMTP id\n d2e1a72fcca58-834fffc165cmr2987495b3a.10.1777565834019; Thu, 30 Apr 2026\n 09:17:14 -0700 (PDT)","MIME-Version":"1.0","References":"<20260429-syscall-nr-v2-0-67a8d09dc13e@bsdimp.com>\n <20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>\n <afMQRlu2_ONaBxCX@redhat.com>","In-Reply-To":"<afMQRlu2_ONaBxCX@redhat.com>","From":"Warner Losh <imp@bsdimp.com>","Date":"Thu, 30 Apr 2026 10:17:02 -0600","X-Gm-Features":"AVHnY4JGKeFWchnICf1qHwSx2bJ5wkEl7DbnKceWgw_kAknN8y37NurHXUtqvCs","Message-ID":"\n <CANCZdfqAFREcN_xvYYcVjWCih5m0Oe1GTeFxt4h3DLvJU78bcg@mail.gmail.com>","Subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","To":"=?utf-8?q?Daniel_P=2E_Berrang=C3=A9?= <berrange@redhat.com>","Cc":"qemu-devel@nongnu.org, Kyle Evans <kevans@freebsd.org>,\n  Paolo Bonzini <pbonzini@redhat.com>,\n =?utf-8?q?Marc-Andr=C3=A9_Lureau?= <marcandre.lureau@redhat.com>,\n\t=?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= <philmd@linaro.org>,\n  Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>","Content-Type":"multipart/alternative; boundary=\"0000000000001a13100650afcc36\"","Received-SPF":"none client-ip=2607:f8b0:4864:20::435;\n envelope-from=wlosh@bsdimp.com; helo=mail-pf1-x435.google.com","X-Spam_score_int":"-18","X-Spam_score":"-1.9","X-Spam_bar":"-","X-Spam_report":"(-1.9 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,\n DKIM_VALID=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001,\n SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no","X-Spam_action":"no action","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"qemu development <qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<https://lists.nongnu.org/archive/html/qemu-devel>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org"}},{"id":3685014,"web_url":"http://patchwork.ozlabs.org/comment/3685014/","msgid":"<CANCZdfo=wEBECqRNs9YkTku+t3nb5+C0jKF0=uyXeS1BStSktg@mail.gmail.com>","list_archive_url":null,"date":"2026-05-01T03:00:13","subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","submitter":{"id":1896,"url":"http://patchwork.ozlabs.org/api/people/1896/","name":"Warner Losh","email":"imp@bsdimp.com"},"content":"On Thu, Apr 30, 2026 at 10:17 AM Warner Losh <imp@bsdimp.com> wrote:\n\n>\n>\n> On Thu, Apr 30, 2026 at 2:18 AM Daniel P. Berrangé <berrange@redhat.com>\n> wrote:\n>\n>> On Wed, Apr 29, 2026 at 08:38:55AM -0600, Warner Losh wrote:\n>> > Note: I derived this script from one of the FreeBSD system call\n>> > generation scripts, so it needs to be BSD-2-Clause license, which\n>> > deviates a bit from the GPL-2.0-or-newer preference, but I think is OK\n>> > since it's not folded into the qemu binaries themselves (and output of\n>> > scripts is typically public domain, as is the case here).\n>>\n>> Yes, that's all absolutely fine - when pulling incode from outside,\n>> or derived from outside, it is required to preserve the license.\n>> The GPL-2.0-or-newer rule only applies to green field code written\n>> for QEMU.\n>>\n>> It would be fine even if it applied to code that needs to be linked\n>> into QEMU, since BSD-2-Clause is compatible with GPL-2 in a combined\n>> work.\n>>\n>> >                                                           This script is\n>> > written in lua, but every FreeBSD installation has a 'flua' binary that\n>> > can run this script, and it leverages about 7k lines of library and\n>> > metadata FreeBSD maintains well.\n>> >\n>> > Signed-off-by: Warner Losh <imp@bsdimp.com>\n>> > ---\n>> >  bsd-user/freebsd/scripts/strace.lua | 117 ++++++\n>> >  bsd-user/freebsd/strace.list        | 708\n>> ++++++++++++++++++++++--------------\n>> >  2 files changed, 556 insertions(+), 269 deletions(-)\n>> >\n>> > diff --git a/bsd-user/freebsd/scripts/strace.lua\n>> b/bsd-user/freebsd/scripts/strace.lua\n>> > new file mode 100755\n>> > index 0000000000..c89e8e3aeb\n>> > --- /dev/null\n>> > +++ b/bsd-user/freebsd/scripts/strace.lua\n>> > @@ -0,0 +1,117 @@\n>>\n>> > +                             gen:write(string.format(\n>> > +                                 \"{ %d, \\\"%s\\\", %s, %s, NULL },\\n\",\n>> > +                                 v.num, v.arg_alias, fmt, fcn))\n>>\n>> Is there a reason to use v.num, instead of the symbolic name that\n>> was previously used ?  eg something like:\n>>\n>>     \"{ TARGET_FREEBSD_NR_%s, \\\"%s\\\", %s, %s, NULL },\\n\",\n>>     v.arg_alias, v.arg_alias, fmt, fcn))\n>>\n>\n> Yes. Since we're now generating the TARGET_FREEBSD_NR_ symbols from\n> sys/syscalls.h,\n> there are going to be some that are undefined. FreeBSD current introduces\n> new system calls\n> from time to time that older, but still supported, branches do not have. I\n> watned one file that\n> would work on all supported versions. Since adding an #ifdef before each\n> line exploded things,\n> and since you can't macroize #ifdef, and since the FreeBSD system call\n> numbers are completely\n> stable and never change and since humans rarely read this file, I used the\n> number so that it\n> would work everywhere.  I thought about adding a comment on each line, but\n> the syscall name\n> is the next field over so it wouldn't add much, if any, value.\n>\n>\n>>\n>> > diff --git a/bsd-user/freebsd/strace.list b/bsd-user/freebsd/strace.list\n>> > index d7f61f480e..2c4176475a 100644\n>> > --- a/bsd-user/freebsd/strace.list\n>> > +++ b/bsd-user/freebsd/strace.list\n>> > @@ -1,273 +1,443 @@\n>> >  /*\n>>\n>> If comparing the first few:\n>>\n>> > -{ TARGET_FREEBSD_NR___acl_aclcheck_fd, \"__acl_aclcheck_fd\", \"%s(%d,\n>> %d, %#x)\", NULL, NULL },\n>> > -{ TARGET_FREEBSD_NR___acl_aclcheck_file, \"__acl_aclcheck_file\",\n>> \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n>> > -{ TARGET_FREEBSD_NR___acl_aclcheck_link, \"__acl_aclcheck_link\",\n>> \"%s(\\\"%s\\\", %d, %#x)\", NULL, NULL },\n>>\n>> vs\n>>\n>> > +{ 354, \"__acl_aclcheck_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 353, \"__acl_aclcheck_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 428, \"__acl_aclcheck_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>>\n>> The args pattern has changed significantly. Everything is now\n>> %#x, where as before it was formatting strings and integers.\n>>\n>> Looking further at just the new definitions, essentially\n>> everything is now %#x.  Is that really intentional ? If\n>> so just put a note in the commit message about why nearly\n>> all the args are changing format.\n>>\n>\n> Hmmm, That's surprising to me. I'll double check what's going on to make\n> sure my logic is correct since that's not what was intended, nor what\n> earlier versions of the script produced.\n>\n\nOK. Something really weird is going on, so I'm going to drop the last hunk\nof the\npatch, and resend the patch one more time because I had too many files added\nto bsd-user/freebsd/meson.build.\n\nWarner\n\n\n> Warner\n>\n>\n>> > +{ 352, \"__acl_delete_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 351, \"__acl_delete_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 427, \"__acl_delete_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 349, \"__acl_get_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 347, \"__acl_get_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 425, \"__acl_get_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 350, \"__acl_set_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 348, \"__acl_set_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 426, \"__acl_set_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 515, \"__cap_rights_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 326, \"__getcwd_args\", \"%s(%s, %#x)\", NULL, NULL },\n>> > +{ 415, \"__mac_execve_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 386, \"__mac_get_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 387, \"__mac_get_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 410, \"__mac_get_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 409, \"__mac_get_pid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 384, \"__mac_get_proc_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 388, \"__mac_set_fd_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 389, \"__mac_set_file_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 411, \"__mac_set_link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 385, \"__mac_set_proc_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 574, \"__realpathat_args\", \"%s(%#x, %#x, %s, %#x, %#x)\", NULL, NULL },\n>> > +{ 510, \"__semctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 374, \"__setugid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 577, \"__specialfd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 202, \"__sysctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 570, \"__sysctlbyname_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n>> NULL, NULL },\n>> > +{ 1, \"_exit_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 454, \"_umtx_op_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 463, \"abort2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 541, \"accept4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 30, \"accept_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 33, \"access_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 51, \"acct_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 140, \"adjtime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 377, \"afs3_syscall_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\",\n>> NULL, NULL },\n>> > +{ 316, \"aio_cancel_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 317, \"aio_error_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 465, \"aio_fsync_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 543, \"aio_mlock_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 255, \"aio_read_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 579, \"aio_readv_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 314, \"aio_return_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 315, \"aio_suspend_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 359, \"aio_waitcomplete_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 256, \"aio_write_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 578, \"aio_writev_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 445, \"audit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 453, \"auditctl_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 446, \"auditon_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 104, \"bind_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 538, \"bindat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 17, \"break_args\", \"%s(%s)\", NULL, NULL },\n>> > +{ 516, \"cap_enter_args\", NULL, NULL, NULL },\n>> > +{ 537, \"cap_fcntls_get_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 536, \"cap_fcntls_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 517, \"cap_getmode_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 535, \"cap_ioctls_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 534, \"cap_ioctls_limit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 533, \"cap_rights_limit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 12, \"chdir_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 34, \"chflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 540, \"chflagsat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 15, \"chmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n>> > +{ 16, \"chown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 61, \"chroot_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 247, \"clock_getcpuclockid2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 234, \"clock_getres_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 232, \"clock_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 244, \"clock_nanosleep_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 233, \"clock_settime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 6, \"close_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 575, \"close_range_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 98, \"connect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 539, \"connectat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 569, \"copy_file_range_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n>> NULL, NULL },\n>> > +{ 484, \"cpuset_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 487, \"cpuset_getaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 561, \"cpuset_getdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n>> NULL, NULL },\n>> > +{ 486, \"cpuset_getid_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 488, \"cpuset_setaffinity_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 562, \"cpuset_setdomain_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n>> NULL, NULL },\n>> > +{ 485, \"cpuset_setid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 90, \"dup2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 41, \"dup_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 376, \"eaccess_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 59, \"execve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 373, \"extattr_delete_fd_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 358, \"extattr_delete_file_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 414, \"extattr_delete_link_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 372, \"extattr_get_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 357, \"extattr_get_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 413, \"extattr_get_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 437, \"extattr_list_fd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 438, \"extattr_list_file_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 439, \"extattr_list_link_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 371, \"extattr_set_fd_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 356, \"extattr_set_file_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 412, \"extattr_set_link_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 355, \"extattrctl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 592, \"exterrctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 489, \"faccessat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 13, \"fchdir_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 35, \"fchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 124, \"fchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n>> > +{ 490, \"fchmodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n>> > +{ 123, \"fchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 491, \"fchownat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 590, \"fchroot_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 92, \"fcntl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 550, \"fdatasync_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 492, \"fexecve_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 241, \"ffclock_getcounter_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 243, \"ffclock_getestimate_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 242, \"ffclock_setestimate_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 565, \"fhlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 566, \"fhlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 298, \"fhopen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 567, \"fhreadlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n>> > +{ 553, \"fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 558, \"fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 131, \"flock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 2, \"fork_args\", NULL, NULL, NULL },\n>> > +{ 192, \"fpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 434, \"freebsd10__umtx_lock_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 435, \"freebsd10__umtx_unlock_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 42, \"freebsd10_pipe_args\", NULL, NULL, NULL },\n>> > +{ 299, \"freebsd11_fhstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 398, \"freebsd11_fhstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 189, \"freebsd11_fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 493, \"freebsd11_fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 397, \"freebsd11_fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 272, \"freebsd11_getdents_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n>> > +{ 196, \"freebsd11_getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 395, \"freebsd11_getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 363, \"freebsd11_kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\",\n>> NULL, NULL },\n>> > +{ 190, \"freebsd11_lstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 14, \"freebsd11_mknod_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 498, \"freebsd11_mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n>> > +{ 279, \"freebsd11_nfstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 280, \"freebsd11_nlstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 278, \"freebsd11_nstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 188, \"freebsd11_stat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 396, \"freebsd11_statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 72, \"freebsd11_vadvise_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 509, \"freebsd12_closefrom_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 482, \"freebsd12_shm_open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n>> > +{ 424, \"freebsd13_swapoff_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 79, \"freebsd14_getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 80, \"freebsd14_setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 580, \"fspacectl_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 551, \"fstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 552, \"fstatat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 556, \"fstatfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 95, \"fsync_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 480, \"ftruncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 568, \"funlinkat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 546, \"futimens_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 206, \"futimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 494, \"futimesat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 451, \"getaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 449, \"getaudit_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 447, \"getauid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 421, \"getcontext_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 554, \"getdirentries_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n>> > +{ 89, \"getdtablesize_args\", NULL, NULL, NULL },\n>> > +{ 43, \"getegid_args\", NULL, NULL, NULL },\n>> > +{ 25, \"geteuid_args\", NULL, NULL, NULL },\n>> > +{ 161, \"getfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 564, \"getfhat_args\", \"%s(%#x, %s, %#x, %#x)\", NULL, NULL },\n>> > +{ 557, \"getfsstat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 47, \"getgid_args\", NULL, NULL, NULL },\n>> > +{ 595, \"getgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 86, \"getitimer_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 49, \"getlogin_args\", \"%s(%s, %#x)\", NULL, NULL },\n>> > +{ 523, \"getloginclass_args\", \"%s(%s, %#x)\", NULL, NULL },\n>> > +{ 31, \"getpeername_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 207, \"getpgid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 81, \"getpgrp_args\", NULL, NULL, NULL },\n>> > +{ 20, \"getpid_args\", NULL, NULL, NULL },\n>> > +{ 39, \"getppid_args\", NULL, NULL, NULL },\n>> > +{ 100, \"getpriority_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 563, \"getrandom_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 361, \"getresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 360, \"getresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 194, \"getrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 589, \"getrlimitusage_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 117, \"getrusage_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 310, \"getsid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 32, \"getsockname_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 118, \"getsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 116, \"gettimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 24, \"getuid_args\", NULL, NULL, NULL },\n>> > +{ 593, \"inotify_add_watch_at_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 594, \"inotify_rm_watch_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 54, \"ioctl_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n>> > +{ 253, \"issetugid_args\", NULL, NULL, NULL },\n>> > +{ 338, \"jail_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 436, \"jail_attach_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 597, \"jail_attach_jd_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 506, \"jail_get_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 508, \"jail_remove_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 598, \"jail_remove_jd_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 507, \"jail_set_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 588, \"kcmp_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 390, \"kenv_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n>> > +{ 560, \"kevent_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 599, \"kexec_load_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 37, \"kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 306, \"kldfind_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 309, \"kldfirstmod_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 304, \"kldload_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 307, \"kldnext_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 308, \"kldstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 337, \"kldsym_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 305, \"kldunload_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 444, \"kldunloadf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 461, \"kmq_notify_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 457, \"kmq_open_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n>> > +{ 458, \"kmq_setattr_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 459, \"kmq_timedreceive_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 460, \"kmq_timedsend_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 462, \"kmq_unlink_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 362, \"kqueue_args\", NULL, NULL, NULL },\n>> > +{ 583, \"kqueuex_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 400, \"ksem_close_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 408, \"ksem_destroy_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 407, \"ksem_getvalue_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 404, \"ksem_init_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 405, \"ksem_open_args\", \"%s(%#x, %#x, %#x, %o, %#x)\", NULL, NULL },\n>> > +{ 401, \"ksem_post_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 441, \"ksem_timedwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 403, \"ksem_trywait_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 406, \"ksem_unlink_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 402, \"ksem_wait_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 235, \"ktimer_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 236, \"ktimer_delete_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 239, \"ktimer_getoverrun_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 238, \"ktimer_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 237, \"ktimer_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 45, \"ktrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 391, \"lchflags_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 274, \"lchmod_args\", \"%s(%#x, %o)\", NULL, NULL },\n>> > +{ 254, \"lchown_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 160, \"lgetfh_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 9, \"link_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 495, \"linkat_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 257, \"lio_listio_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 106, \"listen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 513, \"lpathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 478, \"lseek_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 276, \"lutimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 394, \"mac_syscall_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 75, \"madvise_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 584, \"membarrier_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 78, \"mincore_args\", \"%s(%#x, %#x, %s)\", NULL, NULL },\n>> > +{ 250, \"minherit_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 136, \"mkdir_args\", \"%s(%#x, %o)\", NULL, NULL },\n>> > +{ 496, \"mkdirat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n>> > +{ 132, \"mkfifo_args\", \"%s(%#x, %o)\", NULL, NULL },\n>> > +{ 497, \"mkfifoat_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n>> > +{ 559, \"mknodat_args\", \"%s(%#x, %#x, %o, %#x)\", NULL, NULL },\n>> > +{ 203, \"mlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 324, \"mlockall_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 477, \"mmap_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 303, \"modfind_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 302, \"modfnext_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 300, \"modnext_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 301, \"modstat_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 21, \"mount_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 74, \"mprotect_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 511, \"msgctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 225, \"msgget_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 227, \"msgrcv_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 226, \"msgsnd_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 170, \"msgsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 65, \"msync_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 204, \"munlock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 325, \"munlockall_args\", NULL, NULL, NULL },\n>> > +{ 73, \"munmap_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 240, \"nanosleep_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 155, \"nfssvc_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 154, \"nlm_syscall_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 378, \"nmount_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 339, \"nnpfs_syscall_args\", \"%s(%#x, %s, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 176, \"ntp_adjtime_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 248, \"ntp_gettime_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 5, \"open_args\", \"%s(%#x, %#x, %o)\", NULL, NULL },\n>> > +{ 499, \"openat_args\", \"%s(%#x, %#x, %#x, %o)\", NULL, NULL },\n>> > +{ 191, \"pathconf_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 518, \"pdfork_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 520, \"pdgetpid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 519, \"pdkill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 600, \"pdrfork_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 601, \"pdwait_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 542, \"pipe2_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 209, \"poll_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 531, \"posix_fadvise_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 530, \"posix_fallocate_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 504, \"posix_openpt_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 545, \"ppoll_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 475, \"pread_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 289, \"preadv_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 544, \"procctl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 44, \"profil_args\", \"%s(%s, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 522, \"pselect_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 26, \"ptrace_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 476, \"pwrite_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 290, \"pwritev_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 148, \"quotactl_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 528, \"rctl_add_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 527, \"rctl_get_limits_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 525, \"rctl_get_racct_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 526, \"rctl_get_rules_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 529, \"rctl_remove_rule_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 3, \"read_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 58, \"readlink_args\", \"%s(%#x, %s, %#x)\", NULL, NULL },\n>> > +{ 500, \"readlinkat_args\", \"%s(%#x, %#x, %s, %#x)\", NULL, NULL },\n>> > +{ 120, \"readv_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 55, \"reboot_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 29, \"recvfrom_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL\n>> },\n>> > +{ 27, \"recvmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 128, \"rename_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 602, \"renameat2_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 501, \"renameat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 56, \"revoke_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 251, \"rfork_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 137, \"rmdir_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 576, \"rpctls_syscall_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 166, \"rtprio_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 466, \"rtprio_thread_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 332, \"sched_get_priority_max_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 333, \"sched_get_priority_min_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 581, \"sched_getcpu_args\", NULL, NULL, NULL },\n>> > +{ 328, \"sched_getparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 330, \"sched_getscheduler_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 334, \"sched_rr_get_interval_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 327, \"sched_setparam_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 329, \"sched_setscheduler_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 331, \"sched_yield_args\", NULL, NULL, NULL },\n>> > +{ 474, \"sctp_generic_recvmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x,\n>> %#x)\", NULL, NULL },\n>> > +{ 472, \"sctp_generic_sendmsg_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x,\n>> %#x)\", NULL, NULL },\n>> > +{ 473, \"sctp_generic_sendmsg_iov_args\", \"%s(%#x, %#x, %#x, %#x, %#x,\n>> %#x, %#x)\", NULL, NULL },\n>> > +{ 471, \"sctp_peeloff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 93, \"select_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 221, \"semget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 222, \"semop_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 169, \"semsys_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 393, \"sendfile_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x, %#x)\", NULL,\n>> NULL },\n>> > +{ 28, \"sendmsg_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 133, \"sendto_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 452, \"setaudit_addr_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 450, \"setaudit_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 448, \"setauid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 422, \"setcontext_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 591, \"setcred_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 182, \"setegid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 183, \"seteuid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 175, \"setfib_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 181, \"setgid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 596, \"setgroups_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 83, \"setitimer_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 50, \"setlogin_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 524, \"setloginclass_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 82, \"setpgid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 96, \"setpriority_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 127, \"setregid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 312, \"setresgid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 311, \"setresuid_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 126, \"setreuid_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 195, \"setrlimit_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 147, \"setsid_args\", NULL, NULL, NULL },\n>> > +{ 105, \"setsockopt_args\", \"%s(%#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 122, \"settimeofday_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 23, \"setuid_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 571, \"shm_open2_args\", \"%s(%#x, %#x, %o, %#x, %#x)\", NULL, NULL },\n>> > +{ 572, \"shm_rename_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 483, \"shm_unlink_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 228, \"shmat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 512, \"shmctl_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 230, \"shmdt_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 231, \"shmget_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 171, \"shmsys_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 134, \"shutdown_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 416, \"sigaction_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 53, \"sigaltstack_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 573, \"sigfastblock_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 343, \"sigpending_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 340, \"sigprocmask_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 456, \"sigqueue_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 417, \"sigreturn_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 341, \"sigsuspend_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 345, \"sigtimedwait_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 429, \"sigwait_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 346, \"sigwaitinfo_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 97, \"socket_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 135, \"socketpair_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 555, \"statfs_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 423, \"swapcontext_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 582, \"swapoff_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 85, \"swapon_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 57, \"symlink_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 502, \"symlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 36, \"sync_args\", NULL, NULL, NULL },\n>> > +{ 165, \"sysarch_args\", \"%s(%#x, %s)\", NULL, NULL },\n>> > +{ 430, \"thr_create_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 431, \"thr_exit_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 481, \"thr_kill2_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 433, \"thr_kill_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 455, \"thr_new_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 432, \"thr_self_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 464, \"thr_set_name_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 442, \"thr_suspend_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 443, \"thr_wake_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 585, \"timerfd_create_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 586, \"timerfd_gettime_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 587, \"timerfd_settime_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 479, \"truncate_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 60, \"umask_args\", \"%s(%o)\", NULL, NULL },\n>> > +{ 205, \"undelete_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 10, \"unlink_args\", \"%s(%#x)\", NULL, NULL },\n>> > +{ 503, \"unlinkat_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 22, \"unmount_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 547, \"utimensat_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 138, \"utimes_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 335, \"utrace_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 392, \"uuidgen_args\", \"%s(%#x, %#x)\", NULL, NULL },\n>> > +{ 66, \"vfork_args\", NULL, NULL, NULL },\n>> > +{ 7, \"wait4_args\", \"%s(%#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 532, \"wait6_args\", \"%s(%#x, %#x, %#x, %#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 4, \"write_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 121, \"writev_args\", \"%s(%#x, %#x, %#x)\", NULL, NULL },\n>> > +{ 321, \"yield_args\", NULL, NULL, NULL },\n>> >\n>> > --\n>> > 2.52.0\n>> >\n>>\n>>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (2048-bit key;\n unprotected) header.d=bsdimp-com.20251104.gappssmtp.com\n header.i=@bsdimp-com.20251104.gappssmtp.com header.a=rsa-sha256\n header.s=20251104 header.b=yUR2rODB;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org\n (client-ip=209.51.188.17; helo=lists1p.gnu.org;\n envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n receiver=patchwork.ozlabs.org)"],"Received":["from lists1p.gnu.org (lists1p.gnu.org [209.51.188.17])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4g6G5Q6sd3z1yJv\n\tfor <incoming@patchwork.ozlabs.org>; Fri, 01 May 2026 13:01:13 +1000 (AEST)","from localhost ([::1] helo=lists1p.gnu.org)\n\tby lists1p.gnu.org with esmtp (Exim 4.90_1)\n\t(envelope-from <qemu-devel-bounces@nongnu.org>)\n\tid 1wIe7R-0000Ix-3I; Thu, 30 Apr 2026 23:00:45 -0400","from eggs.gnu.org ([2001:470:142:3::10])\n by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <wlosh@bsdimp.com>) id 1wIe7K-0000Ie-DT\n for qemu-devel@nongnu.org; Thu, 30 Apr 2026 23:00:38 -0400","from mail-yx1-xb12d.google.com ([2607:f8b0:4864:20::b12d])\n by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)\n (Exim 4.90_1) (envelope-from <wlosh@bsdimp.com>) id 1wIe7B-000500-Sz\n for qemu-devel@nongnu.org; Thu, 30 Apr 2026 23:00:37 -0400","by mail-yx1-xb12d.google.com with SMTP id\n 956f58d0204a3-65c305f381eso336957d50.3\n for <qemu-devel@nongnu.org>; Thu, 30 Apr 2026 20:00:27 -0700 (PDT)"],"ARC-Seal":"i=1; a=rsa-sha256; t=1777604427; cv=none;\n d=google.com; s=arc-20240605;\n b=b2kma6RQ+fQmBiuZ/SpX7MA5TpnX62sipWMi2fp62UfVi907gRn9msAN7NyXcYnpyd\n PM7jRMT/GjUH8SIa6vLnq+H35KgFi1d9AvjJlWhImdI/qMP0c+JDWG//4vHRxYKG3fEL\n CZcVggEteTD1jI0lV19IQO3iL+vbzpFiz1VQYDQU4zYVKd9apjgaA8dupsI5dfZu7zY4\n 4ESp8wr1rk+kBptMtCoXACdUGGiI91dITKAcb2+FQV9jrzXN4MJFWDeafzjrS/UNCOMI\n 8f+fCtT7niYdINKMoV4WnCaQdCr1fhgqqnvmRiTNk76CK4Au6xAGRvkCknW/BqfqjCVT\n 7/sA==","ARC-Message-Signature":"i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com;\n s=arc-20240605;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:dkim-signature;\n bh=8TVgbbpxkHLrusuF01rmOkHkuKzT9qf01Hq+f6K8dVk=;\n fh=xSF5Cn5IlcZ56sW4KBOds7v1bxJT9VYpErqAKX6G/rw=;\n b=QUmsbfMXQLvZ/0GEj/Uy0zeEN+bn6kBt9RUMO6yXD+kB37pLe0Maaat+Ga9AFsyQtH\n ppJUukNuTWMCGF8msm9q+KgLHN/18PDtmlhWEStFSWPDugb9QZqTqIfXYApMToEKf53f\n 4tmEc4x5Lz84wV9sx6TGRXLL6FB7GeHzHBYxhcWaFaiTZfJz1li+1A+LqbhqBvDH4PyV\n dprpzG6riICMaz3CjfRQ+1Swgp/fqQm8Ndute9O6+77EkhIIy+mUj7uhCkQMFCMmw6gA\n sRpMYjFUk/5ybC85VRi1TiPD7DttTqy0ogRsRpbHGDUDNJma1jc+cAsaQ1ggL10/8k8a\n G6Pg==; darn=nongnu.org","ARC-Authentication-Results":"i=1; mx.google.com; arc=none","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=bsdimp-com.20251104.gappssmtp.com; s=20251104; t=1777604427; x=1778209227;\n darn=nongnu.org;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:from:to:cc:subject:date:message-id:reply-to;\n bh=8TVgbbpxkHLrusuF01rmOkHkuKzT9qf01Hq+f6K8dVk=;\n b=yUR2rODBBy+w8su7WV1Zzao/4elc1UKPoc4GC+NuDoarzBX0fKLaiP6oaBdogOYvuz\n NwxNeJQOetsdGAa10hzaRRoOD4r6n+BW+cQCjhLa3QnhQ4bFSS61TkcEYaJkdPu5TGz+\n /+iB6uV0EJEGzTHTtw0v6/W4qQ1PT1zVkusH4e4Is5dT8IJCB7FTj2e6RpqaPtQ/ACv0\n s0F7+ily2wZ8JdkiFas5HC4ocghxABARWAhfBz0bsnD6sg+Ug3y2tmhua3hv+LP5wCmh\n jnuNR9Yu8oOnExxwUrmVUqfB177sEIvEgT97R/w+kDbyhWlvZf0Qe4RPqar1dHir3zxn\n C9YA==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n d=1e100.net; s=20251104; t=1777604427; x=1778209227;\n h=cc:to:subject:message-id:date:from:in-reply-to:references\n :mime-version:x-gm-gg:x-gm-message-state:from:to:cc:subject:date\n :message-id:reply-to;\n bh=8TVgbbpxkHLrusuF01rmOkHkuKzT9qf01Hq+f6K8dVk=;\n b=StLhIsCUfXNSpX8j+6U7AxGqK3N1WPUzgKD4B9Nr6PZfBDNheeWqdXK1uHT0vdpuba\n Y5OAEjayPd0gX0NGnWRS50Yasu4doIhtvmLMooN4gtj+JVDaywlEUZ3lqGMBCjhf6f5H\n xPJuk07/GyPBIfVCBXDffOLYnTUNR1K/QyJkytsw9QF9kga37flOrlSg3GRbWK2XROhk\n CDqIrLc2KbTLULCnf8FPsVbiuTAvPTRTc+LHmWG/uNEpcVupv8nX9BO7yAdFSS+hai+2\n 85jBdNM3DzqvSLywsKeAEbfOE6zPIC75exqbKoVzLunZLCvlvOtShwVaknR6EB4sXf9j\n u8Hw==","X-Gm-Message-State":"AOJu0YywoAoGQwDeh6/yJQxYTPjZuegJ9qgQWVUYmKeq1/NORsTyr77g\n kqshsswRI0oFR9upWeLUdbqCSpp+S8UhWd0l2++nJsPi9F7VWCyHMOfZGkTlXZuoDkzxkX8I0t0\n 05IwK+vAeVE8cqOlD9Hbfyh8Y7O4+vhyiYzLP9fD/FkfljfbCcuNtDnQ=","X-Gm-Gg":"AeBDieuz4BXEa1v65J2yMzYGSB4RdoSLhP3h6w6M8foQn9D+38oj67uhk16K8iieNNc\n 3z6tw8uwahs56EwM5VMyGO7dvNnZAo980z4JjZDwLg3oyxRV5W6a6bn68Aqw7SEHbc5XfhB/Edo\n zdeZHf8tjQ08KJpCxrIGcnxbE2YZqNiL92MYuvhaJjmaSfbmzVyrx9VJpu5QymBfDbfoxqiRRZy\n kfZFBDBykV5cAz3dkeeoVDVrQVhrOHPpjAudAYUSgN8ovxED8keu+Pb2CU5ZgVWSza1qOs2KIIO\n gmzR9buudiV8YcjhVg==","X-Received":"by 2002:a05:690e:d47:b0:650:1ddf:32c0 with SMTP id\n 956f58d0204a3-65c18f2fafbmr4562455d50.48.1777604426469; Thu, 30 Apr 2026\n 20:00:26 -0700 (PDT)","MIME-Version":"1.0","References":"<20260429-syscall-nr-v2-0-67a8d09dc13e@bsdimp.com>\n <20260429-syscall-nr-v2-5-67a8d09dc13e@bsdimp.com>\n <afMQRlu2_ONaBxCX@redhat.com>\n <CANCZdfqAFREcN_xvYYcVjWCih5m0Oe1GTeFxt4h3DLvJU78bcg@mail.gmail.com>","In-Reply-To":"\n <CANCZdfqAFREcN_xvYYcVjWCih5m0Oe1GTeFxt4h3DLvJU78bcg@mail.gmail.com>","From":"Warner Losh <imp@bsdimp.com>","Date":"Thu, 30 Apr 2026 21:00:13 -0600","X-Gm-Features":"AVHnY4JkmC7IHH4T9_kIVgjFz1MJ9m-o7qFxVe2AVtLr0sHbffDGSrb_hIMGFnQ","Message-ID":"\n <CANCZdfo=wEBECqRNs9YkTku+t3nb5+C0jKF0=uyXeS1BStSktg@mail.gmail.com>","Subject":"Re: [PATCH v2 5/5] bsd-user: Regnerate strace.list","To":"=?utf-8?q?Daniel_P=2E_Berrang=C3=A9?= <berrange@redhat.com>","Cc":"qemu-devel@nongnu.org, Kyle Evans <kevans@freebsd.org>,\n  Paolo Bonzini <pbonzini@redhat.com>,\n =?utf-8?q?Marc-Andr=C3=A9_Lureau?= <marcandre.lureau@redhat.com>,\n\t=?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= <philmd@linaro.org>,\n  Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>","Content-Type":"multipart/alternative; boundary=\"0000000000006426370650b8c8f3\"","Received-SPF":"none client-ip=2607:f8b0:4864:20::b12d;\n envelope-from=wlosh@bsdimp.com; helo=mail-yx1-xb12d.google.com","X-Spam_score_int":"-18","X-Spam_score":"-1.9","X-Spam_bar":"-","X-Spam_report":"(-1.9 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,\n DKIM_VALID=-0.1, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001,\n SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no","X-Spam_action":"no action","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"qemu development <qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<https://lists.nongnu.org/archive/html/qemu-devel>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org"}}]