aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-12-06 09:43:19 +0100
committerDmitry Vyukov <dvyukov@google.com>2024-12-11 15:22:17 +0000
commitbfb4b3275371a3b53cd6562fa06e5a9dfb5627b7 (patch)
tree36d9f70965d8cf1080480c0d56de0b49f096cae5
parenta9a0ffed7ef93dd86695100cf081438a918d6026 (diff)
pkg/compiler: add automatic meta
Mark the whole file with "meta automatic" instead of marking each syscall. This reduces size of descriptions + allows to do special things with the whole file (e.g. we already treat auto consts specially).
-rw-r--r--pkg/ast/testdata/all.txt1
-rw-r--r--pkg/compiler/compiler.go9
-rw-r--r--pkg/compiler/consts.go2
-rw-r--r--pkg/compiler/gen.go19
-rw-r--r--pkg/compiler/meta.go23
-rw-r--r--sys/linux/auto.txt1858
6 files changed, 963 insertions, 949 deletions
diff --git a/pkg/ast/testdata/all.txt b/pkg/ast/testdata/all.txt
index d5587c027..c04c274c3 100644
--- a/pkg/ast/testdata/all.txt
+++ b/pkg/ast/testdata/all.txt
@@ -1,6 +1,7 @@
# Copyright 2017 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
+meta automatic
meta noextract
meta arches["foo", "bar", "386"]
diff --git a/pkg/compiler/compiler.go b/pkg/compiler/compiler.go
index fa23ce6bf..713c21b08 100644
--- a/pkg/compiler/compiler.go
+++ b/pkg/compiler/compiler.go
@@ -7,7 +7,6 @@ package compiler
import (
"fmt"
- "path/filepath"
"strconv"
"strings"
@@ -140,7 +139,7 @@ type compiler struct {
structTypes map[string]prog.Type
structFiles map[*ast.Struct]map[string]ast.Pos
builtinConsts map[string]uint64
- fileMeta map[string]Meta
+ fileMetas map[string]Meta
recursiveQuery map[ast.Node]bool
}
@@ -159,13 +158,9 @@ func (comp *compiler) warning(pos ast.Pos, msg string, args ...interface{}) {
}
func (comp *compiler) filterArch() {
- if comp.fileMeta == nil {
- comp.fileMeta = comp.fileList()
- }
comp.desc = comp.desc.Filter(func(n ast.Node) bool {
pos, typ, name := n.Info()
- meta := comp.fileMeta[filepath.Base(pos.File)]
- if meta.SupportsArch(comp.target.Arch) {
+ if comp.fileMeta(pos).SupportsArch(comp.target.Arch) {
return true
}
switch n.(type) {
diff --git a/pkg/compiler/consts.go b/pkg/compiler/consts.go
index 5e1ed9188..bcbd40e52 100644
--- a/pkg/compiler/consts.go
+++ b/pkg/compiler/consts.go
@@ -119,7 +119,7 @@ func (comp *compiler) extractConsts() map[string]*ConstInfo {
comp.extractTypeConsts(ctx, decl)
}
}
- return convertConstInfo(ctx, comp.fileMeta)
+ return convertConstInfo(ctx, comp.fileMetas)
}
func foreachFieldAttrConst(n *ast.Struct, cb func(*ast.Type)) {
diff --git a/pkg/compiler/gen.go b/pkg/compiler/gen.go
index fb803875a..fb406b815 100644
--- a/pkg/compiler/gen.go
+++ b/pkg/compiler/gen.go
@@ -78,7 +78,7 @@ func (comp *compiler) collectCallArgSizes() map[string][]uint64 {
comp.error(arg.Pos, "%v arg %v is larger than pointer size", n.Name.Name, arg.Name.Name)
continue
}
- argID := fmt.Sprintf("%v|%v", getCallName(n), i)
+ argID := fmt.Sprintf("%v|%v", comp.getCallName(n), i)
if _, ok := argPos[argID]; !ok {
argSizes[i] = typ.Size()
argPos[argID] = arg.Pos
@@ -90,16 +90,18 @@ func (comp *compiler) collectCallArgSizes() map[string][]uint64 {
continue
}
}
- callArgSizes[getCallName(n)] = argSizes
+ callArgSizes[comp.getCallName(n)] = argSizes
}
return callArgSizes
}
-func getCallName(n *ast.Call) string {
- for _, attr := range n.Attrs {
- if attr.Ident == "automatic" {
- return n.Name.Name
- }
+func (comp *compiler) getCallName(n *ast.Call) string {
+ // getCallName is used for checking that all variants of the same syscall have same argument sizes
+ // for matching arguments. Automatically-generated syscalls may violate that condition,
+ // so for them we use full syscall name. As the result manual and automatic variants
+ // of the same syscall are not checked against each other.
+ if comp.fileMeta(n.Pos).Automatic {
+ return n.Name.Name
}
return n.CallName
}
@@ -109,7 +111,7 @@ func (comp *compiler) genSyscalls() []*prog.Syscall {
var calls []*prog.Syscall
for _, decl := range comp.desc.Nodes {
if n, ok := decl.(*ast.Call); ok && n.NR != ^uint64(0) {
- calls = append(calls, comp.genSyscall(n, callArgSizes[getCallName(n)]))
+ calls = append(calls, comp.genSyscall(n, callArgSizes[comp.getCallName(n)]))
}
}
// We assign SquashableElem here rather than during pointer type generation
@@ -132,6 +134,7 @@ func (comp *compiler) genSyscall(n *ast.Call, argSizes []uint64) *prog.Syscall {
ret = comp.genType(n.Ret, comp.ptrSize)
}
var attrs prog.SyscallAttrs
+ attrs.Automatic = comp.fileMeta(n.Pos).Automatic
intAttrs, _, stringAttrs := comp.parseAttrs(callAttrs, n, n.Attrs)
for desc, val := range intAttrs {
fld := reflect.ValueOf(&attrs).Elem().FieldByName(desc.Name)
diff --git a/pkg/compiler/meta.go b/pkg/compiler/meta.go
index f0221d0b9..a47ab8f0b 100644
--- a/pkg/compiler/meta.go
+++ b/pkg/compiler/meta.go
@@ -11,11 +11,12 @@ import (
)
type Meta struct {
- NoExtract bool
+ Automatic bool // automatically-generated descriptions
+ NoExtract bool // do not run syz-extract on the descriptions by default
Arches map[string]bool
}
-func (meta *Meta) SupportsArch(arch string) bool {
+func (meta Meta) SupportsArch(arch string) bool {
return len(meta.Arches) == 0 || meta.Arches[arch]
}
@@ -27,6 +28,13 @@ func FileList(desc *ast.Description, OS string, eh ast.ErrorHandler) map[string]
return nil
}
+func (comp *compiler) fileMeta(pos ast.Pos) Meta {
+ if comp.fileMetas == nil {
+ comp.fileMetas = comp.fileList()
+ }
+ return comp.fileMetas[filepath.Base(pos.File)]
+}
+
func (comp *compiler) fileList() map[string]Meta {
files := make(map[string]Meta)
for _, n := range comp.desc.Nodes {
@@ -44,6 +52,8 @@ func (comp *compiler) fileList() map[string]Meta {
break
}
switch n.Value.Ident {
+ case metaAutomatic.Names[0]:
+ meta.Automatic = true
case metaNoExtract.Names[0]:
meta.NoExtract = true
case metaArches.Names[0]:
@@ -55,17 +65,20 @@ func (comp *compiler) fileList() map[string]Meta {
}
files[file] = meta
}
- if comp.errors != 0 {
- return nil
- }
return files
}
var metaTypes = map[string]*typeDesc{
+ metaAutomatic.Names[0]: metaAutomatic,
metaNoExtract.Names[0]: metaNoExtract,
metaArches.Names[0]: metaArches,
}
+var metaAutomatic = &typeDesc{
+ Names: []string{"automatic"},
+ CantBeOpt: true,
+}
+
var metaNoExtract = &typeDesc{
Names: []string{"noextract"},
CantBeOpt: true,
diff --git a/sys/linux/auto.txt b/sys/linux/auto.txt
index 61529e5b0..6ba83a8a4 100644
--- a/sys/linux/auto.txt
+++ b/sys/linux/auto.txt
@@ -1,5 +1,7 @@
# Code generated by syz-declextract. DO NOT EDIT.
+meta automatic
+
include <include/vdso/bits.h>
include <include/linux/types.h>
include <drivers/net/ieee802154/mac802154_hwsim.h>
@@ -193,934 +195,934 @@ type msghdr_thermal_auto[CMD, POLICY] msghdr_netlink[netlink_msg_t[genl_thermal_
type msghdr_vdpa_auto[CMD, POLICY] msghdr_netlink[netlink_msg_t[genl_vdpa_family_id_auto, genlmsghdr_t[CMD], POLICY]]
type msghdr_wireguard_auto[CMD, POLICY] msghdr_netlink[netlink_msg_t[genl_wireguard_family_id_auto, genlmsghdr_t[CMD], POLICY]]
type smc_gen_nl_policy$auto_smc_netlink auto_todo
-_llseek$auto(fd fd, offset_high intptr, offset_low intptr, result ptr[inout, int64], whence int32) (automatic)
-_newselect$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tvp ptr[inout, __kernel_old_timeval$auto_record]) (automatic)
-accept$auto(fd fd, upeer_sockaddr ptr[inout, sockaddr$auto_record], upeer_addrlen ptr[inout, int32]) (automatic)
-accept4$auto(fd fd, upeer_sockaddr ptr[inout, sockaddr$auto_record], upeer_addrlen ptr[inout, int32], flags int32) (automatic)
-access$auto(filename ptr[in, filename], mode int32) (automatic)
-acct$auto(name ptr[in, string]) (automatic)
-add_key$auto(_type ptr[in, string], _description ptr[in, string], _payload ptr[in, array[auto_todo]], plen intptr, ringid int32) (automatic)
-adjtimex$auto(txc_p ptr[inout, __kernel_timex$auto_record]) (automatic)
-alarm$auto(seconds int32) (automatic)
-arch_prctl$auto(option int32, arg2 intptr) (automatic)
-arm_sync_file_range$auto(fd fd, flags int32, offset intptr, nbytes intptr) (automatic)
-bind$auto(fd fd, umyaddr ptr[inout, sockaddr$auto_record], addrlen int32) (automatic)
-bpf$auto(cmd int32, uattr ptr[inout, bpf_attr$auto_record], size int32) (automatic)
-brk$auto(brk intptr) (automatic)
-cachestat$auto(fd fd, cstat_range ptr[inout, cachestat_range$auto_record], cstat ptr[inout, cachestat$auto_record], flags int32) (automatic)
-capget$auto(header ptr[inout, __user_cap_header_struct$auto_record], dataptr ptr[inout, __user_cap_data_struct$auto_record]) (automatic)
-capset$auto(header ptr[inout, __user_cap_header_struct$auto_record], data ptr[inout, __user_cap_data_struct$auto_record]) (automatic)
-chdir$auto(filename ptr[in, filename]) (automatic)
-chmod$auto(filename ptr[in, filename], mode int16) (automatic)
-chown$auto(filename ptr[in, filename], user uid, group gid) (automatic)
-chown32$auto(filename ptr[in, filename], user uid, group gid) (automatic)
-chroot$auto(filename ptr[in, filename]) (automatic)
-clock_adjtime$auto(which_clock int32, utx ptr[inout, __kernel_timex$auto_record]) (automatic)
-clock_adjtime64$auto(which_clock int32, utx ptr[inout, __kernel_timex$auto_record]) (automatic)
-clock_getres$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-clock_getres_time64$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-clock_gettime$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-clock_gettime64$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-clock_nanosleep$auto(which_clock int32, flags int32, rqtp ptr[in, __kernel_timespec$auto_record], rmtp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-clock_nanosleep_time64$auto(which_clock int32, flags int32, rqtp ptr[in, __kernel_timespec$auto_record], rmtp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-clock_settime$auto(which_clock int32, tp ptr[in, __kernel_timespec$auto_record]) (automatic)
-clock_settime64$auto(which_clock int32, tp ptr[in, __kernel_timespec$auto_record]) (automatic)
-clone$auto(clone_flags intptr, newsp intptr, parent_tidptr ptr[inout, int32], child_tidptr ptr[inout, int32], tls intptr) (automatic)
-clone3$auto(uargs ptr[inout, clone_args$auto_record], size intptr) (automatic)
-close$auto(fd fd) (automatic)
-close_range$auto(fd fd, max_fd fd, flags int32) (automatic)
-connect$auto(fd fd, uservaddr ptr[inout, sockaddr$auto_record], addrlen int32) (automatic)
-copy_file_range$auto(fd_in fd, off_in ptr[inout, int64], fd_out fd, off_out ptr[inout, int64], len intptr, flags int32) (automatic)
-creat$auto(pathname ptr[in, filename], mode int16) (automatic)
-delete_module$auto(name_user ptr[in, string], flags int32) (automatic)
-dup$auto(fildes fd) (automatic)
-dup2$auto(oldfd fd, newfd fd) (automatic)
-dup3$auto(oldfd fd, newfd fd, flags int32) (automatic)
-epoll_create$auto(size int32) (automatic)
-epoll_create1$auto(flags int32) (automatic)
-epoll_ctl$auto(epfd fd, op int32, fd fd, event ptr[inout, epoll_event$auto_record]) (automatic)
-epoll_pwait$auto(epfd fd, events ptr[inout, epoll_event$auto_record], maxevents int32, timeout int32, sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-epoll_pwait2$auto(epfd fd, events ptr[inout, epoll_event$auto_record], maxevents int32, timeout ptr[in, __kernel_timespec$auto_record], sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-epoll_wait$auto(epfd fd, events ptr[inout, epoll_event$auto_record], maxevents int32, timeout int32) (automatic)
-eventfd$auto(count int32) (automatic)
-eventfd2$auto(count int32, flags int32) (automatic)
-execve$auto(filename ptr[in, filename], argv ptr[in, ptr[in, string]], envp ptr[in, ptr[in, string]]) (automatic)
-execveat$auto(fd fd, filename ptr[in, filename], argv ptr[in, ptr[in, string]], envp ptr[in, ptr[in, string]], flags int32) (automatic)
-exit$auto(error_code int32) (automatic)
-exit_group$auto(error_code int32) (automatic)
-faccessat$auto(dfd fd_dir, filename ptr[in, filename], mode int32) (automatic)
-faccessat2$auto(dfd fd_dir, filename ptr[in, filename], mode int32, flags int32) (automatic)
-fadvise64$auto(fd fd, offset intptr, len intptr, advice int32) (automatic)
-fadvise64_64$auto(fd fd, offset_low int32, offset_high int32, len_low int32, len_high int32, advice int32) (automatic)
-fallocate$auto(fd fd, mode int32, offset intptr, len intptr) (automatic)
-fanotify_init$auto(flags int32, event_f_flags int32) (automatic)
-fanotify_mark$auto(fanotify_fd fd, flags int32, mask intptr, dfd fd_dir, pathname ptr[in, filename]) (automatic)
-fchdir$auto(fd fd) (automatic)
-fchmod$auto(fd fd, mode int16) (automatic)
-fchmodat$auto(dfd fd_dir, filename ptr[in, filename], mode int16) (automatic)
-fchmodat2$auto(dfd fd_dir, filename ptr[in, filename], mode int16, flags int32) (automatic)
-fchown$auto(fd fd, user uid, group gid) (automatic)
-fchown32$auto(fd fd, user uid, group gid) (automatic)
-fchownat$auto(dfd fd_dir, filename ptr[in, filename], user uid, group gid, flag int32) (automatic)
-fcntl$auto(fd fd, cmd int32, arg intptr) (automatic)
-fdatasync$auto(fd fd) (automatic)
-fgetxattr$auto(fd fd, name ptr[in, string], value ptr[inout, array[auto_todo]], size intptr) (automatic)
-finit_module$auto(fd fd, uargs ptr[in, string], flags int32) (automatic)
-flistxattr$auto(fd fd, list ptr[inout, string], size intptr) (automatic)
-flock$auto(fd fd, cmd int32) (automatic)
-fremovexattr$auto(fd fd, name ptr[in, string]) (automatic)
-fsconfig$auto(fd fd, cmd int32, _key ptr[in, string], _value ptr[in, array[auto_todo]], aux int32) (automatic)
-fsetxattr$auto(fd fd, name ptr[in, string], value ptr[in, array[auto_todo]], size intptr, flags int32) (automatic)
-fsmount$auto(fs_fd fd, flags int32, attr_flags int32) (automatic)
-fsopen$auto(_fs_name ptr[in, string], flags int32) (automatic)
-fspick$auto(dfd fd_dir, path ptr[in, filename], flags int32) (automatic)
-fstat$auto(fd fd, statbuf ptr[inout, stat$auto_record]) (automatic)
-fstatfs$auto(fd fd, buf ptr[inout, statfs$auto_record]) (automatic)
-fstatfs64$auto(fd fd, sz intptr, buf ptr[inout, statfs64$auto_record]) (automatic)
-fsync$auto(fd fd) (automatic)
-ftruncate$auto(fd fd, length intptr) (automatic)
-ftruncate64$auto(fd fd, offset_low intptr, offset_high intptr) (automatic)
-futex$auto(uaddr ptr[inout, int32], op int32, val int32, utime ptr[in, __kernel_timespec$auto_record], uaddr2 ptr[inout, int32], val3 int32) (automatic)
-futex_requeue$auto(waiters ptr[inout, futex_waitv$auto_record], flags int32, nr_wake int32, nr_requeue int32) (automatic)
-futex_time64$auto(uaddr ptr[inout, int32], op int32, val int32, utime ptr[in, __kernel_timespec$auto_record], uaddr2 ptr[inout, int32], val3 int32) (automatic)
-futex_wait$auto(uaddr ptr[inout, array[auto_todo]], val intptr, mask intptr, flags int32, timeout ptr[inout, __kernel_timespec$auto_record], clockid int32) (automatic)
-futex_waitv$auto(waiters ptr[inout, futex_waitv$auto_record], nr_futexes int32, flags int32, timeout ptr[inout, __kernel_timespec$auto_record], clockid int32) (automatic)
-futex_wake$auto(uaddr ptr[inout, array[auto_todo]], mask intptr, nr int32, flags int32) (automatic)
-futimesat$auto(dfd fd_dir, filename ptr[in, filename], utimes ptr[inout, __kernel_old_timeval$auto_record]) (automatic)
-get_mempolicy$auto(policy ptr[inout, int32], nmask ptr[inout, intptr], maxnode intptr, addr intptr, flags intptr) (automatic)
-get_robust_list$auto(pid pid, head_ptr ptr[inout, ptr[inout, robust_list_head$auto_record]], len_ptr ptr[inout, intptr]) (automatic)
-get_thread_area$auto(u_info ptr[inout, user_desc$auto_record]) (automatic)
-getcpu$auto(cpup ptr[inout, int32], nodep ptr[inout, int32], unused ptr[inout, getcpu_cache$auto_record]) (automatic)
-getcwd$auto(buf ptr[inout, string], size intptr) (automatic)
-getdents$auto(fd fd, dirent ptr[inout, linux_dirent$auto_record], count int32) (automatic)
-getdents64$auto(fd fd, dirent ptr[inout, linux_dirent64$auto_record], count int32) (automatic)
-getgroups$auto(gidsetsize int32, grouplist ptr[inout, int32]) (automatic)
-getgroups32$auto(gidsetsize int32, grouplist ptr[inout, int32]) (automatic)
-getitimer$auto(which int32, value ptr[inout, __kernel_old_itimerval$auto_record]) (automatic)
-getpeername$auto(fd fd, usockaddr ptr[inout, sockaddr$auto_record], usockaddr_len ptr[inout, int32]) (automatic)
-getpgid$auto(pid pid) (automatic)
-getpriority$auto(which int32, who int32) (automatic)
-getrandom$auto(ubuf ptr[inout, string], len intptr, flags int32) (automatic)
-getresgid$auto(rgidp ptr[inout, int32], egidp ptr[inout, int32], sgidp ptr[inout, int32]) (automatic)
-getresgid32$auto(rgidp ptr[inout, int32], egidp ptr[inout, int32], sgidp ptr[inout, int32]) (automatic)
-getresuid$auto(ruidp ptr[inout, int32], euidp ptr[inout, int32], suidp ptr[inout, int32]) (automatic)
-getresuid32$auto(ruidp ptr[inout, int32], euidp ptr[inout, int32], suidp ptr[inout, int32]) (automatic)
-getrlimit$auto(_resource int32, rlim ptr[inout, rlimit$auto_record]) (automatic)
-getrusage$auto(who int32, ru ptr[inout, rusage$auto_record]) (automatic)
-getsid$auto(pid pid) (automatic)
-getsockname$auto(fd fd, usockaddr ptr[inout, sockaddr$auto_record], usockaddr_len ptr[inout, int32]) (automatic)
-getsockopt$auto(fd fd, level int32, optname int32, optval ptr[inout, string], optlen ptr[inout, int32]) (automatic)
-gettimeofday$auto(tv ptr[inout, __kernel_old_timeval$auto_record], tz ptr[inout, timezone$auto_record]) (automatic)
-getxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[inout, array[auto_todo]], size intptr) (automatic)
-getxattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, name ptr[in, string], uargs ptr[inout, xattr_args$auto_record], usize intptr) (automatic)
-init_module$auto(umod ptr[inout, array[auto_todo]], len intptr, uargs ptr[in, string]) (automatic)
-inotify_add_watch$auto(fd fd, pathname ptr[in, filename], mask int32) (automatic)
-inotify_init1$auto(flags int32) (automatic)
-inotify_rm_watch$auto(fd fd, wd int32) (automatic)
-io_cancel$auto(ctx_id intptr, iocb ptr[inout, iocb$auto_record], result ptr[inout, io_event$auto_record]) (automatic)
-io_destroy$auto(ctx intptr) (automatic)
-io_getevents$auto(ctx_id intptr, min_nr intptr, nr intptr, events ptr[inout, io_event$auto_record], timeout ptr[inout, __kernel_timespec$auto_record]) (automatic)
-io_pgetevents$auto(ctx_id intptr, min_nr intptr, nr intptr, events ptr[inout, io_event$auto_record], timeout ptr[inout, __kernel_timespec$auto_record], usig ptr[in, __aio_sigset$auto_record]) (automatic)
-io_pgetevents_time64$auto(ctx_id intptr, min_nr intptr, nr intptr, events ptr[inout, io_event$auto_record], timeout ptr[inout, __kernel_timespec$auto_record], usig ptr[in, __aio_sigset$auto_record]) (automatic)
-io_setup$auto(nr_events int32, ctxp ptr[inout, intptr]) (automatic)
-io_submit$auto(ctx_id intptr, nr intptr, iocbpp ptr[inout, ptr[inout, iocb$auto_record]]) (automatic)
-io_uring_enter$auto(fd fd, to_submit int32, min_complete int32, flags int32, argp ptr[in, array[auto_todo]], argsz intptr) (automatic)
-io_uring_register$auto(fd fd, opcode int32, arg ptr[inout, array[auto_todo]], nr_args int32) (automatic)
-io_uring_setup$auto(entries int32, params ptr[inout, io_uring_params$auto_record]) (automatic)
-ioctl$auto(fd fd, cmd int32, arg intptr) (automatic)
-ioperm$auto(from intptr, num intptr, turn_on int32) (automatic)
-iopl$auto(level int32) (automatic)
-ioprio_get$auto(which int32, who int32) (automatic)
-ioprio_set$auto(which int32, who int32, ioprio int32) (automatic)
-kcmp$auto(pid1 int32, pid2 int32, type int32, idx1 intptr, idx2 intptr) (automatic)
-kexec_load$auto(entry intptr, nr_segments intptr, segments ptr[inout, kexec_segment$auto_record], flags intptr) (automatic)
-keyctl$auto(option int32, arg2 intptr, arg3 intptr, arg4 intptr, arg5 intptr) (automatic)
-kill$auto(pid pid, sig int32) (automatic)
-landlock_add_rule$auto(ruleset_fd fd, rule_type flags[auto_landlock_rule_type], rule_attr ptr[in, array[auto_todo]], flags int32) (automatic)
-landlock_create_ruleset$auto(attr ptr[in, landlock_ruleset_attr$auto_record], size intptr, flags int32) (automatic)
-landlock_restrict_self$auto(ruleset_fd fd, flags int32) (automatic)
-lchown$auto(filename ptr[in, filename], user uid, group gid) (automatic)
-lchown32$auto(filename ptr[in, filename], user uid, group gid) (automatic)
-lgetxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[inout, array[auto_todo]], size intptr) (automatic)
-link$auto(oldname ptr[in, filename], newname ptr[in, filename]) (automatic)
-linkat$auto(olddfd fd_dir, oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename], flags int32) (automatic)
-listen$auto(fd fd, backlog int32) (automatic)
-listmount$auto(req ptr[in, mnt_id_req$auto_record], mnt_ids ptr[inout, int64], nr_mnt_ids intptr, flags int32) (automatic)
-listxattr$auto(pathname ptr[in, filename], list ptr[inout, string], size intptr) (automatic)
-listxattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, list ptr[inout, string], size intptr) (automatic)
-llistxattr$auto(pathname ptr[in, filename], list ptr[inout, string], size intptr) (automatic)
-lremovexattr$auto(pathname ptr[in, filename], name ptr[in, string]) (automatic)
-lseek$auto(fd fd, offset intptr, whence int32) (automatic)
-lsetxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[in, array[auto_todo]], size intptr, flags int32) (automatic)
-lsm_get_self_attr$auto(attr int32, ctx ptr[inout, lsm_ctx$auto_record], size ptr[inout, int32], flags int32) (automatic)
-lsm_list_modules$auto(ids ptr[inout, int64], size ptr[inout, int32], flags int32) (automatic)
-lsm_set_self_attr$auto(attr int32, ctx ptr[inout, lsm_ctx$auto_record], size int32, flags int32) (automatic)
-lstat$auto(filename ptr[in, filename], statbuf ptr[inout, stat$auto_record]) (automatic)
-madvise$auto(start intptr, len_in intptr, behavior int32) (automatic)
-map_shadow_stack$auto(addr intptr, size intptr, flags int32) (automatic)
-mbind$auto(start intptr, len intptr, mode intptr, nmask ptr[in, intptr], maxnode intptr, flags int32) (automatic)
-membarrier$auto(cmd int32, flags int32, cpu_id int32) (automatic)
-memfd_create$auto(uname ptr[in, string], flags int32) (automatic)
-memfd_secret$auto(flags int32) (automatic)
-migrate_pages$auto(pid pid, maxnode intptr, old_nodes ptr[in, intptr], new_nodes ptr[in, intptr]) (automatic)
-mincore$auto(start intptr, len intptr, vec ptr[inout, string]) (automatic)
-mkdir$auto(pathname ptr[in, filename], mode int16) (automatic)
-mkdirat$auto(dfd fd_dir, pathname ptr[in, filename], mode int16) (automatic)
-mknod$auto(filename ptr[in, filename], mode int16, dev int32) (automatic)
-mknodat$auto(dfd fd_dir, filename ptr[in, filename], mode int16, dev int32) (automatic)
-mlock$auto(start intptr, len intptr) (automatic)
-mlock2$auto(start intptr, len intptr, flags int32) (automatic)
-mlockall$auto(flags int32) (automatic)
-mmap$auto(addr intptr, len intptr, prot intptr, flags intptr, fd intptr, off intptr) (automatic)
-mmap2$auto(addr intptr, len intptr, prot intptr, flags intptr, fd intptr, pgoff intptr) (automatic)
-modify_ldt$auto(func int32, ptr ptr[inout, array[auto_todo]], bytecount intptr) (automatic)
-mount$auto(dev_name ptr[inout, devname], dir_name ptr[inout, filename], type ptr[inout, string], flags intptr, data ptr[inout, array[auto_todo]]) (automatic)
-mount_setattr$auto(dfd fd_dir, path ptr[in, filename], flags int32, uattr ptr[inout, mount_attr$auto_record], usize intptr) (automatic)
-move_mount$auto(from_dfd fd_dir, from_pathname ptr[in, filename], to_dfd fd_dir, to_pathname ptr[in, filename], flags int32) (automatic)
-move_pages$auto(pid pid, nr_pages intptr, pages ptr[inout, ptr[in, array[auto_todo]]], nodes ptr[in, int32], status ptr[inout, int32], flags int32) (automatic)
-mprotect$auto(start intptr, len intptr, prot intptr) (automatic)
-mq_getsetattr$auto(mqdes int32, u_mqstat ptr[in, mq_attr$auto_record], u_omqstat ptr[inout, mq_attr$auto_record]) (automatic)
-mq_notify$auto(mqdes int32, u_notification ptr[in, sigevent$auto_record]) (automatic)
-mq_open$auto(u_name ptr[in, string], oflag int32, mode int16, u_attr ptr[inout, mq_attr$auto_record]) (automatic)
-mq_timedreceive$auto(mqdes int32, u_msg_ptr ptr[inout, string], msg_len intptr, u_msg_prio ptr[inout, int32], u_abs_timeout ptr[in, __kernel_timespec$auto_record]) (automatic)
-mq_timedreceive_time64$auto(mqdes int32, u_msg_ptr ptr[inout, string], msg_len intptr, u_msg_prio ptr[inout, int32], u_abs_timeout ptr[in, __kernel_timespec$auto_record]) (automatic)
-mq_timedsend$auto(mqdes int32, u_msg_ptr ptr[in, string], msg_len intptr, msg_prio int32, u_abs_timeout ptr[in, __kernel_timespec$auto_record]) (automatic)
-mq_timedsend_time64$auto(mqdes int32, u_msg_ptr ptr[in, string], msg_len intptr, msg_prio int32, u_abs_timeout ptr[in, __kernel_timespec$auto_record]) (automatic)
-mq_unlink$auto(u_name ptr[in, string]) (automatic)
-mremap$auto(addr intptr, old_len intptr, new_len intptr, flags intptr, new_addr intptr) (automatic)
-mseal$auto(start intptr, len intptr, flags intptr) (automatic)
-msgctl$auto(msqid int32, cmd int32, buf ptr[inout, msqid_ds$auto_record]) (automatic)
-msgget$auto(key int32, msgflg int32) (automatic)
-msgrcv$auto(msqid int32, msgp ptr[inout, msgbuf$auto_record], msgsz intptr, msgtyp intptr, msgflg int32) (automatic)
-msgsnd$auto(msqid int32, msgp ptr[inout, msgbuf$auto_record], msgsz intptr, msgflg int32) (automatic)
-msync$auto(start intptr, len intptr, flags int32) (automatic)
-munlock$auto(start intptr, len intptr) (automatic)
-munmap$auto(addr intptr, len intptr) (automatic)
-name_to_handle_at$auto(dfd fd_dir, name ptr[in, string], handle ptr[inout, file_handle$auto_record], mnt_id ptr[inout, array[auto_todo]], flag int32) (automatic)
-nanosleep$auto(rqtp ptr[inout, __kernel_timespec$auto_record], rmtp ptr[inout, __kernel_timespec$auto_record]) (automatic)
-newfstatat$auto(dfd fd_dir, filename ptr[in, filename], statbuf ptr[inout, stat$auto_record], flag int32) (automatic)
-nice$auto(increment int32) (automatic)
-oldfstat$auto(fd fd, statbuf ptr[inout, __old_kernel_stat$auto_record]) (automatic)
-oldlstat$auto(filename ptr[in, filename], statbuf ptr[inout, __old_kernel_stat$auto_record]) (automatic)
-oldolduname$auto(name ptr[inout, oldold_utsname$auto_record]) (automatic)
-oldstat$auto(filename ptr[in, filename], statbuf ptr[inout, __old_kernel_stat$auto_record]) (automatic)
-olduname$auto(name ptr[inout, old_utsname$auto_record]) (automatic)
-open$auto(filename ptr[in, filename], flags int32, mode int16) (automatic)
-open_by_handle_at$auto(mountdirfd fd, handle ptr[inout, file_handle$auto_record], flags int32) (automatic)
-open_tree$auto(dfd fd_dir, filename ptr[in, filename], flags int32) (automatic)
-openat$auto(dfd fd_dir, filename ptr[in, filename], flags int32, mode int16) (automatic)
-openat2$auto(dfd fd_dir, filename ptr[in, filename], how ptr[inout, open_how$auto_record], usize intptr) (automatic)
-perf_event_open$auto(attr_uptr ptr[inout, perf_event_attr$auto_record], pid pid, cpu int32, group_fd fd, flags intptr) (automatic)
-personality$auto(personality int32) (automatic)
-pidfd_getfd$auto(pidfd fd, fd fd, flags int32) (automatic)
-pidfd_open$auto(pid pid, flags int32) (automatic)
-pidfd_send_signal$auto(pidfd fd, sig int32, info ptr[inout, siginfo$auto_record], flags int32) (automatic)
-pipe$auto(fildes ptr[inout, fd]) (automatic)
-pipe2$auto(fildes ptr[inout, fd], flags int32) (automatic)
-pivot_root$auto(new_root ptr[in, string], put_old ptr[in, string]) (automatic)
-pkey_alloc$auto(flags intptr, init_val intptr) (automatic)
-pkey_free$auto(pkey int32) (automatic)
-pkey_mprotect$auto(start intptr, len intptr, prot intptr, pkey int32) (automatic)
-poll$auto(ufds ptr[inout, pollfd$auto_record], nfds int32, timeout_msecs int32) (automatic)
-ppoll$auto(ufds ptr[inout, pollfd$auto_record], nfds int32, tsp ptr[inout, __kernel_timespec$auto_record], sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-ppoll_time64$auto(ufds ptr[inout, pollfd$auto_record], nfds int32, tsp ptr[inout, __kernel_timespec$auto_record], sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-prctl$auto(option int32, arg2 intptr, arg3 intptr, arg4 intptr, arg5 intptr) (automatic)
-pread64$auto(fd fd, buf ptr[inout, string], count intptr, pos intptr) (automatic)
-preadv$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr) (automatic)
-preadv2$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr, flags int32) (automatic)
-prlimit64$auto(pid pid, _resource int32, new_rlim ptr[in, rlimit64$auto_record], old_rlim ptr[inout, rlimit64$auto_record]) (automatic)
-process_madvise$auto(pidfd fd, vec ptr[in, iovec$auto_record], vlen intptr, behavior int32, flags int32) (automatic)
-process_mrelease$auto(pidfd fd, flags int32) (automatic)
-process_vm_readv$auto(pid pid, lvec ptr[in, iovec$auto_record], liovcnt intptr, rvec ptr[in, iovec$auto_record], riovcnt intptr, flags intptr) (automatic)
-process_vm_writev$auto(pid pid, lvec ptr[in, iovec$auto_record], liovcnt intptr, rvec ptr[in, iovec$auto_record], riovcnt intptr, flags intptr) (automatic)
-pselect6$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tsp ptr[inout, __kernel_timespec$auto_record], sig ptr[inout, array[auto_todo]]) (automatic)
-pselect6_time64$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tsp ptr[inout, __kernel_timespec$auto_record], sig ptr[inout, array[auto_todo]]) (automatic)
-ptrace$auto(request intptr, pid intptr, addr intptr, data intptr) (automatic)
-pwrite64$auto(fd fd, buf ptr[in, string], count intptr, pos intptr) (automatic)
-pwritev$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr) (automatic)
-pwritev2$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr, flags int32) (automatic)
-quotactl$auto(cmd int32, special ptr[in, string], id int32, addr ptr[inout, array[auto_todo]]) (automatic)
-quotactl_fd$auto(fd fd, cmd int32, id int32, addr ptr[inout, array[auto_todo]]) (automatic)
-read$auto(fd fd, buf ptr[inout, string], count intptr) (automatic)
-readahead$auto(fd fd, offset intptr, count intptr) (automatic)
-readdir$auto(fd fd, dirent ptr[inout, old_linux_dirent$auto_record], count int32) (automatic)
-readlink$auto(path ptr[in, filename], buf ptr[inout, string], bufsiz int32) (automatic)
-readlinkat$auto(dfd fd_dir, pathname ptr[in, filename], buf ptr[inout, string], bufsiz int32) (automatic)
-readv$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr) (automatic)
-recv$auto(fd fd, ubuf ptr[inout, array[auto_todo]], size intptr, flags int32) (automatic)
-recvfrom$auto(fd fd, ubuf ptr[inout, array[auto_todo]], size intptr, flags int32, addr ptr[inout, sockaddr$auto_record], addr_len ptr[inout, int32]) (automatic)
-recvmmsg$auto(fd fd, mmsg ptr[inout, mmsghdr$auto_record], vlen int32, flags int32, timeout ptr[inout, __kernel_timespec$auto_record]) (automatic)
-recvmmsg_time64$auto(fd fd, mmsg ptr[inout, mmsghdr$auto_record], vlen int32, flags int32, timeout ptr[inout, __kernel_timespec$auto_record]) (automatic)
-recvmsg$auto(fd fd, msg ptr[inout, user_msghdr$auto_record], flags int32) (automatic)
-remap_file_pages$auto(start intptr, size intptr, prot intptr, pgoff intptr, flags intptr) (automatic)
-removexattr$auto(pathname ptr[in, filename], name ptr[in, string]) (automatic)
-removexattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, name ptr[in, string]) (automatic)
-rename$auto(oldname ptr[in, filename], newname ptr[in, filename]) (automatic)
-renameat$auto(olddfd fd_dir, oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename]) (automatic)
-renameat2$auto(olddfd fd_dir, oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename], flags int32) (automatic)
-request_key$auto(_type ptr[in, string], _description ptr[in, string], _callout_info ptr[in, string], destringid int32) (automatic)
-rmdir$auto(pathname ptr[in, filename]) (automatic)
-rseq$auto(rseq ptr[inout, rseq$auto_record], rseq_len int32, flags int32, sig int32) (automatic)
-rt_sigaction$auto(sig int32, act ptr[in, sigaction$auto_record], oact ptr[inout, sigaction$auto_record], sigsetsize const[8]) (automatic)
-rt_sigpending$auto(uset ptr[inout, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-rt_sigprocmask$auto(how int32, nset ptr[inout, sigset_t$auto_record], oset ptr[inout, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-rt_sigqueueinfo$auto(pid pid, sig int32, uinfo ptr[inout, siginfo$auto_record]) (automatic)
-rt_sigsuspend$auto(unewset ptr[inout, sigset_t$auto_record], sigsetsize const[8]) (automatic)
-rt_sigtimedwait$auto(uthese ptr[in, sigset_t$auto_record], uinfo ptr[inout, siginfo$auto_record], uts ptr[in, __kernel_timespec$auto_record], sigsetsize const[8]) (automatic)
-rt_sigtimedwait_time64$auto(uthese ptr[in, sigset_t$auto_record], uinfo ptr[inout, siginfo$auto_record], uts ptr[in, __kernel_timespec$auto_record], sigsetsize const[8]) (automatic)
-rt_tgsigqueueinfo$auto(tgid pid, pid pid, sig int32, uinfo ptr[inout, siginfo$auto_record]) (automatic)
-sched_get_priority_max$auto(policy int32) (automatic)
-sched_get_priority_min$auto(policy int32) (automatic)
-sched_getaffinity$auto(pid pid, len int32, user_mask_ptr ptr[inout, intptr]) (automatic)
-sched_getattr$auto(pid pid, uattr ptr[inout, sched_attr$auto_record], usize int32, flags int32) (automatic)
-sched_getparam$auto(pid pid, param ptr[inout, sched_param$auto_record]) (automatic)
-sched_getscheduler$auto(pid pid) (automatic)
-sched_rr_get_interval$auto(pid pid, interval ptr[inout, __kernel_timespec$auto_record]) (automatic)
-sched_rr_get_interval_time64$auto(pid pid, interval ptr[inout, __kernel_timespec$auto_record]) (automatic)
-sched_setaffinity$auto(pid pid, len int32, user_mask_ptr ptr[inout, intptr]) (automatic)
-sched_setattr$auto(pid pid, uattr ptr[inout, sched_attr$auto_record], flags int32) (automatic)
-sched_setparam$auto(pid pid, param ptr[inout, sched_param$auto_record]) (automatic)
-sched_setscheduler$auto(pid pid, policy int32, param ptr[inout, sched_param$auto_record]) (automatic)
-seccomp$auto(op int32, flags int32, uargs ptr[inout, array[auto_todo]]) (automatic)
-select$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tvp ptr[inout, __kernel_old_timeval$auto_record]) (automatic)
-semctl$auto(semid int32, semnum int32, cmd int32, arg intptr) (automatic)
-semget$auto(key int32, nsems int32, semflg int32) (automatic)
-semop$auto(semid int32, tsops ptr[inout, sembuf$auto_record], nsops int32) (automatic)
-semtimedop$auto(semid int32, tsops ptr[inout, sembuf$auto_record], nsops int32, timeout ptr[in, __kernel_timespec$auto_record]) (automatic)
-semtimedop_time64$auto(semid int32, tsops ptr[inout, sembuf$auto_record], nsops int32, timeout ptr[in, __kernel_timespec$auto_record]) (automatic)
-send$auto(fd fd, buff ptr[inout, array[auto_todo]], len intptr, flags int32) (automatic)
-sendfile$auto(out_fd fd, in_fd fd, offset ptr[inout, int64], count intptr) (automatic)
-sendfile64$auto(out_fd fd, in_fd fd, offset ptr[inout, int64], count intptr) (automatic)
-sendmmsg$auto(fd fd, mmsg ptr[inout, mmsghdr$auto_record], vlen int32, flags int32) (automatic)
-sendmsg$auto(fd fd, msg ptr[inout, user_msghdr$auto_record], flags int32) (automatic)
-sendmsg$auto_BATADV_CMD_GET_BLA_BACKBONE(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_BLA_BACKBONE, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_BLA_CLAIM(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_BLA_CLAIM, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_DAT_CACHE(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_DAT_CACHE, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_GATEWAYS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_GATEWAYS, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_HARDIF(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_HARDIF, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_MCAST_FLAGS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_MCAST_FLAGS, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_MESH(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_MESH, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_NEIGHBORS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_NEIGHBORS, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_ORIGINATORS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_ORIGINATORS, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_ROUTING_ALGOS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_ROUTING_ALGOS, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_TRANSTABLE_GLOBAL(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_TRANSTABLE_GLOBAL, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_TRANSTABLE_LOCAL(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_TRANSTABLE_LOCAL, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_GET_VLAN(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_VLAN, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_SET_HARDIF(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_SET_HARDIF, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_SET_MESH(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_SET_MESH, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_SET_VLAN(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_SET_VLAN, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_TP_METER(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_TP_METER, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_BATADV_CMD_TP_METER_CANCEL(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_TP_METER_CANCEL, batadv_netlink_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_CGROUPSTATS_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_TASKSTATS_auto[CGROUPSTATS_CMD_GET, cgroupstats_cmd_get_policy$auto_taskstats]], f flags[send_flags]) (automatic)
-sendmsg$auto_CIFS_GENL_CMD_SWN_NOTIFY(fd sock_nl_generic, msg ptr[in, msghdr_cifs_auto[CIFS_GENL_CMD_SWN_NOTIFY, cifs_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_CTRL_CMD_GETFAMILY(fd sock_nl_generic, msg ptr[in, msghdr_nlctrl_auto[CTRL_CMD_GETFAMILY, ctrl_policy_family$auto_genetlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_CTRL_CMD_GETPOLICY(fd sock_nl_generic, msg ptr[in, msghdr_nlctrl_auto[CTRL_CMD_GETPOLICY, ctrl_policy_policy$auto_genetlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_CABLE_TEST_ACT(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CABLE_TEST_ACT, ethnl_cable_test_act_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_CABLE_TEST_TDR_ACT(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CABLE_TEST_TDR_ACT, ethnl_cable_test_tdr_act_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_CHANNELS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CHANNELS_GET, ethnl_channels_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_CHANNELS_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CHANNELS_SET, ethnl_channels_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_COALESCE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_COALESCE_GET, ethnl_coalesce_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_COALESCE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_COALESCE_SET, ethnl_coalesce_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_DEBUG_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_DEBUG_GET, ethnl_debug_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_DEBUG_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_DEBUG_SET, ethnl_debug_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_EEE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_EEE_GET, ethnl_eee_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_EEE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_EEE_SET, ethnl_eee_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_FEATURES_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEATURES_GET, ethnl_features_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_FEATURES_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEATURES_SET, ethnl_features_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_FEC_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEC_GET, ethnl_fec_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_FEC_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEC_SET, ethnl_fec_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_LINKINFO_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKINFO_GET, ethnl_linkinfo_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_LINKINFO_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKINFO_SET, ethnl_linkinfo_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_LINKMODES_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKMODES_GET, ethnl_linkmodes_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_LINKMODES_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKMODES_SET, ethnl_linkmodes_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_LINKSTATE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKSTATE_GET, ethnl_linkstate_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_MM_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MM_GET, ethnl_mm_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_MM_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MM_SET, ethnl_mm_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_MODULE_EEPROM_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_EEPROM_GET, ethnl_module_eeprom_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_MODULE_FW_FLASH_ACT(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_FW_FLASH_ACT, ethnl_module_fw_flash_act_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_MODULE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_GET, ethnl_module_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_MODULE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_SET, ethnl_module_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PAUSE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PAUSE_GET, ethnl_pause_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PAUSE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PAUSE_SET, ethnl_pause_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PHC_VCLOCKS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PHC_VCLOCKS_GET, ethnl_phc_vclocks_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PHY_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PHY_GET, ethnl_phy_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PLCA_GET_CFG(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PLCA_GET_CFG, ethnl_plca_get_cfg_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PLCA_GET_STATUS(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PLCA_GET_STATUS, ethnl_plca_get_status_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PLCA_SET_CFG(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PLCA_SET_CFG, ethnl_plca_set_cfg_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PRIVFLAGS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PRIVFLAGS_GET, ethnl_privflags_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PRIVFLAGS_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PRIVFLAGS_SET, ethnl_privflags_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PSE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PSE_GET, ethnl_pse_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_PSE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PSE_SET, ethnl_pse_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_RINGS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_RINGS_GET, ethnl_rings_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_RINGS_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_RINGS_SET, ethnl_rings_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_RSS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_RSS_GET, ethnl_rss_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_STATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_STATS_GET, ethnl_stats_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_STRSET_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_STRSET_GET, ethnl_strset_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_TSINFO_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_TSINFO_GET, ethnl_tsinfo_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_TUNNEL_INFO_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_TUNNEL_INFO_GET, ethnl_tunnel_info_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_WOL_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_WOL_GET, ethnl_wol_get_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_ETHTOOL_MSG_WOL_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_WOL_SET, ethnl_wol_set_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_GTP_CMD_DELPDP(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_DELPDP, gtp_genl_policy$auto_gtp]], f flags[send_flags]) (automatic)
-sendmsg$auto_GTP_CMD_ECHOREQ(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_ECHOREQ, gtp_genl_policy$auto_gtp]], f flags[send_flags]) (automatic)
-sendmsg$auto_GTP_CMD_GETPDP(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_GETPDP, gtp_genl_policy$auto_gtp]], f flags[send_flags]) (automatic)
-sendmsg$auto_GTP_CMD_NEWPDP(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_NEWPDP, gtp_genl_policy$auto_gtp]], f flags[send_flags]) (automatic)
-sendmsg$auto_HANDSHAKE_CMD_ACCEPT(fd sock_nl_generic, msg ptr[in, msghdr_handshake_auto[HANDSHAKE_CMD_ACCEPT, handshake_accept_nl_policy$auto_genl]], f flags[send_flags]) (automatic)
-sendmsg$auto_HANDSHAKE_CMD_DONE(fd sock_nl_generic, msg ptr[in, msghdr_handshake_auto[HANDSHAKE_CMD_DONE, handshake_done_nl_policy$auto_genl]], f flags[send_flags]) (automatic)
-sendmsg$auto_HSR_C_GET_NODE_LIST(fd sock_nl_generic, msg ptr[in, msghdr_HSR_auto[HSR_C_GET_NODE_LIST, hsr_genl_policy$auto_hsr_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_HSR_C_GET_NODE_STATUS(fd sock_nl_generic, msg ptr[in, msghdr_HSR_auto[HSR_C_GET_NODE_STATUS, hsr_genl_policy$auto_hsr_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_DEL_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_DEL_RADIO, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_FRAME, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_GET_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_GET_RADIO, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_NEW_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_NEW_RADIO, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_REGISTER(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_REGISTER, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_REPORT_PMSR(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_REPORT_PMSR, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_HWSIM_CMD_TX_INFO_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_TX_INFO_FRAME, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_ADD_IFACE(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_ADD_IFACE, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_ASSOCIATE_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_ASSOCIATE_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_ASSOCIATE_RESP(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_ASSOCIATE_RESP, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_DEL_IFACE(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_DEL_IFACE, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_DISASSOCIATE_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_DISASSOCIATE_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LIST_IFACE(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LIST_IFACE, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LIST_PHY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LIST_PHY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_ADD_DEV(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_DEV, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_ADD_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_DEVKEY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_ADD_KEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_KEY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_ADD_SECLEVEL(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_SECLEVEL, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_DEL_DEV(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_DEV, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_DEL_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_DEVKEY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_DEL_KEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_KEY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_DEL_SECLEVEL(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_SECLEVEL, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_GETPARAMS(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_GETPARAMS, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_LIST_DEV(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_DEV, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_LIST_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_DEVKEY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_LIST_KEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_KEY, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_LIST_SECLEVEL(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_SECLEVEL, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_LLSEC_SETPARAMS(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_SETPARAMS, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_SCAN_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_SCAN_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_SET_MACPARAMS(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_SET_MACPARAMS, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_IEEE802154_START_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_START_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_ILA_CMD_ADD(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_ADD, ila_nl_policy$auto_ila_main]], f flags[send_flags]) (automatic)
-sendmsg$auto_ILA_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_DEL, ila_nl_policy$auto_ila_main]], f flags[send_flags]) (automatic)
-sendmsg$auto_ILA_CMD_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_FLUSH, ila_nl_policy$auto_ila_main]], f flags[send_flags]) (automatic)
-sendmsg$auto_ILA_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_GET, ila_nl_policy$auto_ila_main]], f flags[send_flags]) (automatic)
-sendmsg$auto_IOAM6_CMD_ADD_NAMESPACE(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_ADD_NAMESPACE, ioam6_genl_policy_addns$auto_ioam6]], f flags[send_flags]) (automatic)
-sendmsg$auto_IOAM6_CMD_ADD_SCHEMA(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_ADD_SCHEMA, ioam6_genl_policy_addsc$auto_ioam6]], f flags[send_flags]) (automatic)
-sendmsg$auto_IOAM6_CMD_DEL_NAMESPACE(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_DEL_NAMESPACE, ioam6_genl_policy_delns$auto_ioam6]], f flags[send_flags]) (automatic)
-sendmsg$auto_IOAM6_CMD_DEL_SCHEMA(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_DEL_SCHEMA, ioam6_genl_policy_delsc$auto_ioam6]], f flags[send_flags]) (automatic)
-sendmsg$auto_IOAM6_CMD_NS_SET_SCHEMA(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_NS_SET_SCHEMA, ioam6_genl_policy_ns_sc$auto_ioam6]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_DEL_DAEMON(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_DEL_DAEMON, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_DEL_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_DEL_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_DEL_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_DEL_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_FLUSH, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_GET_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_CONFIG, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_GET_DAEMON(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_DAEMON, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_GET_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_GET_INFO(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_INFO, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_GET_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_NEW_DAEMON(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_NEW_DAEMON, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_NEW_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_NEW_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_NEW_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_NEW_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_SET_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_SET_CONFIG, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_SET_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_SET_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_SET_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_SET_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_IPVS_CMD_ZERO(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_ZERO, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_NOOP(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_NOOP, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_SESSION_CREATE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_CREATE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_SESSION_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_DELETE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_SESSION_GET(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_GET, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_SESSION_MODIFY(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_MODIFY, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_TUNNEL_CREATE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_CREATE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_TUNNEL_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_DELETE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_TUNNEL_GET(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_GET, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_L2TP_CMD_TUNNEL_MODIFY(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_MODIFY, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_MAC802154_HWSIM_CMD_DEL_EDGE(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_DEL_EDGE, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_MAC802154_HWSIM_CMD_DEL_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_DEL_RADIO, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_MAC802154_HWSIM_CMD_GET_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_GET_RADIO, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_MAC802154_HWSIM_CMD_NEW_EDGE(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_NEW_EDGE, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_MAC802154_HWSIM_CMD_NEW_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_NEW_RADIO, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_MAC802154_HWSIM_CMD_SET_EDGE(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_SET_EDGE, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_ADD_RXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_ADD_RXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_ADD_RXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_ADD_RXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_ADD_TXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_ADD_TXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_DEL_RXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_DEL_RXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_DEL_RXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_DEL_RXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_DEL_TXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_DEL_TXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_GET_TXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_GET_TXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_UPD_OFFLOAD(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_OFFLOAD, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_UPD_RXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_RXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_UPD_RXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_RXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_MACSEC_CMD_UPD_TXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_TXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags]) (automatic)
-sendmsg$auto_NBD_CMD_CONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_CONNECT, nbd_attr_policy$auto_nbd]], f flags[send_flags]) (automatic)
-sendmsg$auto_NBD_CMD_DISCONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_DISCONNECT, nbd_attr_policy$auto_nbd]], f flags[send_flags]) (automatic)
-sendmsg$auto_NBD_CMD_RECONFIGURE(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_RECONFIGURE, nbd_attr_policy$auto_nbd]], f flags[send_flags]) (automatic)
-sendmsg$auto_NBD_CMD_STATUS(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_STATUS, nbd_attr_policy$auto_nbd]], f flags[send_flags]) (automatic)
-sendmsg$auto_NCSI_CMD_CLEAR_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_CLEAR_INTERFACE, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NCSI_CMD_PKG_INFO(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_PKG_INFO, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NCSI_CMD_SEND_CMD(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SEND_CMD, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NCSI_CMD_SET_CHANNEL_MASK(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SET_CHANNEL_MASK, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NCSI_CMD_SET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SET_INTERFACE, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NCSI_CMD_SET_PACKAGE_MASK(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SET_PACKAGE_MASK, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_BIND_RX(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_BIND_RX, netdev_bind_rx_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_DEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_DEV_GET, netdev_dev_get_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_NAPI_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_NAPI_GET, netdev_napi_get_do_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_NAPI_GET0(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_NAPI_GET, netdev_napi_get_dump_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_NAPI_SET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_NAPI_SET, netdev_napi_set_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_PAGE_POOL_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_PAGE_POOL_GET, netdev_page_pool_get_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_QSTATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_QSTATS_GET, netdev_qstats_get_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_QUEUE_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_QUEUE_GET, netdev_queue_get_do_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NETDEV_CMD_QUEUE_GET0(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_QUEUE_GET, netdev_queue_get_dump_nl_policy$auto_netdev_genl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_DM_CMD_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_CONFIG, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_DM_CMD_CONFIG_GET(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_CONFIG_GET, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_DM_CMD_START(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_START, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_DM_CMD_STATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_STATS_GET, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_DM_CMD_STOP(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_STOP, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_CAP_GET(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_CAP_GET, net_shaper_cap_get_do_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_CAP_GET0(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_CAP_GET, net_shaper_cap_get_dump_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_DELETE, net_shaper_delete_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_GET, net_shaper_get_do_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_GET0(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_GET, net_shaper_get_dump_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_GROUP(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_GROUP, net_shaper_group_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NET_SHAPER_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_SET, net_shaper_set_nl_policy$auto_shaper_nl_gen]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_ACTIVATE_TARGET(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_ACTIVATE_TARGET, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_DEACTIVATE_TARGET(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEACTIVATE_TARGET, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_DEP_LINK_DOWN(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEP_LINK_DOWN, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_DEP_LINK_UP(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEP_LINK_UP, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_DEV_DOWN(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEV_DOWN, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_DEV_UP(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEV_UP, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_DISABLE_SE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DISABLE_SE, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_ENABLE_SE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_ENABLE_SE, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_FW_DOWNLOAD(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_FW_DOWNLOAD, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_GET_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_GET_DEVICE, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_GET_SE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_GET_SE, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_GET_TARGET(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_GET_TARGET, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_LLC_GET_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_LLC_GET_PARAMS, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_LLC_SDREQ(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_LLC_SDREQ, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_LLC_SET_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_LLC_SET_PARAMS, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_SE_IO(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_SE_IO, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_START_POLL(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_START_POLL, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_STOP_POLL(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_STOP_POLL, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFC_CMD_VENDOR(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_VENDOR, nfc_genl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFSD_CMD_LISTENER_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_LISTENER_SET, nfsd_listener_set_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFSD_CMD_POOL_MODE_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_POOL_MODE_SET, nfsd_pool_mode_set_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFSD_CMD_THREADS_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_THREADS_SET, nfsd_threads_set_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NFSD_CMD_VERSION_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_VERSION_SET, nfsd_version_set_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_ABORT_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ABORT_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_ADD_LINK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_LINK, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_ADD_LINK_STA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_LINK_STA, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_ADD_NAN_FUNCTION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_NAN_FUNCTION, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_ADD_TX_TS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_TX_TS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_ASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ASSOCIATE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_AUTHENTICATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_AUTHENTICATE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CHANGE_NAN_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CHANGE_NAN_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CHANNEL_SWITCH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CHANNEL_SWITCH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_COLOR_CHANGE_REQUEST(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_COLOR_CHANGE_REQUEST, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CONNECT, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CONTROL_PORT_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CONTROL_PORT_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CRIT_PROTOCOL_START(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CRIT_PROTOCOL_START, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_CRIT_PROTOCOL_STOP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CRIT_PROTOCOL_STOP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEAUTHENTICATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEAUTHENTICATE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_NAN_FUNCTION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_NAN_FUNCTION, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_PMK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_PMK, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_PMKSA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_PMKSA, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DEL_TX_TS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_TX_TS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DISASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DISASSOCIATE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_DISCONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DISCONNECT, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_EXTERNAL_AUTH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_EXTERNAL_AUTH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_FLUSH_PMKSA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_FLUSH_PMKSA, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_FRAME_WAIT_CANCEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_FRAME_WAIT_CANCEL, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_COALESCE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_COALESCE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_FTM_RESPONDER_STATS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_FTM_RESPONDER_STATS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_MESH_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_MESH_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_MPP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_MPP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_POWER_SAVE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_POWER_SAVE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_PROTOCOL_FEATURES(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_PROTOCOL_FEATURES, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_REG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_REG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_SURVEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_SURVEY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_WIPHY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_WIPHY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_GET_WOWLAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_WOWLAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_JOIN_IBSS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_JOIN_IBSS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_JOIN_MESH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_JOIN_MESH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_JOIN_OCB(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_JOIN_OCB, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_LEAVE_IBSS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_LEAVE_IBSS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_LEAVE_MESH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_LEAVE_MESH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_LEAVE_OCB(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_LEAVE_OCB, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_MODIFY_LINK_STA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_MODIFY_LINK_STA, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_NEW_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_NEW_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_NEW_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_NEW_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_NOTIFY_RADAR(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NOTIFY_RADAR, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_PEER_MEASUREMENT_START(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_PEER_MEASUREMENT_START, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_PROBE_CLIENT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_PROBE_CLIENT, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_PROBE_MESH_LINK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_PROBE_MESH_LINK, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_RADAR_DETECT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_RADAR_DETECT, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_REGISTER_BEACONS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REGISTER_BEACONS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_REGISTER_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REGISTER_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_RELOAD_REGDB(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_RELOAD_REGDB, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_REMAIN_ON_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REMAIN_ON_CHANNEL, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_REMOVE_LINK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REMOVE_LINK, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_REMOVE_LINK_STA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REMOVE_LINK_STA, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_REQ_SET_REG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REQ_SET_REG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_BEACON(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_BEACON, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_BSS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_BSS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_CHANNEL, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_COALESCE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_COALESCE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_CQM(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_CQM, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_FILS_AAD(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_FILS_AAD, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_HW_TIMESTAMP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_HW_TIMESTAMP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_MAC_ACL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MAC_ACL, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_MCAST_RATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MCAST_RATE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_MESH_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MESH_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_MULTICAST_TO_UNICAST(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MULTICAST_TO_UNICAST, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_NOACK_MAP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_NOACK_MAP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_PMK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_PMK, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_PMKSA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_PMKSA, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_POWER_SAVE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_POWER_SAVE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_QOS_MAP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_QOS_MAP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_REG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_REG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_REKEY_OFFLOAD(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_REKEY_OFFLOAD, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_SAR_SPECS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_SAR_SPECS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_TID_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_TID_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_TID_TO_LINK_MAPPING(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_TID_TO_LINK_MAPPING, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_TX_BITRATE_MASK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_TX_BITRATE_MASK, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_WIPHY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_WIPHY, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_WIPHY_NETNS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_WIPHY_NETNS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_SET_WOWLAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_WOWLAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_START_AP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_AP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_START_NAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_NAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_START_P2P_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_P2P_DEVICE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_START_SCHED_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_SCHED_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_STOP_AP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_AP, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_STOP_NAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_NAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_STOP_P2P_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_P2P_DEVICE, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_STOP_SCHED_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_SCHED_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_TDLS_CHANNEL_SWITCH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_CHANNEL_SWITCH, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_TDLS_MGMT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_MGMT, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_TDLS_OPER(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_OPER, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_TRIGGER_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TRIGGER_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_UNEXPECTED_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UNEXPECTED_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_UPDATE_CONNECT_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UPDATE_CONNECT_PARAMS, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_UPDATE_FT_IES(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UPDATE_FT_IES, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_UPDATE_OWE_INFO(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UPDATE_OWE_INFO, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL80211_CMD_VENDOR(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_VENDOR, nl80211_policy$auto_nl80211]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_ABORT_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_ABORT_SCAN, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_ASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_ASSOCIATE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_DEL_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_INTERFACE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_DEL_SEC_DEV(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_DEV, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_DEL_SEC_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_DEVKEY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_DEL_SEC_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_KEY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_DEL_SEC_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_DISASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DISASSOCIATE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_GET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_INTERFACE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_GET_SEC_DEV(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_DEV, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_GET_SEC_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_DEVKEY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_GET_SEC_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_KEY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_GET_SEC_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_GET_WPAN_PHY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_WPAN_PHY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_LIST_ASSOCIATIONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_LIST_ASSOCIATIONS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_NEW_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_INTERFACE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_NEW_SEC_DEV(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_DEV, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_NEW_SEC_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_DEVKEY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_NEW_SEC_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_KEY, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_NEW_SEC_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SEND_BEACONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SEND_BEACONS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_ACKREQ_DEFAULT(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_ACKREQ_DEFAULT, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_BACKOFF_EXPONENT(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_BACKOFF_EXPONENT, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_CCA_ED_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_CCA_ED_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_CCA_MODE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_CCA_MODE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_CHANNEL, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_LBT_MODE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_LBT_MODE, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_MAX_ASSOCIATIONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_MAX_ASSOCIATIONS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_MAX_CSMA_BACKOFFS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_MAX_CSMA_BACKOFFS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_MAX_FRAME_RETRIES(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_MAX_FRAME_RETRIES, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_PAN_ID(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_PAN_ID, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_SEC_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_SEC_PARAMS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_SHORT_ADDR(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_SHORT_ADDR, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_TX_POWER(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_TX_POWER, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_SET_WPAN_PHY_NETNS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_WPAN_PHY_NETNS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_STOP_BEACONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_STOP_BEACONS, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NL802154_CMD_TRIGGER_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_TRIGGER_SCAN, nl802154_policy$auto_nl802154]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CALIPSO_C_ADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_ADD, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CALIPSO_C_LIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_LIST, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CALIPSO_C_LISTALL(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_LISTALL, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CALIPSO_C_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_REMOVE, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CIPSOV4_C_ADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_ADD, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CIPSOV4_C_LIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_LIST, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CIPSOV4_C_LISTALL(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_LISTALL, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_CIPSOV4_C_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_REMOVE, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_ADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_ADD, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_ADDDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_ADDDEF, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_LISTALL(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_LISTALL, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_LISTDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_LISTDEF, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_PROTOCOLS(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_PROTOCOLS, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_REMOVE, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_REMOVEDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_REMOVEDEF, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_MGMT_C_VERSION(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_VERSION, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_ACCEPT(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_ACCEPT, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_LIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_LIST, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_STATICADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICADD, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_STATICADDDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICADDDEF, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_STATICLIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICLIST, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_STATICLISTDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICLISTDEF, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_STATICREMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICREMOVE, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_NLBL_UNLABEL_C_STATICREMOVEDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICREMOVEDEF, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_CT_LIMIT_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_ct_limit_auto[OVS_CT_LIMIT_CMD_DEL, ct_limit_policy$auto_conntrack]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_CT_LIMIT_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_ct_limit_auto[OVS_CT_LIMIT_CMD_GET, ct_limit_policy$auto_conntrack]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_CT_LIMIT_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_ct_limit_auto[OVS_CT_LIMIT_CMD_SET, ct_limit_policy$auto_conntrack]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_DP_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_DEL, datapath_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_DP_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_GET, datapath_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_DP_CMD_NEW(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_NEW, datapath_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_DP_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_SET, datapath_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_FLOW_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_DEL, flow_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_FLOW_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_GET, flow_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_FLOW_CMD_NEW(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_NEW, flow_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_FLOW_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_SET, flow_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_METER_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_DEL, meter_policy$auto_meter]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_METER_CMD_FEATURES(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_FEATURES, meter_policy$auto_meter]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_METER_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_GET, meter_policy$auto_meter]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_METER_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_SET, meter_policy$auto_meter]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_PACKET_CMD_EXECUTE(fd sock_nl_generic, msg ptr[in, msghdr_ovs_packet_auto[OVS_PACKET_CMD_EXECUTE, packet_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_VPORT_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_DEL, vport_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_VPORT_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_GET, vport_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_VPORT_CMD_NEW(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_NEW, vport_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_OVS_VPORT_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_SET, vport_policy$auto_datapath]], f flags[send_flags]) (automatic)
-sendmsg$auto_SEG6_CMD_DUMPHMAC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_DUMPHMAC, seg6_genl_policy$auto_seg6]], f flags[send_flags]) (automatic)
-sendmsg$auto_SEG6_CMD_GET_TUNSRC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_GET_TUNSRC, seg6_genl_policy$auto_seg6]], f flags[send_flags]) (automatic)
-sendmsg$auto_SEG6_CMD_SETHMAC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_SETHMAC, seg6_genl_policy$auto_seg6]], f flags[send_flags]) (automatic)
-sendmsg$auto_SEG6_CMD_SET_TUNSRC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_SET_TUNSRC, seg6_genl_policy$auto_seg6]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_ADD_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_ADD_UEID, smc_gen_ueid_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_DISABLE_HS_LIMITATION(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DISABLE_HS_LIMITATION, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_DISABLE_SEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DISABLE_SEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_DUMP_HS_LIMITATION(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DUMP_HS_LIMITATION, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_DUMP_SEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DUMP_SEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_DUMP_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DUMP_UEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_ENABLE_HS_LIMITATION(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_ENABLE_HS_LIMITATION, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_ENABLE_SEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_ENABLE_SEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_FLUSH_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_FLUSH_UEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_DEV_SMCD(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_DEV_SMCD, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_DEV_SMCR(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_DEV_SMCR, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_FBACK_STATS(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_FBACK_STATS, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_LGR_SMCD(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_LGR_SMCD, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_LGR_SMCR(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_LGR_SMCR, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_LINK_SMCR(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_LINK_SMCR, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_STATS(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_STATS, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_GET_SYS_INFO(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_SYS_INFO, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_NETLINK_REMOVE_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_REMOVE_UEID, smc_gen_ueid_policy$auto_smc_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_PNETID_ADD(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_ADD, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_PNETID_DEL(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_DEL, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_PNETID_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_FLUSH, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags]) (automatic)
-sendmsg$auto_SMC_PNETID_GET(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_GET, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags]) (automatic)
-sendmsg$auto_TASKSTATS_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_TASKSTATS_auto[TASKSTATS_CMD_GET, taskstats_cmd_get_policy$auto_taskstats]], f flags[send_flags]) (automatic)
-sendmsg$auto_TCP_METRICS_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_tcp_metrics_auto[TCP_METRICS_CMD_DEL, tcp_metrics_nl_policy$auto_tcp_metrics]], f flags[send_flags]) (automatic)
-sendmsg$auto_TCP_METRICS_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_tcp_metrics_auto[TCP_METRICS_CMD_GET, tcp_metrics_nl_policy$auto_tcp_metrics]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_CDEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_CDEV_GET, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_ADD(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_ADD, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_DELETE, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_FLUSH, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_GET(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_GET, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_GOV(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_GOV, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_ID(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_ID, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_TEMP(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_TEMP, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_TRIP(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_TRIP, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_ADDR_LEGACY_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_ADDR_LEGACY_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_BEARER_ADD(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_ADD, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_BEARER_DISABLE(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_DISABLE, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_BEARER_ENABLE(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_ENABLE, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_BEARER_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_BEARER_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_KEY_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_KEY_FLUSH, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_KEY_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_KEY_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_LINK_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_LINK_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_LINK_RESET_STATS(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_LINK_RESET_STATS, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_LINK_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_LINK_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_MEDIA_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MEDIA_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_MEDIA_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MEDIA_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_MON_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MON_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_MON_PEER_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MON_PEER_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_MON_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MON_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_NAME_TABLE_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NAME_TABLE_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_NET_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NET_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_NET_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NET_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_NODE_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NODE_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_PEER_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_PEER_REMOVE, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_PUBL_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_PUBL_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_SOCK_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_SOCK_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_TIPC_NL_UDP_GET_REMOTEIP(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_UDP_GET_REMOTEIP, tipc_nl_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_DEV_ATTR_SET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_ATTR_SET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_DEV_CONFIG_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_CONFIG_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_DEV_DEL(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_DEL, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_DEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_DEV_NEW(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_NEW, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_DEV_VSTATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_VSTATS_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_VDPA_CMD_MGMTDEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_MGMTDEV_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags]) (automatic)
-sendmsg$auto_WG_CMD_GET_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_wireguard_auto[WG_CMD_GET_DEVICE, device_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendmsg$auto_WG_CMD_SET_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_wireguard_auto[WG_CMD_SET_DEVICE, device_policy$auto_netlink]], f flags[send_flags]) (automatic)
-sendto$auto(fd fd, buff ptr[inout, array[auto_todo]], len intptr, flags int32, addr ptr[inout, sockaddr$auto_record], addr_len int32) (automatic)
-set_mempolicy$auto(mode int32, nmask ptr[in, intptr], maxnode intptr) (automatic)
-set_mempolicy_home_node$auto(start intptr, len intptr, home_node intptr, flags intptr) (automatic)
-set_robust_list$auto(head ptr[inout, robust_list_head$auto_record], len intptr) (automatic)
-set_thread_area$auto(u_info ptr[inout, user_desc$auto_record]) (automatic)
-set_tid_address$auto(tidptr ptr[inout, int32]) (automatic)
-setdomainname$auto(name ptr[inout, string], len int32) (automatic)
-setfsgid$auto(gid gid) (automatic)
-setfsgid32$auto(gid gid) (automatic)
-setfsuid$auto(uid uid) (automatic)
-setfsuid32$auto(uid uid) (automatic)
-setgid$auto(gid gid) (automatic)
-setgid32$auto(gid gid) (automatic)
-setgroups$auto(gidsetsize int32, grouplist ptr[inout, int32]) (automatic)
-setgroups32$auto(gidsetsize int32, grouplist ptr[inout, int32]) (automatic)
-sethostname$auto(name ptr[inout, string], len int32) (automatic)
-setitimer$auto(which int32, value ptr[inout, __kernel_old_itimerval$auto_record], ovalue ptr[inout, __kernel_old_itimerval$auto_record]) (automatic)
-setns$auto(fd fd, flags int32) (automatic)
-setpgid$auto(pid pid, pgid pid) (automatic)
-setpriority$auto(which int32, who int32, niceval int32) (automatic)
-setregid$auto(rgid gid, egid gid) (automatic)
-setregid32$auto(rgid gid, egid gid) (automatic)
-setresgid$auto(rgid gid, egid gid, sgid gid) (automatic)
-setresgid32$auto(rgid gid, egid gid, sgid gid) (automatic)
-setresuid$auto(ruid uid, euid uid, suid uid) (automatic)
-setresuid32$auto(ruid uid, euid uid, suid uid) (automatic)
-setreuid$auto(ruid uid, euid uid) (automatic)
-setreuid32$auto(ruid uid, euid uid) (automatic)
-setrlimit$auto(_resource int32, rlim ptr[inout, rlimit$auto_record]) (automatic)
-setsockopt$auto(fd fd, level int32, optname int32, optval ptr[inout, string], optlen int32) (automatic)
-settimeofday$auto(tv ptr[inout, __kernel_old_timeval$auto_record], tz ptr[inout, timezone$auto_record]) (automatic)
-setuid$auto(uid uid) (automatic)
-setuid32$auto(uid uid) (automatic)
-setxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[in, array[auto_todo]], size intptr, flags int32) (automatic)
-setxattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, name ptr[in, string], uargs ptr[in, xattr_args$auto_record], usize intptr) (automatic)
-shmat$auto(shmid int32, shmaddr ptr[inout, string], shmflg int32) (automatic)
-shmctl$auto(shmid int32, cmd int32, buf ptr[inout, shmid_ds$auto_record]) (automatic)
-shmdt$auto(shmaddr ptr[inout, string]) (automatic)
-shmget$auto(key int32, size intptr, shmflg int32) (automatic)
-shutdown$auto(fd fd, how int32) (automatic)
-sigaltstack$auto(uss ptr[in, sigaltstack$auto_record], uoss ptr[inout, sigaltstack$auto_record]) (automatic)
-signal$auto(sig int32, handler ptr[inout, ptr[in, auto_todo]]) (automatic)
-signalfd$auto(ufd fd, user_mask ptr[inout, sigset_t$auto_record], sizemask intptr) (automatic)
-signalfd4$auto(ufd fd, user_mask ptr[inout, sigset_t$auto_record], sizemask intptr, flags int32) (automatic)
-sigpending$auto(uset ptr[inout, intptr]) (automatic)
-sigprocmask$auto(how int32, nset ptr[inout, intptr], oset ptr[inout, intptr]) (automatic)
-sigsuspend$auto(unused1 const[0], unused2 const[0], mask intptr) (automatic)
-socket$auto(family int32, type int32, protocol int32) (automatic)
-socketcall$auto(call int32, args ptr[inout, intptr]) (automatic)
-socketpair$auto(family int32, type int32, protocol int32, usockvec ptr[inout, int32]) (automatic)
-splice$auto(fd_in fd, off_in ptr[inout, int64], fd_out fd, off_out ptr[inout, int64], len intptr, flags int32) (automatic)
-ssetmask$auto(newmask int32) (automatic)
-stat$auto(filename ptr[in, filename], statbuf ptr[inout, stat$auto_record]) (automatic)
-statfs$auto(pathname ptr[in, filename], buf ptr[inout, statfs$auto_record]) (automatic)
-statfs64$auto(pathname ptr[in, filename], sz intptr, buf ptr[inout, statfs64$auto_record]) (automatic)
-statmount$auto(req ptr[in, mnt_id_req$auto_record], buf ptr[inout, statmount$auto_record], bufsize intptr, flags int32) (automatic)
-statx$auto(dfd fd_dir, filename ptr[in, filename], flags int32, mask int32, buffer ptr[inout, statx$auto_record]) (automatic)
-stime$auto(tptr ptr[inout, int32]) (automatic)
-swapoff$auto(specialfile ptr[in, string]) (automatic)
-swapon$auto(specialfile ptr[in, string], swap_flags int32) (automatic)
-symlink$auto(oldname ptr[in, filename], newname ptr[in, filename]) (automatic)
-symlinkat$auto(oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename]) (automatic)
-sync_file_range$auto(fd fd, offset intptr, nbytes intptr, flags int32) (automatic)
-sync_file_range2$auto(fd fd, flags int32, offset intptr, nbytes intptr) (automatic)
-syncfs$auto(fd fd) (automatic)
-sysfs$auto(option int32, arg1 intptr, arg2 intptr) (automatic)
-sysinfo$auto(info ptr[inout, sysinfo$auto_record]) (automatic)
-syslog$auto(type int32, buf ptr[inout, string], len int32) (automatic)
-syz_genetlink_get_family_id$auto_802_15_4_MAC(name ptr[in, string["802.15.4 MAC"]], fd sock_nl_generic) genl_802_15_4_MAC_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_HSR(name ptr[in, string["HSR"]], fd sock_nl_generic) genl_HSR_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_IOAM6(name ptr[in, string["IOAM6"]], fd sock_nl_generic) genl_IOAM6_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_IPVS(name ptr[in, string["IPVS"]], fd sock_nl_generic) genl_IPVS_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_MAC80211_HWSIM(name ptr[in, string["MAC80211_HWSIM"]], fd sock_nl_generic) genl_MAC80211_HWSIM_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_MAC802154_HWSIM(name ptr[in, string["MAC802154_HWSIM"]], fd sock_nl_generic) genl_MAC802154_HWSIM_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_NCSI(name ptr[in, string["NCSI"]], fd sock_nl_generic) genl_NCSI_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_NET_DM(name ptr[in, string["NET_DM"]], fd sock_nl_generic) genl_NET_DM_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_NLBL_CALIPSO(name ptr[in, string["NLBL_CALIPSO"]], fd sock_nl_generic) genl_NLBL_CALIPSO_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_NLBL_CIPSOv4(name ptr[in, string["NLBL_CIPSOv4"]], fd sock_nl_generic) genl_NLBL_CIPSOv4_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_NLBL_MGMT(name ptr[in, string["NLBL_MGMT"]], fd sock_nl_generic) genl_NLBL_MGMT_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_NLBL_UNLBL(name ptr[in, string["NLBL_UNLBL"]], fd sock_nl_generic) genl_NLBL_UNLBL_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_SEG6(name ptr[in, string["SEG6"]], fd sock_nl_generic) genl_SEG6_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_SMC_GEN_NETLINK(name ptr[in, string["SMC_GEN_NETLINK"]], fd sock_nl_generic) genl_SMC_GEN_NETLINK_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_SMC_PNETID(name ptr[in, string["SMC_PNETID"]], fd sock_nl_generic) genl_SMC_PNETID_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_TASKSTATS(name ptr[in, string["TASKSTATS"]], fd sock_nl_generic) genl_TASKSTATS_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_TIPCv2(name ptr[in, string["TIPCv2"]], fd sock_nl_generic) genl_TIPCv2_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_batadv(name ptr[in, string["batadv"]], fd sock_nl_generic) genl_batadv_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_cifs(name ptr[in, string["cifs"]], fd sock_nl_generic) genl_cifs_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ethtool(name ptr[in, string["ethtool"]], fd sock_nl_generic) genl_ethtool_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_gtp(name ptr[in, string["gtp"]], fd sock_nl_generic) genl_gtp_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_handshake(name ptr[in, string["handshake"]], fd sock_nl_generic) genl_handshake_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ila(name ptr[in, string["ila"]], fd sock_nl_generic) genl_ila_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_l2tp(name ptr[in, string["l2tp"]], fd sock_nl_generic) genl_l2tp_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_macsec(name ptr[in, string["macsec"]], fd sock_nl_generic) genl_macsec_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_nbd(name ptr[in, string["nbd"]], fd sock_nl_generic) genl_nbd_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_net_shaper(name ptr[in, string["net-shaper"]], fd sock_nl_generic) genl_net_shaper_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_netdev(name ptr[in, string["netdev"]], fd sock_nl_generic) genl_netdev_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_nfc(name ptr[in, string["nfc"]], fd sock_nl_generic) genl_nfc_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_nfsd(name ptr[in, string["nfsd"]], fd sock_nl_generic) genl_nfsd_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_nl80211(name ptr[in, string["nl80211"]], fd sock_nl_generic) genl_nl80211_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_nl802154(name ptr[in, string["nl802154"]], fd sock_nl_generic) genl_nl802154_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_nlctrl(name ptr[in, string["nlctrl"]], fd sock_nl_generic) genl_nlctrl_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ovs_ct_limit(name ptr[in, string["ovs_ct_limit"]], fd sock_nl_generic) genl_ovs_ct_limit_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ovs_datapath(name ptr[in, string["ovs_datapath"]], fd sock_nl_generic) genl_ovs_datapath_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ovs_flow(name ptr[in, string["ovs_flow"]], fd sock_nl_generic) genl_ovs_flow_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ovs_meter(name ptr[in, string["ovs_meter"]], fd sock_nl_generic) genl_ovs_meter_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ovs_packet(name ptr[in, string["ovs_packet"]], fd sock_nl_generic) genl_ovs_packet_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_ovs_vport(name ptr[in, string["ovs_vport"]], fd sock_nl_generic) genl_ovs_vport_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_tcp_metrics(name ptr[in, string["tcp_metrics"]], fd sock_nl_generic) genl_tcp_metrics_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_thermal(name ptr[in, string["thermal"]], fd sock_nl_generic) genl_thermal_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_vdpa(name ptr[in, string["vdpa"]], fd sock_nl_generic) genl_vdpa_family_id_auto (automatic)
-syz_genetlink_get_family_id$auto_wireguard(name ptr[in, string["wireguard"]], fd sock_nl_generic) genl_wireguard_family_id_auto (automatic)
-tee$auto(fdin fd, fdout fd, len intptr, flags int32) (automatic)
-tgkill$auto(tgid pid, pid pid, sig int32) (automatic)
-time$auto(tloc ptr[inout, intptr]) (automatic)
-timer_create$auto(which_clock int32, timer_event_spec ptr[inout, sigevent$auto_record], created_timer_id ptr[inout, int32]) (automatic)
-timer_delete$auto(timer_id int32) (automatic)
-timer_getoverrun$auto(timer_id int32) (automatic)
-timer_gettime$auto(timer_id int32, setting ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timer_gettime64$auto(timer_id int32, setting ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timer_settime$auto(timer_id int32, flags int32, new_setting ptr[in, __kernel_itimerspec$auto_record], old_setting ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timer_settime64$auto(timer_id int32, flags int32, new_setting ptr[in, __kernel_itimerspec$auto_record], old_setting ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timerfd_create$auto(clockid int32, flags int32) (automatic)
-timerfd_gettime$auto(ufd fd, otmr ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timerfd_gettime64$auto(ufd fd, otmr ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timerfd_settime$auto(ufd fd, flags int32, utmr ptr[in, __kernel_itimerspec$auto_record], otmr ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-timerfd_settime64$auto(ufd fd, flags int32, utmr ptr[in, __kernel_itimerspec$auto_record], otmr ptr[inout, __kernel_itimerspec$auto_record]) (automatic)
-times$auto(tbuf ptr[inout, tms$auto_record]) (automatic)
-tkill$auto(pid pid, sig int32) (automatic)
-truncate$auto(path ptr[in, filename], length intptr) (automatic)
-truncate64$auto(filename ptr[in, filename], offset_low intptr, offset_high intptr) (automatic)
-ugetrlimit$auto(_resource int32, rlim ptr[inout, rlimit$auto_record]) (automatic)
-umask$auto(mask int32) (automatic)
-umount$auto(name ptr[inout, string]) (automatic)
-umount2$auto(name ptr[inout, string], flags int32) (automatic)
-uname$auto(name ptr[inout, new_utsname$auto_record]) (automatic)
-unlink$auto(pathname ptr[in, filename]) (automatic)
-unlinkat$auto(dfd fd_dir, pathname ptr[in, filename], flag int32) (automatic)
-unshare$auto(unshare_flags intptr) (automatic)
-userfaultfd$auto(flags int32) (automatic)
-ustat$auto(dev int32, ubuf ptr[inout, ustat$auto_record]) (automatic)
-utime$auto(filename ptr[inout, filename], times ptr[inout, utimbuf$auto_record]) (automatic)
-utimensat$auto(dfd fd_dir, filename ptr[in, filename], utimes ptr[inout, __kernel_timespec$auto_record], flags int32) (automatic)
-utimensat_time64$auto(dfd fd_dir, filename ptr[in, filename], utimes ptr[inout, __kernel_timespec$auto_record], flags int32) (automatic)
-utimes$auto(filename ptr[inout, filename], utimes ptr[inout, __kernel_old_timeval$auto_record]) (automatic)
-vmsplice$auto(fd fd, uiov ptr[in, iovec$auto_record], nr_segs intptr, flags int32) (automatic)
-wait4$auto(upid int32, stat_addr ptr[inout, int32], options int32, ru ptr[inout, rusage$auto_record]) (automatic)
-waitid$auto(which int32, upid int32, infop ptr[inout, siginfo$auto_record], options int32, ru ptr[inout, rusage$auto_record]) (automatic)
-waitpid$auto(pid pid, stat_addr ptr[inout, int32], options int32) (automatic)
-write$auto(fd fd, buf ptr[in, string], count intptr) (automatic)
-writev$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr) (automatic)
+_llseek$auto(fd fd, offset_high intptr, offset_low intptr, result ptr[inout, int64], whence int32)
+_newselect$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tvp ptr[inout, __kernel_old_timeval$auto_record])
+accept$auto(fd fd, upeer_sockaddr ptr[inout, sockaddr$auto_record], upeer_addrlen ptr[inout, int32])
+accept4$auto(fd fd, upeer_sockaddr ptr[inout, sockaddr$auto_record], upeer_addrlen ptr[inout, int32], flags int32)
+access$auto(filename ptr[in, filename], mode int32)
+acct$auto(name ptr[in, string])
+add_key$auto(_type ptr[in, string], _description ptr[in, string], _payload ptr[in, array[auto_todo]], plen intptr, ringid int32)
+adjtimex$auto(txc_p ptr[inout, __kernel_timex$auto_record])
+alarm$auto(seconds int32)
+arch_prctl$auto(option int32, arg2 intptr)
+arm_sync_file_range$auto(fd fd, flags int32, offset intptr, nbytes intptr)
+bind$auto(fd fd, umyaddr ptr[inout, sockaddr$auto_record], addrlen int32)
+bpf$auto(cmd int32, uattr ptr[inout, bpf_attr$auto_record], size int32)
+brk$auto(brk intptr)
+cachestat$auto(fd fd, cstat_range ptr[inout, cachestat_range$auto_record], cstat ptr[inout, cachestat$auto_record], flags int32)
+capget$auto(header ptr[inout, __user_cap_header_struct$auto_record], dataptr ptr[inout, __user_cap_data_struct$auto_record])
+capset$auto(header ptr[inout, __user_cap_header_struct$auto_record], data ptr[inout, __user_cap_data_struct$auto_record])
+chdir$auto(filename ptr[in, filename])
+chmod$auto(filename ptr[in, filename], mode int16)
+chown$auto(filename ptr[in, filename], user uid, group gid)
+chown32$auto(filename ptr[in, filename], user uid, group gid)
+chroot$auto(filename ptr[in, filename])
+clock_adjtime$auto(which_clock int32, utx ptr[inout, __kernel_timex$auto_record])
+clock_adjtime64$auto(which_clock int32, utx ptr[inout, __kernel_timex$auto_record])
+clock_getres$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record])
+clock_getres_time64$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record])
+clock_gettime$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record])
+clock_gettime64$auto(which_clock int32, tp ptr[inout, __kernel_timespec$auto_record])
+clock_nanosleep$auto(which_clock int32, flags int32, rqtp ptr[in, __kernel_timespec$auto_record], rmtp ptr[inout, __kernel_timespec$auto_record])
+clock_nanosleep_time64$auto(which_clock int32, flags int32, rqtp ptr[in, __kernel_timespec$auto_record], rmtp ptr[inout, __kernel_timespec$auto_record])
+clock_settime$auto(which_clock int32, tp ptr[in, __kernel_timespec$auto_record])
+clock_settime64$auto(which_clock int32, tp ptr[in, __kernel_timespec$auto_record])
+clone$auto(clone_flags intptr, newsp intptr, parent_tidptr ptr[inout, int32], child_tidptr ptr[inout, int32], tls intptr)
+clone3$auto(uargs ptr[inout, clone_args$auto_record], size intptr)
+close$auto(fd fd)
+close_range$auto(fd fd, max_fd fd, flags int32)
+connect$auto(fd fd, uservaddr ptr[inout, sockaddr$auto_record], addrlen int32)
+copy_file_range$auto(fd_in fd, off_in ptr[inout, int64], fd_out fd, off_out ptr[inout, int64], len intptr, flags int32)
+creat$auto(pathname ptr[in, filename], mode int16)
+delete_module$auto(name_user ptr[in, string], flags int32)
+dup$auto(fildes fd)
+dup2$auto(oldfd fd, newfd fd)
+dup3$auto(oldfd fd, newfd fd, flags int32)
+epoll_create$auto(size int32)
+epoll_create1$auto(flags int32)
+epoll_ctl$auto(epfd fd, op int32, fd fd, event ptr[inout, epoll_event$auto_record])
+epoll_pwait$auto(epfd fd, events ptr[inout, epoll_event$auto_record], maxevents int32, timeout int32, sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8])
+epoll_pwait2$auto(epfd fd, events ptr[inout, epoll_event$auto_record], maxevents int32, timeout ptr[in, __kernel_timespec$auto_record], sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8])
+epoll_wait$auto(epfd fd, events ptr[inout, epoll_event$auto_record], maxevents int32, timeout int32)
+eventfd$auto(count int32)
+eventfd2$auto(count int32, flags int32)
+execve$auto(filename ptr[in, filename], argv ptr[in, ptr[in, string]], envp ptr[in, ptr[in, string]])
+execveat$auto(fd fd, filename ptr[in, filename], argv ptr[in, ptr[in, string]], envp ptr[in, ptr[in, string]], flags int32)
+exit$auto(error_code int32)
+exit_group$auto(error_code int32)
+faccessat$auto(dfd fd_dir, filename ptr[in, filename], mode int32)
+faccessat2$auto(dfd fd_dir, filename ptr[in, filename], mode int32, flags int32)
+fadvise64$auto(fd fd, offset intptr, len intptr, advice int32)
+fadvise64_64$auto(fd fd, offset_low int32, offset_high int32, len_low int32, len_high int32, advice int32)
+fallocate$auto(fd fd, mode int32, offset intptr, len intptr)
+fanotify_init$auto(flags int32, event_f_flags int32)
+fanotify_mark$auto(fanotify_fd fd, flags int32, mask intptr, dfd fd_dir, pathname ptr[in, filename])
+fchdir$auto(fd fd)
+fchmod$auto(fd fd, mode int16)
+fchmodat$auto(dfd fd_dir, filename ptr[in, filename], mode int16)
+fchmodat2$auto(dfd fd_dir, filename ptr[in, filename], mode int16, flags int32)
+fchown$auto(fd fd, user uid, group gid)
+fchown32$auto(fd fd, user uid, group gid)
+fchownat$auto(dfd fd_dir, filename ptr[in, filename], user uid, group gid, flag int32)
+fcntl$auto(fd fd, cmd int32, arg intptr)
+fdatasync$auto(fd fd)
+fgetxattr$auto(fd fd, name ptr[in, string], value ptr[inout, array[auto_todo]], size intptr)
+finit_module$auto(fd fd, uargs ptr[in, string], flags int32)
+flistxattr$auto(fd fd, list ptr[inout, string], size intptr)
+flock$auto(fd fd, cmd int32)
+fremovexattr$auto(fd fd, name ptr[in, string])
+fsconfig$auto(fd fd, cmd int32, _key ptr[in, string], _value ptr[in, array[auto_todo]], aux int32)
+fsetxattr$auto(fd fd, name ptr[in, string], value ptr[in, array[auto_todo]], size intptr, flags int32)
+fsmount$auto(fs_fd fd, flags int32, attr_flags int32)
+fsopen$auto(_fs_name ptr[in, string], flags int32)
+fspick$auto(dfd fd_dir, path ptr[in, filename], flags int32)
+fstat$auto(fd fd, statbuf ptr[inout, stat$auto_record])
+fstatfs$auto(fd fd, buf ptr[inout, statfs$auto_record])
+fstatfs64$auto(fd fd, sz intptr, buf ptr[inout, statfs64$auto_record])
+fsync$auto(fd fd)
+ftruncate$auto(fd fd, length intptr)
+ftruncate64$auto(fd fd, offset_low intptr, offset_high intptr)
+futex$auto(uaddr ptr[inout, int32], op int32, val int32, utime ptr[in, __kernel_timespec$auto_record], uaddr2 ptr[inout, int32], val3 int32)
+futex_requeue$auto(waiters ptr[inout, futex_waitv$auto_record], flags int32, nr_wake int32, nr_requeue int32)
+futex_time64$auto(uaddr ptr[inout, int32], op int32, val int32, utime ptr[in, __kernel_timespec$auto_record], uaddr2 ptr[inout, int32], val3 int32)
+futex_wait$auto(uaddr ptr[inout, array[auto_todo]], val intptr, mask intptr, flags int32, timeout ptr[inout, __kernel_timespec$auto_record], clockid int32)
+futex_waitv$auto(waiters ptr[inout, futex_waitv$auto_record], nr_futexes int32, flags int32, timeout ptr[inout, __kernel_timespec$auto_record], clockid int32)
+futex_wake$auto(uaddr ptr[inout, array[auto_todo]], mask intptr, nr int32, flags int32)
+futimesat$auto(dfd fd_dir, filename ptr[in, filename], utimes ptr[inout, __kernel_old_timeval$auto_record])
+get_mempolicy$auto(policy ptr[inout, int32], nmask ptr[inout, intptr], maxnode intptr, addr intptr, flags intptr)
+get_robust_list$auto(pid pid, head_ptr ptr[inout, ptr[inout, robust_list_head$auto_record]], len_ptr ptr[inout, intptr])
+get_thread_area$auto(u_info ptr[inout, user_desc$auto_record])
+getcpu$auto(cpup ptr[inout, int32], nodep ptr[inout, int32], unused ptr[inout, getcpu_cache$auto_record])
+getcwd$auto(buf ptr[inout, string], size intptr)
+getdents$auto(fd fd, dirent ptr[inout, linux_dirent$auto_record], count int32)
+getdents64$auto(fd fd, dirent ptr[inout, linux_dirent64$auto_record], count int32)
+getgroups$auto(gidsetsize int32, grouplist ptr[inout, int32])
+getgroups32$auto(gidsetsize int32, grouplist ptr[inout, int32])
+getitimer$auto(which int32, value ptr[inout, __kernel_old_itimerval$auto_record])
+getpeername$auto(fd fd, usockaddr ptr[inout, sockaddr$auto_record], usockaddr_len ptr[inout, int32])
+getpgid$auto(pid pid)
+getpriority$auto(which int32, who int32)
+getrandom$auto(ubuf ptr[inout, string], len intptr, flags int32)
+getresgid$auto(rgidp ptr[inout, int32], egidp ptr[inout, int32], sgidp ptr[inout, int32])
+getresgid32$auto(rgidp ptr[inout, int32], egidp ptr[inout, int32], sgidp ptr[inout, int32])
+getresuid$auto(ruidp ptr[inout, int32], euidp ptr[inout, int32], suidp ptr[inout, int32])
+getresuid32$auto(ruidp ptr[inout, int32], euidp ptr[inout, int32], suidp ptr[inout, int32])
+getrlimit$auto(_resource int32, rlim ptr[inout, rlimit$auto_record])
+getrusage$auto(who int32, ru ptr[inout, rusage$auto_record])
+getsid$auto(pid pid)
+getsockname$auto(fd fd, usockaddr ptr[inout, sockaddr$auto_record], usockaddr_len ptr[inout, int32])
+getsockopt$auto(fd fd, level int32, optname int32, optval ptr[inout, string], optlen ptr[inout, int32])
+gettimeofday$auto(tv ptr[inout, __kernel_old_timeval$auto_record], tz ptr[inout, timezone$auto_record])
+getxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[inout, array[auto_todo]], size intptr)
+getxattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, name ptr[in, string], uargs ptr[inout, xattr_args$auto_record], usize intptr)
+init_module$auto(umod ptr[inout, array[auto_todo]], len intptr, uargs ptr[in, string])
+inotify_add_watch$auto(fd fd, pathname ptr[in, filename], mask int32)
+inotify_init1$auto(flags int32)
+inotify_rm_watch$auto(fd fd, wd int32)
+io_cancel$auto(ctx_id intptr, iocb ptr[inout, iocb$auto_record], result ptr[inout, io_event$auto_record])
+io_destroy$auto(ctx intptr)
+io_getevents$auto(ctx_id intptr, min_nr intptr, nr intptr, events ptr[inout, io_event$auto_record], timeout ptr[inout, __kernel_timespec$auto_record])
+io_pgetevents$auto(ctx_id intptr, min_nr intptr, nr intptr, events ptr[inout, io_event$auto_record], timeout ptr[inout, __kernel_timespec$auto_record], usig ptr[in, __aio_sigset$auto_record])
+io_pgetevents_time64$auto(ctx_id intptr, min_nr intptr, nr intptr, events ptr[inout, io_event$auto_record], timeout ptr[inout, __kernel_timespec$auto_record], usig ptr[in, __aio_sigset$auto_record])
+io_setup$auto(nr_events int32, ctxp ptr[inout, intptr])
+io_submit$auto(ctx_id intptr, nr intptr, iocbpp ptr[inout, ptr[inout, iocb$auto_record]])
+io_uring_enter$auto(fd fd, to_submit int32, min_complete int32, flags int32, argp ptr[in, array[auto_todo]], argsz intptr)
+io_uring_register$auto(fd fd, opcode int32, arg ptr[inout, array[auto_todo]], nr_args int32)
+io_uring_setup$auto(entries int32, params ptr[inout, io_uring_params$auto_record])
+ioctl$auto(fd fd, cmd int32, arg intptr)
+ioperm$auto(from intptr, num intptr, turn_on int32)
+iopl$auto(level int32)
+ioprio_get$auto(which int32, who int32)
+ioprio_set$auto(which int32, who int32, ioprio int32)
+kcmp$auto(pid1 int32, pid2 int32, type int32, idx1 intptr, idx2 intptr)
+kexec_load$auto(entry intptr, nr_segments intptr, segments ptr[inout, kexec_segment$auto_record], flags intptr)
+keyctl$auto(option int32, arg2 intptr, arg3 intptr, arg4 intptr, arg5 intptr)
+kill$auto(pid pid, sig int32)
+landlock_add_rule$auto(ruleset_fd fd, rule_type flags[auto_landlock_rule_type], rule_attr ptr[in, array[auto_todo]], flags int32)
+landlock_create_ruleset$auto(attr ptr[in, landlock_ruleset_attr$auto_record], size intptr, flags int32)
+landlock_restrict_self$auto(ruleset_fd fd, flags int32)
+lchown$auto(filename ptr[in, filename], user uid, group gid)
+lchown32$auto(filename ptr[in, filename], user uid, group gid)
+lgetxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[inout, array[auto_todo]], size intptr)
+link$auto(oldname ptr[in, filename], newname ptr[in, filename])
+linkat$auto(olddfd fd_dir, oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename], flags int32)
+listen$auto(fd fd, backlog int32)
+listmount$auto(req ptr[in, mnt_id_req$auto_record], mnt_ids ptr[inout, int64], nr_mnt_ids intptr, flags int32)
+listxattr$auto(pathname ptr[in, filename], list ptr[inout, string], size intptr)
+listxattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, list ptr[inout, string], size intptr)
+llistxattr$auto(pathname ptr[in, filename], list ptr[inout, string], size intptr)
+lremovexattr$auto(pathname ptr[in, filename], name ptr[in, string])
+lseek$auto(fd fd, offset intptr, whence int32)
+lsetxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[in, array[auto_todo]], size intptr, flags int32)
+lsm_get_self_attr$auto(attr int32, ctx ptr[inout, lsm_ctx$auto_record], size ptr[inout, int32], flags int32)
+lsm_list_modules$auto(ids ptr[inout, int64], size ptr[inout, int32], flags int32)
+lsm_set_self_attr$auto(attr int32, ctx ptr[inout, lsm_ctx$auto_record], size int32, flags int32)
+lstat$auto(filename ptr[in, filename], statbuf ptr[inout, stat$auto_record])
+madvise$auto(start intptr, len_in intptr, behavior int32)
+map_shadow_stack$auto(addr intptr, size intptr, flags int32)
+mbind$auto(start intptr, len intptr, mode intptr, nmask ptr[in, intptr], maxnode intptr, flags int32)
+membarrier$auto(cmd int32, flags int32, cpu_id int32)
+memfd_create$auto(uname ptr[in, string], flags int32)
+memfd_secret$auto(flags int32)
+migrate_pages$auto(pid pid, maxnode intptr, old_nodes ptr[in, intptr], new_nodes ptr[in, intptr])
+mincore$auto(start intptr, len intptr, vec ptr[inout, string])
+mkdir$auto(pathname ptr[in, filename], mode int16)
+mkdirat$auto(dfd fd_dir, pathname ptr[in, filename], mode int16)
+mknod$auto(filename ptr[in, filename], mode int16, dev int32)
+mknodat$auto(dfd fd_dir, filename ptr[in, filename], mode int16, dev int32)
+mlock$auto(start intptr, len intptr)
+mlock2$auto(start intptr, len intptr, flags int32)
+mlockall$auto(flags int32)
+mmap$auto(addr intptr, len intptr, prot intptr, flags intptr, fd intptr, off intptr)
+mmap2$auto(addr intptr, len intptr, prot intptr, flags intptr, fd intptr, pgoff intptr)
+modify_ldt$auto(func int32, ptr ptr[inout, array[auto_todo]], bytecount intptr)
+mount$auto(dev_name ptr[inout, devname], dir_name ptr[inout, filename], type ptr[inout, string], flags intptr, data ptr[inout, array[auto_todo]])
+mount_setattr$auto(dfd fd_dir, path ptr[in, filename], flags int32, uattr ptr[inout, mount_attr$auto_record], usize intptr)
+move_mount$auto(from_dfd fd_dir, from_pathname ptr[in, filename], to_dfd fd_dir, to_pathname ptr[in, filename], flags int32)
+move_pages$auto(pid pid, nr_pages intptr, pages ptr[inout, ptr[in, array[auto_todo]]], nodes ptr[in, int32], status ptr[inout, int32], flags int32)
+mprotect$auto(start intptr, len intptr, prot intptr)
+mq_getsetattr$auto(mqdes int32, u_mqstat ptr[in, mq_attr$auto_record], u_omqstat ptr[inout, mq_attr$auto_record])
+mq_notify$auto(mqdes int32, u_notification ptr[in, sigevent$auto_record])
+mq_open$auto(u_name ptr[in, string], oflag int32, mode int16, u_attr ptr[inout, mq_attr$auto_record])
+mq_timedreceive$auto(mqdes int32, u_msg_ptr ptr[inout, string], msg_len intptr, u_msg_prio ptr[inout, int32], u_abs_timeout ptr[in, __kernel_timespec$auto_record])
+mq_timedreceive_time64$auto(mqdes int32, u_msg_ptr ptr[inout, string], msg_len intptr, u_msg_prio ptr[inout, int32], u_abs_timeout ptr[in, __kernel_timespec$auto_record])
+mq_timedsend$auto(mqdes int32, u_msg_ptr ptr[in, string], msg_len intptr, msg_prio int32, u_abs_timeout ptr[in, __kernel_timespec$auto_record])
+mq_timedsend_time64$auto(mqdes int32, u_msg_ptr ptr[in, string], msg_len intptr, msg_prio int32, u_abs_timeout ptr[in, __kernel_timespec$auto_record])
+mq_unlink$auto(u_name ptr[in, string])
+mremap$auto(addr intptr, old_len intptr, new_len intptr, flags intptr, new_addr intptr)
+mseal$auto(start intptr, len intptr, flags intptr)
+msgctl$auto(msqid int32, cmd int32, buf ptr[inout, msqid_ds$auto_record])
+msgget$auto(key int32, msgflg int32)
+msgrcv$auto(msqid int32, msgp ptr[inout, msgbuf$auto_record], msgsz intptr, msgtyp intptr, msgflg int32)
+msgsnd$auto(msqid int32, msgp ptr[inout, msgbuf$auto_record], msgsz intptr, msgflg int32)
+msync$auto(start intptr, len intptr, flags int32)
+munlock$auto(start intptr, len intptr)
+munmap$auto(addr intptr, len intptr)
+name_to_handle_at$auto(dfd fd_dir, name ptr[in, string], handle ptr[inout, file_handle$auto_record], mnt_id ptr[inout, array[auto_todo]], flag int32)
+nanosleep$auto(rqtp ptr[inout, __kernel_timespec$auto_record], rmtp ptr[inout, __kernel_timespec$auto_record])
+newfstatat$auto(dfd fd_dir, filename ptr[in, filename], statbuf ptr[inout, stat$auto_record], flag int32)
+nice$auto(increment int32)
+oldfstat$auto(fd fd, statbuf ptr[inout, __old_kernel_stat$auto_record])
+oldlstat$auto(filename ptr[in, filename], statbuf ptr[inout, __old_kernel_stat$auto_record])
+oldolduname$auto(name ptr[inout, oldold_utsname$auto_record])
+oldstat$auto(filename ptr[in, filename], statbuf ptr[inout, __old_kernel_stat$auto_record])
+olduname$auto(name ptr[inout, old_utsname$auto_record])
+open$auto(filename ptr[in, filename], flags int32, mode int16)
+open_by_handle_at$auto(mountdirfd fd, handle ptr[inout, file_handle$auto_record], flags int32)
+open_tree$auto(dfd fd_dir, filename ptr[in, filename], flags int32)
+openat$auto(dfd fd_dir, filename ptr[in, filename], flags int32, mode int16)
+openat2$auto(dfd fd_dir, filename ptr[in, filename], how ptr[inout, open_how$auto_record], usize intptr)
+perf_event_open$auto(attr_uptr ptr[inout, perf_event_attr$auto_record], pid pid, cpu int32, group_fd fd, flags intptr)
+personality$auto(personality int32)
+pidfd_getfd$auto(pidfd fd, fd fd, flags int32)
+pidfd_open$auto(pid pid, flags int32)
+pidfd_send_signal$auto(pidfd fd, sig int32, info ptr[inout, siginfo$auto_record], flags int32)
+pipe$auto(fildes ptr[inout, fd])
+pipe2$auto(fildes ptr[inout, fd], flags int32)
+pivot_root$auto(new_root ptr[in, string], put_old ptr[in, string])
+pkey_alloc$auto(flags intptr, init_val intptr)
+pkey_free$auto(pkey int32)
+pkey_mprotect$auto(start intptr, len intptr, prot intptr, pkey int32)
+poll$auto(ufds ptr[inout, pollfd$auto_record], nfds int32, timeout_msecs int32)
+ppoll$auto(ufds ptr[inout, pollfd$auto_record], nfds int32, tsp ptr[inout, __kernel_timespec$auto_record], sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8])
+ppoll_time64$auto(ufds ptr[inout, pollfd$auto_record], nfds int32, tsp ptr[inout, __kernel_timespec$auto_record], sigmask ptr[in, sigset_t$auto_record], sigsetsize const[8])
+prctl$auto(option int32, arg2 intptr, arg3 intptr, arg4 intptr, arg5 intptr)
+pread64$auto(fd fd, buf ptr[inout, string], count intptr, pos intptr)
+preadv$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr)
+preadv2$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr, flags int32)
+prlimit64$auto(pid pid, _resource int32, new_rlim ptr[in, rlimit64$auto_record], old_rlim ptr[inout, rlimit64$auto_record])
+process_madvise$auto(pidfd fd, vec ptr[in, iovec$auto_record], vlen intptr, behavior int32, flags int32)
+process_mrelease$auto(pidfd fd, flags int32)
+process_vm_readv$auto(pid pid, lvec ptr[in, iovec$auto_record], liovcnt intptr, rvec ptr[in, iovec$auto_record], riovcnt intptr, flags intptr)
+process_vm_writev$auto(pid pid, lvec ptr[in, iovec$auto_record], liovcnt intptr, rvec ptr[in, iovec$auto_record], riovcnt intptr, flags intptr)
+pselect6$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tsp ptr[inout, __kernel_timespec$auto_record], sig ptr[inout, array[auto_todo]])
+pselect6_time64$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tsp ptr[inout, __kernel_timespec$auto_record], sig ptr[inout, array[auto_todo]])
+ptrace$auto(request intptr, pid intptr, addr intptr, data intptr)
+pwrite64$auto(fd fd, buf ptr[in, string], count intptr, pos intptr)
+pwritev$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr)
+pwritev2$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr, pos_l intptr, pos_h intptr, flags int32)
+quotactl$auto(cmd int32, special ptr[in, string], id int32, addr ptr[inout, array[auto_todo]])
+quotactl_fd$auto(fd fd, cmd int32, id int32, addr ptr[inout, array[auto_todo]])
+read$auto(fd fd, buf ptr[inout, string], count intptr)
+readahead$auto(fd fd, offset intptr, count intptr)
+readdir$auto(fd fd, dirent ptr[inout, old_linux_dirent$auto_record], count int32)
+readlink$auto(path ptr[in, filename], buf ptr[inout, string], bufsiz int32)
+readlinkat$auto(dfd fd_dir, pathname ptr[in, filename], buf ptr[inout, string], bufsiz int32)
+readv$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr)
+recv$auto(fd fd, ubuf ptr[inout, array[auto_todo]], size intptr, flags int32)
+recvfrom$auto(fd fd, ubuf ptr[inout, array[auto_todo]], size intptr, flags int32, addr ptr[inout, sockaddr$auto_record], addr_len ptr[inout, int32])
+recvmmsg$auto(fd fd, mmsg ptr[inout, mmsghdr$auto_record], vlen int32, flags int32, timeout ptr[inout, __kernel_timespec$auto_record])
+recvmmsg_time64$auto(fd fd, mmsg ptr[inout, mmsghdr$auto_record], vlen int32, flags int32, timeout ptr[inout, __kernel_timespec$auto_record])
+recvmsg$auto(fd fd, msg ptr[inout, user_msghdr$auto_record], flags int32)
+remap_file_pages$auto(start intptr, size intptr, prot intptr, pgoff intptr, flags intptr)
+removexattr$auto(pathname ptr[in, filename], name ptr[in, string])
+removexattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, name ptr[in, string])
+rename$auto(oldname ptr[in, filename], newname ptr[in, filename])
+renameat$auto(olddfd fd_dir, oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename])
+renameat2$auto(olddfd fd_dir, oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename], flags int32)
+request_key$auto(_type ptr[in, string], _description ptr[in, string], _callout_info ptr[in, string], destringid int32)
+rmdir$auto(pathname ptr[in, filename])
+rseq$auto(rseq ptr[inout, rseq$auto_record], rseq_len int32, flags int32, sig int32)
+rt_sigaction$auto(sig int32, act ptr[in, sigaction$auto_record], oact ptr[inout, sigaction$auto_record], sigsetsize const[8])
+rt_sigpending$auto(uset ptr[inout, sigset_t$auto_record], sigsetsize const[8])
+rt_sigprocmask$auto(how int32, nset ptr[inout, sigset_t$auto_record], oset ptr[inout, sigset_t$auto_record], sigsetsize const[8])
+rt_sigqueueinfo$auto(pid pid, sig int32, uinfo ptr[inout, siginfo$auto_record])
+rt_sigsuspend$auto(unewset ptr[inout, sigset_t$auto_record], sigsetsize const[8])
+rt_sigtimedwait$auto(uthese ptr[in, sigset_t$auto_record], uinfo ptr[inout, siginfo$auto_record], uts ptr[in, __kernel_timespec$auto_record], sigsetsize const[8])
+rt_sigtimedwait_time64$auto(uthese ptr[in, sigset_t$auto_record], uinfo ptr[inout, siginfo$auto_record], uts ptr[in, __kernel_timespec$auto_record], sigsetsize const[8])
+rt_tgsigqueueinfo$auto(tgid pid, pid pid, sig int32, uinfo ptr[inout, siginfo$auto_record])
+sched_get_priority_max$auto(policy int32)
+sched_get_priority_min$auto(policy int32)
+sched_getaffinity$auto(pid pid, len int32, user_mask_ptr ptr[inout, intptr])
+sched_getattr$auto(pid pid, uattr ptr[inout, sched_attr$auto_record], usize int32, flags int32)
+sched_getparam$auto(pid pid, param ptr[inout, sched_param$auto_record])
+sched_getscheduler$auto(pid pid)
+sched_rr_get_interval$auto(pid pid, interval ptr[inout, __kernel_timespec$auto_record])
+sched_rr_get_interval_time64$auto(pid pid, interval ptr[inout, __kernel_timespec$auto_record])
+sched_setaffinity$auto(pid pid, len int32, user_mask_ptr ptr[inout, intptr])
+sched_setattr$auto(pid pid, uattr ptr[inout, sched_attr$auto_record], flags int32)
+sched_setparam$auto(pid pid, param ptr[inout, sched_param$auto_record])
+sched_setscheduler$auto(pid pid, policy int32, param ptr[inout, sched_param$auto_record])
+seccomp$auto(op int32, flags int32, uargs ptr[inout, array[auto_todo]])
+select$auto(n int32, inp ptr[inout, __kernel_fd_set$auto_record], outp ptr[inout, __kernel_fd_set$auto_record], exp ptr[inout, __kernel_fd_set$auto_record], tvp ptr[inout, __kernel_old_timeval$auto_record])
+semctl$auto(semid int32, semnum int32, cmd int32, arg intptr)
+semget$auto(key int32, nsems int32, semflg int32)
+semop$auto(semid int32, tsops ptr[inout, sembuf$auto_record], nsops int32)
+semtimedop$auto(semid int32, tsops ptr[inout, sembuf$auto_record], nsops int32, timeout ptr[in, __kernel_timespec$auto_record])
+semtimedop_time64$auto(semid int32, tsops ptr[inout, sembuf$auto_record], nsops int32, timeout ptr[in, __kernel_timespec$auto_record])
+send$auto(fd fd, buff ptr[inout, array[auto_todo]], len intptr, flags int32)
+sendfile$auto(out_fd fd, in_fd fd, offset ptr[inout, int64], count intptr)
+sendfile64$auto(out_fd fd, in_fd fd, offset ptr[inout, int64], count intptr)
+sendmmsg$auto(fd fd, mmsg ptr[inout, mmsghdr$auto_record], vlen int32, flags int32)
+sendmsg$auto(fd fd, msg ptr[inout, user_msghdr$auto_record], flags int32)
+sendmsg$auto_BATADV_CMD_GET_BLA_BACKBONE(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_BLA_BACKBONE, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_BLA_CLAIM(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_BLA_CLAIM, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_DAT_CACHE(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_DAT_CACHE, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_GATEWAYS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_GATEWAYS, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_HARDIF(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_HARDIF, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_MCAST_FLAGS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_MCAST_FLAGS, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_MESH(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_MESH, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_NEIGHBORS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_NEIGHBORS, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_ORIGINATORS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_ORIGINATORS, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_ROUTING_ALGOS(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_ROUTING_ALGOS, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_TRANSTABLE_GLOBAL(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_TRANSTABLE_GLOBAL, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_TRANSTABLE_LOCAL(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_TRANSTABLE_LOCAL, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_GET_VLAN(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_GET_VLAN, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_SET_HARDIF(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_SET_HARDIF, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_SET_MESH(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_SET_MESH, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_SET_VLAN(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_SET_VLAN, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_TP_METER(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_TP_METER, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_BATADV_CMD_TP_METER_CANCEL(fd sock_nl_generic, msg ptr[in, msghdr_batadv_auto[BATADV_CMD_TP_METER_CANCEL, batadv_netlink_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_CGROUPSTATS_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_TASKSTATS_auto[CGROUPSTATS_CMD_GET, cgroupstats_cmd_get_policy$auto_taskstats]], f flags[send_flags])
+sendmsg$auto_CIFS_GENL_CMD_SWN_NOTIFY(fd sock_nl_generic, msg ptr[in, msghdr_cifs_auto[CIFS_GENL_CMD_SWN_NOTIFY, cifs_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_CTRL_CMD_GETFAMILY(fd sock_nl_generic, msg ptr[in, msghdr_nlctrl_auto[CTRL_CMD_GETFAMILY, ctrl_policy_family$auto_genetlink]], f flags[send_flags])
+sendmsg$auto_CTRL_CMD_GETPOLICY(fd sock_nl_generic, msg ptr[in, msghdr_nlctrl_auto[CTRL_CMD_GETPOLICY, ctrl_policy_policy$auto_genetlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_CABLE_TEST_ACT(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CABLE_TEST_ACT, ethnl_cable_test_act_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_CABLE_TEST_TDR_ACT(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CABLE_TEST_TDR_ACT, ethnl_cable_test_tdr_act_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_CHANNELS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CHANNELS_GET, ethnl_channels_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_CHANNELS_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_CHANNELS_SET, ethnl_channels_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_COALESCE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_COALESCE_GET, ethnl_coalesce_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_COALESCE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_COALESCE_SET, ethnl_coalesce_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_DEBUG_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_DEBUG_GET, ethnl_debug_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_DEBUG_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_DEBUG_SET, ethnl_debug_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_EEE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_EEE_GET, ethnl_eee_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_EEE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_EEE_SET, ethnl_eee_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_FEATURES_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEATURES_GET, ethnl_features_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_FEATURES_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEATURES_SET, ethnl_features_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_FEC_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEC_GET, ethnl_fec_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_FEC_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_FEC_SET, ethnl_fec_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_LINKINFO_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKINFO_GET, ethnl_linkinfo_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_LINKINFO_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKINFO_SET, ethnl_linkinfo_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_LINKMODES_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKMODES_GET, ethnl_linkmodes_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_LINKMODES_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKMODES_SET, ethnl_linkmodes_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_LINKSTATE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_LINKSTATE_GET, ethnl_linkstate_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_MM_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MM_GET, ethnl_mm_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_MM_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MM_SET, ethnl_mm_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_MODULE_EEPROM_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_EEPROM_GET, ethnl_module_eeprom_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_MODULE_FW_FLASH_ACT(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_FW_FLASH_ACT, ethnl_module_fw_flash_act_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_MODULE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_GET, ethnl_module_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_MODULE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_MODULE_SET, ethnl_module_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PAUSE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PAUSE_GET, ethnl_pause_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PAUSE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PAUSE_SET, ethnl_pause_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PHC_VCLOCKS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PHC_VCLOCKS_GET, ethnl_phc_vclocks_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PHY_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PHY_GET, ethnl_phy_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PLCA_GET_CFG(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PLCA_GET_CFG, ethnl_plca_get_cfg_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PLCA_GET_STATUS(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PLCA_GET_STATUS, ethnl_plca_get_status_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PLCA_SET_CFG(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PLCA_SET_CFG, ethnl_plca_set_cfg_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PRIVFLAGS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PRIVFLAGS_GET, ethnl_privflags_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PRIVFLAGS_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PRIVFLAGS_SET, ethnl_privflags_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PSE_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PSE_GET, ethnl_pse_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_PSE_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_PSE_SET, ethnl_pse_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_RINGS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_RINGS_GET, ethnl_rings_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_RINGS_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_RINGS_SET, ethnl_rings_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_RSS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_RSS_GET, ethnl_rss_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_STATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_STATS_GET, ethnl_stats_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_STRSET_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_STRSET_GET, ethnl_strset_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_TSINFO_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_TSINFO_GET, ethnl_tsinfo_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_TUNNEL_INFO_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_TUNNEL_INFO_GET, ethnl_tunnel_info_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_WOL_GET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_WOL_GET, ethnl_wol_get_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_ETHTOOL_MSG_WOL_SET(fd sock_nl_generic, msg ptr[in, msghdr_ethtool_auto[ETHTOOL_MSG_WOL_SET, ethnl_wol_set_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_GTP_CMD_DELPDP(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_DELPDP, gtp_genl_policy$auto_gtp]], f flags[send_flags])
+sendmsg$auto_GTP_CMD_ECHOREQ(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_ECHOREQ, gtp_genl_policy$auto_gtp]], f flags[send_flags])
+sendmsg$auto_GTP_CMD_GETPDP(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_GETPDP, gtp_genl_policy$auto_gtp]], f flags[send_flags])
+sendmsg$auto_GTP_CMD_NEWPDP(fd sock_nl_generic, msg ptr[in, msghdr_gtp_auto[GTP_CMD_NEWPDP, gtp_genl_policy$auto_gtp]], f flags[send_flags])
+sendmsg$auto_HANDSHAKE_CMD_ACCEPT(fd sock_nl_generic, msg ptr[in, msghdr_handshake_auto[HANDSHAKE_CMD_ACCEPT, handshake_accept_nl_policy$auto_genl]], f flags[send_flags])
+sendmsg$auto_HANDSHAKE_CMD_DONE(fd sock_nl_generic, msg ptr[in, msghdr_handshake_auto[HANDSHAKE_CMD_DONE, handshake_done_nl_policy$auto_genl]], f flags[send_flags])
+sendmsg$auto_HSR_C_GET_NODE_LIST(fd sock_nl_generic, msg ptr[in, msghdr_HSR_auto[HSR_C_GET_NODE_LIST, hsr_genl_policy$auto_hsr_netlink]], f flags[send_flags])
+sendmsg$auto_HSR_C_GET_NODE_STATUS(fd sock_nl_generic, msg ptr[in, msghdr_HSR_auto[HSR_C_GET_NODE_STATUS, hsr_genl_policy$auto_hsr_netlink]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_DEL_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_DEL_RADIO, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_FRAME, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_GET_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_GET_RADIO, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_NEW_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_NEW_RADIO, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_REGISTER(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_REGISTER, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_REPORT_PMSR(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_REPORT_PMSR, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_HWSIM_CMD_TX_INFO_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_MAC80211_HWSIM_auto[HWSIM_CMD_TX_INFO_FRAME, hwsim_genl_policy$auto_mac80211_hwsim]], f flags[send_flags])
+sendmsg$auto_IEEE802154_ADD_IFACE(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_ADD_IFACE, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_ASSOCIATE_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_ASSOCIATE_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_ASSOCIATE_RESP(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_ASSOCIATE_RESP, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_DEL_IFACE(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_DEL_IFACE, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_DISASSOCIATE_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_DISASSOCIATE_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LIST_IFACE(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LIST_IFACE, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LIST_PHY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LIST_PHY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_ADD_DEV(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_DEV, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_ADD_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_DEVKEY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_ADD_KEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_KEY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_ADD_SECLEVEL(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_ADD_SECLEVEL, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_DEL_DEV(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_DEV, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_DEL_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_DEVKEY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_DEL_KEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_KEY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_DEL_SECLEVEL(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_DEL_SECLEVEL, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_GETPARAMS(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_GETPARAMS, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_LIST_DEV(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_DEV, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_LIST_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_DEVKEY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_LIST_KEY(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_KEY, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_LIST_SECLEVEL(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_LIST_SECLEVEL, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_LLSEC_SETPARAMS(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_LLSEC_SETPARAMS, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_SCAN_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_SCAN_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_SET_MACPARAMS(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_SET_MACPARAMS, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_IEEE802154_START_REQ(fd sock_nl_generic, msg ptr[in, msghdr_802_15_4_MAC_auto[IEEE802154_START_REQ, ieee802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_ILA_CMD_ADD(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_ADD, ila_nl_policy$auto_ila_main]], f flags[send_flags])
+sendmsg$auto_ILA_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_DEL, ila_nl_policy$auto_ila_main]], f flags[send_flags])
+sendmsg$auto_ILA_CMD_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_FLUSH, ila_nl_policy$auto_ila_main]], f flags[send_flags])
+sendmsg$auto_ILA_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ila_auto[ILA_CMD_GET, ila_nl_policy$auto_ila_main]], f flags[send_flags])
+sendmsg$auto_IOAM6_CMD_ADD_NAMESPACE(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_ADD_NAMESPACE, ioam6_genl_policy_addns$auto_ioam6]], f flags[send_flags])
+sendmsg$auto_IOAM6_CMD_ADD_SCHEMA(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_ADD_SCHEMA, ioam6_genl_policy_addsc$auto_ioam6]], f flags[send_flags])
+sendmsg$auto_IOAM6_CMD_DEL_NAMESPACE(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_DEL_NAMESPACE, ioam6_genl_policy_delns$auto_ioam6]], f flags[send_flags])
+sendmsg$auto_IOAM6_CMD_DEL_SCHEMA(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_DEL_SCHEMA, ioam6_genl_policy_delsc$auto_ioam6]], f flags[send_flags])
+sendmsg$auto_IOAM6_CMD_NS_SET_SCHEMA(fd sock_nl_generic, msg ptr[in, msghdr_IOAM6_auto[IOAM6_CMD_NS_SET_SCHEMA, ioam6_genl_policy_ns_sc$auto_ioam6]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_DEL_DAEMON(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_DEL_DAEMON, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_DEL_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_DEL_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_DEL_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_DEL_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_FLUSH, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_GET_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_CONFIG, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_GET_DAEMON(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_DAEMON, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_GET_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_GET_INFO(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_INFO, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_GET_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_GET_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_NEW_DAEMON(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_NEW_DAEMON, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_NEW_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_NEW_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_NEW_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_NEW_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_SET_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_SET_CONFIG, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_SET_DEST(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_SET_DEST, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_SET_SERVICE(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_SET_SERVICE, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_IPVS_CMD_ZERO(fd sock_nl_generic, msg ptr[in, msghdr_IPVS_auto[IPVS_CMD_ZERO, ip_vs_cmd_policy$auto_ip_vs_ctl]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_NOOP(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_NOOP, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_SESSION_CREATE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_CREATE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_SESSION_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_DELETE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_SESSION_GET(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_GET, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_SESSION_MODIFY(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_SESSION_MODIFY, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_TUNNEL_CREATE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_CREATE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_TUNNEL_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_DELETE, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_TUNNEL_GET(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_GET, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_L2TP_CMD_TUNNEL_MODIFY(fd sock_nl_generic, msg ptr[in, msghdr_l2tp_auto[L2TP_CMD_TUNNEL_MODIFY, l2tp_nl_policy$auto_l2tp_netlink]], f flags[send_flags])
+sendmsg$auto_MAC802154_HWSIM_CMD_DEL_EDGE(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_DEL_EDGE, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags])
+sendmsg$auto_MAC802154_HWSIM_CMD_DEL_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_DEL_RADIO, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags])
+sendmsg$auto_MAC802154_HWSIM_CMD_GET_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_GET_RADIO, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags])
+sendmsg$auto_MAC802154_HWSIM_CMD_NEW_EDGE(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_NEW_EDGE, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags])
+sendmsg$auto_MAC802154_HWSIM_CMD_NEW_RADIO(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_NEW_RADIO, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags])
+sendmsg$auto_MAC802154_HWSIM_CMD_SET_EDGE(fd sock_nl_generic, msg ptr[in, msghdr_MAC802154_HWSIM_auto[MAC802154_HWSIM_CMD_SET_EDGE, hwsim_genl_policy$auto_mac802154_hwsim]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_ADD_RXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_ADD_RXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_ADD_RXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_ADD_RXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_ADD_TXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_ADD_TXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_DEL_RXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_DEL_RXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_DEL_RXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_DEL_RXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_DEL_TXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_DEL_TXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_GET_TXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_GET_TXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_UPD_OFFLOAD(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_OFFLOAD, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_UPD_RXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_RXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_UPD_RXSC(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_RXSC, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_MACSEC_CMD_UPD_TXSA(fd sock_nl_generic, msg ptr[in, msghdr_macsec_auto[MACSEC_CMD_UPD_TXSA, macsec_genl_policy$auto_macsec]], f flags[send_flags])
+sendmsg$auto_NBD_CMD_CONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_CONNECT, nbd_attr_policy$auto_nbd]], f flags[send_flags])
+sendmsg$auto_NBD_CMD_DISCONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_DISCONNECT, nbd_attr_policy$auto_nbd]], f flags[send_flags])
+sendmsg$auto_NBD_CMD_RECONFIGURE(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_RECONFIGURE, nbd_attr_policy$auto_nbd]], f flags[send_flags])
+sendmsg$auto_NBD_CMD_STATUS(fd sock_nl_generic, msg ptr[in, msghdr_nbd_auto[NBD_CMD_STATUS, nbd_attr_policy$auto_nbd]], f flags[send_flags])
+sendmsg$auto_NCSI_CMD_CLEAR_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_CLEAR_INTERFACE, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags])
+sendmsg$auto_NCSI_CMD_PKG_INFO(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_PKG_INFO, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags])
+sendmsg$auto_NCSI_CMD_SEND_CMD(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SEND_CMD, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags])
+sendmsg$auto_NCSI_CMD_SET_CHANNEL_MASK(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SET_CHANNEL_MASK, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags])
+sendmsg$auto_NCSI_CMD_SET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SET_INTERFACE, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags])
+sendmsg$auto_NCSI_CMD_SET_PACKAGE_MASK(fd sock_nl_generic, msg ptr[in, msghdr_NCSI_auto[NCSI_CMD_SET_PACKAGE_MASK, ncsi_genl_policy$auto_ncsi_netlink]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_BIND_RX(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_BIND_RX, netdev_bind_rx_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_DEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_DEV_GET, netdev_dev_get_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_NAPI_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_NAPI_GET, netdev_napi_get_do_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_NAPI_GET0(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_NAPI_GET, netdev_napi_get_dump_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_NAPI_SET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_NAPI_SET, netdev_napi_set_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_PAGE_POOL_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_PAGE_POOL_GET, netdev_page_pool_get_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_QSTATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_QSTATS_GET, netdev_qstats_get_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_QUEUE_GET(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_QUEUE_GET, netdev_queue_get_do_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NETDEV_CMD_QUEUE_GET0(fd sock_nl_generic, msg ptr[in, msghdr_netdev_auto[NETDEV_CMD_QUEUE_GET, netdev_queue_get_dump_nl_policy$auto_netdev_genl_gen]], f flags[send_flags])
+sendmsg$auto_NET_DM_CMD_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_CONFIG, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags])
+sendmsg$auto_NET_DM_CMD_CONFIG_GET(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_CONFIG_GET, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags])
+sendmsg$auto_NET_DM_CMD_START(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_START, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags])
+sendmsg$auto_NET_DM_CMD_STATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_STATS_GET, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags])
+sendmsg$auto_NET_DM_CMD_STOP(fd sock_nl_generic, msg ptr[in, msghdr_NET_DM_auto[NET_DM_CMD_STOP, net_dm_nl_policy$auto_drop_monitor]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_CAP_GET(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_CAP_GET, net_shaper_cap_get_do_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_CAP_GET0(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_CAP_GET, net_shaper_cap_get_dump_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_DELETE, net_shaper_delete_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_GET, net_shaper_get_do_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_GET0(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_GET, net_shaper_get_dump_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_GROUP(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_GROUP, net_shaper_group_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NET_SHAPER_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_net_shaper_auto[NET_SHAPER_CMD_SET, net_shaper_set_nl_policy$auto_shaper_nl_gen]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_ACTIVATE_TARGET(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_ACTIVATE_TARGET, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_DEACTIVATE_TARGET(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEACTIVATE_TARGET, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_DEP_LINK_DOWN(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEP_LINK_DOWN, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_DEP_LINK_UP(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEP_LINK_UP, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_DEV_DOWN(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEV_DOWN, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_DEV_UP(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DEV_UP, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_DISABLE_SE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_DISABLE_SE, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_ENABLE_SE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_ENABLE_SE, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_FW_DOWNLOAD(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_FW_DOWNLOAD, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_GET_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_GET_DEVICE, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_GET_SE(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_GET_SE, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_GET_TARGET(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_GET_TARGET, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_LLC_GET_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_LLC_GET_PARAMS, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_LLC_SDREQ(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_LLC_SDREQ, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_LLC_SET_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_LLC_SET_PARAMS, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_SE_IO(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_SE_IO, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_START_POLL(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_START_POLL, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_STOP_POLL(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_STOP_POLL, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFC_CMD_VENDOR(fd sock_nl_generic, msg ptr[in, msghdr_nfc_auto[NFC_CMD_VENDOR, nfc_genl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFSD_CMD_LISTENER_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_LISTENER_SET, nfsd_listener_set_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFSD_CMD_POOL_MODE_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_POOL_MODE_SET, nfsd_pool_mode_set_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFSD_CMD_THREADS_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_THREADS_SET, nfsd_threads_set_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NFSD_CMD_VERSION_SET(fd sock_nl_generic, msg ptr[in, msghdr_nfsd_auto[NFSD_CMD_VERSION_SET, nfsd_version_set_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_ABORT_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ABORT_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_ADD_LINK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_LINK, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_ADD_LINK_STA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_LINK_STA, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_ADD_NAN_FUNCTION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_NAN_FUNCTION, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_ADD_TX_TS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ADD_TX_TS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_ASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_ASSOCIATE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_AUTHENTICATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_AUTHENTICATE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CHANGE_NAN_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CHANGE_NAN_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CHANNEL_SWITCH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CHANNEL_SWITCH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_COLOR_CHANGE_REQUEST(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_COLOR_CHANGE_REQUEST, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CONNECT, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CONTROL_PORT_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CONTROL_PORT_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CRIT_PROTOCOL_START(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CRIT_PROTOCOL_START, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_CRIT_PROTOCOL_STOP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_CRIT_PROTOCOL_STOP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEAUTHENTICATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEAUTHENTICATE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_NAN_FUNCTION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_NAN_FUNCTION, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_PMK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_PMK, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_PMKSA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_PMKSA, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DEL_TX_TS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DEL_TX_TS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DISASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DISASSOCIATE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_DISCONNECT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_DISCONNECT, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_EXTERNAL_AUTH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_EXTERNAL_AUTH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_FLUSH_PMKSA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_FLUSH_PMKSA, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_FRAME_WAIT_CANCEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_FRAME_WAIT_CANCEL, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_COALESCE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_COALESCE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_FTM_RESPONDER_STATS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_FTM_RESPONDER_STATS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_MESH_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_MESH_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_MPP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_MPP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_POWER_SAVE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_POWER_SAVE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_PROTOCOL_FEATURES(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_PROTOCOL_FEATURES, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_REG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_REG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_SURVEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_SURVEY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_WIPHY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_WIPHY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_GET_WOWLAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_GET_WOWLAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_JOIN_IBSS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_JOIN_IBSS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_JOIN_MESH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_JOIN_MESH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_JOIN_OCB(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_JOIN_OCB, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_LEAVE_IBSS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_LEAVE_IBSS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_LEAVE_MESH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_LEAVE_MESH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_LEAVE_OCB(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_LEAVE_OCB, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_MODIFY_LINK_STA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_MODIFY_LINK_STA, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_NEW_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_NEW_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_NEW_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_NEW_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NEW_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_NOTIFY_RADAR(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_NOTIFY_RADAR, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_PEER_MEASUREMENT_START(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_PEER_MEASUREMENT_START, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_PROBE_CLIENT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_PROBE_CLIENT, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_PROBE_MESH_LINK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_PROBE_MESH_LINK, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_RADAR_DETECT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_RADAR_DETECT, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_REGISTER_BEACONS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REGISTER_BEACONS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_REGISTER_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REGISTER_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_RELOAD_REGDB(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_RELOAD_REGDB, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_REMAIN_ON_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REMAIN_ON_CHANNEL, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_REMOVE_LINK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REMOVE_LINK, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_REMOVE_LINK_STA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REMOVE_LINK_STA, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_REQ_SET_REG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_REQ_SET_REG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_BEACON(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_BEACON, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_BSS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_BSS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_CHANNEL, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_COALESCE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_COALESCE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_CQM(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_CQM, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_FILS_AAD(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_FILS_AAD, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_HW_TIMESTAMP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_HW_TIMESTAMP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_INTERFACE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_KEY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_MAC_ACL(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MAC_ACL, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_MCAST_RATE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MCAST_RATE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_MESH_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MESH_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_MPATH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MPATH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_MULTICAST_TO_UNICAST(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_MULTICAST_TO_UNICAST, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_NOACK_MAP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_NOACK_MAP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_PMK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_PMK, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_PMKSA(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_PMKSA, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_POWER_SAVE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_POWER_SAVE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_QOS_MAP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_QOS_MAP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_REG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_REG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_REKEY_OFFLOAD(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_REKEY_OFFLOAD, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_SAR_SPECS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_SAR_SPECS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_STATION(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_STATION, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_TID_CONFIG(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_TID_CONFIG, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_TID_TO_LINK_MAPPING(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_TID_TO_LINK_MAPPING, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_TX_BITRATE_MASK(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_TX_BITRATE_MASK, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_WIPHY(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_WIPHY, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_WIPHY_NETNS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_WIPHY_NETNS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_SET_WOWLAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_SET_WOWLAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_START_AP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_AP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_START_NAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_NAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_START_P2P_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_P2P_DEVICE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_START_SCHED_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_START_SCHED_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_STOP_AP(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_AP, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_STOP_NAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_NAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_STOP_P2P_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_P2P_DEVICE, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_STOP_SCHED_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_STOP_SCHED_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_TDLS_CHANNEL_SWITCH(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_CHANNEL_SWITCH, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_TDLS_MGMT(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_MGMT, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_TDLS_OPER(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TDLS_OPER, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_TRIGGER_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_TRIGGER_SCAN, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_UNEXPECTED_FRAME(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UNEXPECTED_FRAME, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_UPDATE_CONNECT_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UPDATE_CONNECT_PARAMS, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_UPDATE_FT_IES(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UPDATE_FT_IES, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_UPDATE_OWE_INFO(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_UPDATE_OWE_INFO, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL80211_CMD_VENDOR(fd sock_nl_generic, msg ptr[in, msghdr_nl80211_auto[NL80211_CMD_VENDOR, nl80211_policy$auto_nl80211]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_ABORT_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_ABORT_SCAN, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_ASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_ASSOCIATE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_DEL_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_INTERFACE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_DEL_SEC_DEV(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_DEV, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_DEL_SEC_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_DEVKEY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_DEL_SEC_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_KEY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_DEL_SEC_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DEL_SEC_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_DISASSOCIATE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_DISASSOCIATE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_GET_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_INTERFACE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_GET_SEC_DEV(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_DEV, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_GET_SEC_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_DEVKEY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_GET_SEC_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_KEY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_GET_SEC_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_SEC_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_GET_WPAN_PHY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_GET_WPAN_PHY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_LIST_ASSOCIATIONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_LIST_ASSOCIATIONS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_NEW_INTERFACE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_INTERFACE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_NEW_SEC_DEV(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_DEV, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_NEW_SEC_DEVKEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_DEVKEY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_NEW_SEC_KEY(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_KEY, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_NEW_SEC_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_NEW_SEC_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SEND_BEACONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SEND_BEACONS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_ACKREQ_DEFAULT(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_ACKREQ_DEFAULT, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_BACKOFF_EXPONENT(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_BACKOFF_EXPONENT, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_CCA_ED_LEVEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_CCA_ED_LEVEL, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_CCA_MODE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_CCA_MODE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_CHANNEL(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_CHANNEL, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_LBT_MODE(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_LBT_MODE, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_MAX_ASSOCIATIONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_MAX_ASSOCIATIONS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_MAX_CSMA_BACKOFFS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_MAX_CSMA_BACKOFFS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_MAX_FRAME_RETRIES(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_MAX_FRAME_RETRIES, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_PAN_ID(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_PAN_ID, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_SEC_PARAMS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_SEC_PARAMS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_SHORT_ADDR(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_SHORT_ADDR, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_TX_POWER(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_TX_POWER, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_SET_WPAN_PHY_NETNS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_SET_WPAN_PHY_NETNS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_STOP_BEACONS(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_STOP_BEACONS, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NL802154_CMD_TRIGGER_SCAN(fd sock_nl_generic, msg ptr[in, msghdr_nl802154_auto[NL802154_CMD_TRIGGER_SCAN, nl802154_policy$auto_nl802154]], f flags[send_flags])
+sendmsg$auto_NLBL_CALIPSO_C_ADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_ADD, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags])
+sendmsg$auto_NLBL_CALIPSO_C_LIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_LIST, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags])
+sendmsg$auto_NLBL_CALIPSO_C_LISTALL(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_LISTALL, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags])
+sendmsg$auto_NLBL_CALIPSO_C_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CALIPSO_auto[NLBL_CALIPSO_C_REMOVE, calipso_genl_policy$auto_netlabel_calipso]], f flags[send_flags])
+sendmsg$auto_NLBL_CIPSOV4_C_ADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_ADD, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags])
+sendmsg$auto_NLBL_CIPSOV4_C_LIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_LIST, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags])
+sendmsg$auto_NLBL_CIPSOV4_C_LISTALL(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_LISTALL, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags])
+sendmsg$auto_NLBL_CIPSOV4_C_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_CIPSOv4_auto[NLBL_CIPSOV4_C_REMOVE, netlbl_cipsov4_genl_policy$auto_netlabel_cipso_v4]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_ADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_ADD, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_ADDDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_ADDDEF, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_LISTALL(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_LISTALL, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_LISTDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_LISTDEF, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_PROTOCOLS(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_PROTOCOLS, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_REMOVE, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_REMOVEDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_REMOVEDEF, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_MGMT_C_VERSION(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_MGMT_auto[NLBL_MGMT_C_VERSION, netlbl_mgmt_genl_policy$auto_netlabel_mgmt]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_ACCEPT(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_ACCEPT, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_LIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_LIST, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_STATICADD(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICADD, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_STATICADDDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICADDDEF, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_STATICLIST(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICLIST, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_STATICLISTDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICLISTDEF, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_STATICREMOVE(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICREMOVE, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_NLBL_UNLABEL_C_STATICREMOVEDEF(fd sock_nl_generic, msg ptr[in, msghdr_NLBL_UNLBL_auto[NLBL_UNLABEL_C_STATICREMOVEDEF, netlbl_unlabel_genl_policy$auto_netlabel_unlabeled]], f flags[send_flags])
+sendmsg$auto_OVS_CT_LIMIT_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_ct_limit_auto[OVS_CT_LIMIT_CMD_DEL, ct_limit_policy$auto_conntrack]], f flags[send_flags])
+sendmsg$auto_OVS_CT_LIMIT_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_ct_limit_auto[OVS_CT_LIMIT_CMD_GET, ct_limit_policy$auto_conntrack]], f flags[send_flags])
+sendmsg$auto_OVS_CT_LIMIT_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_ct_limit_auto[OVS_CT_LIMIT_CMD_SET, ct_limit_policy$auto_conntrack]], f flags[send_flags])
+sendmsg$auto_OVS_DP_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_DEL, datapath_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_DP_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_GET, datapath_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_DP_CMD_NEW(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_NEW, datapath_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_DP_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_datapath_auto[OVS_DP_CMD_SET, datapath_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_FLOW_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_DEL, flow_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_FLOW_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_GET, flow_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_FLOW_CMD_NEW(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_NEW, flow_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_FLOW_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_flow_auto[OVS_FLOW_CMD_SET, flow_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_METER_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_DEL, meter_policy$auto_meter]], f flags[send_flags])
+sendmsg$auto_OVS_METER_CMD_FEATURES(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_FEATURES, meter_policy$auto_meter]], f flags[send_flags])
+sendmsg$auto_OVS_METER_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_GET, meter_policy$auto_meter]], f flags[send_flags])
+sendmsg$auto_OVS_METER_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_meter_auto[OVS_METER_CMD_SET, meter_policy$auto_meter]], f flags[send_flags])
+sendmsg$auto_OVS_PACKET_CMD_EXECUTE(fd sock_nl_generic, msg ptr[in, msghdr_ovs_packet_auto[OVS_PACKET_CMD_EXECUTE, packet_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_VPORT_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_DEL, vport_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_VPORT_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_GET, vport_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_VPORT_CMD_NEW(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_NEW, vport_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_OVS_VPORT_CMD_SET(fd sock_nl_generic, msg ptr[in, msghdr_ovs_vport_auto[OVS_VPORT_CMD_SET, vport_policy$auto_datapath]], f flags[send_flags])
+sendmsg$auto_SEG6_CMD_DUMPHMAC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_DUMPHMAC, seg6_genl_policy$auto_seg6]], f flags[send_flags])
+sendmsg$auto_SEG6_CMD_GET_TUNSRC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_GET_TUNSRC, seg6_genl_policy$auto_seg6]], f flags[send_flags])
+sendmsg$auto_SEG6_CMD_SETHMAC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_SETHMAC, seg6_genl_policy$auto_seg6]], f flags[send_flags])
+sendmsg$auto_SEG6_CMD_SET_TUNSRC(fd sock_nl_generic, msg ptr[in, msghdr_SEG6_auto[SEG6_CMD_SET_TUNSRC, seg6_genl_policy$auto_seg6]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_ADD_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_ADD_UEID, smc_gen_ueid_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_DISABLE_HS_LIMITATION(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DISABLE_HS_LIMITATION, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_DISABLE_SEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DISABLE_SEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_DUMP_HS_LIMITATION(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DUMP_HS_LIMITATION, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_DUMP_SEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DUMP_SEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_DUMP_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_DUMP_UEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_ENABLE_HS_LIMITATION(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_ENABLE_HS_LIMITATION, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_ENABLE_SEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_ENABLE_SEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_FLUSH_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_FLUSH_UEID, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_DEV_SMCD(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_DEV_SMCD, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_DEV_SMCR(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_DEV_SMCR, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_FBACK_STATS(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_FBACK_STATS, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_LGR_SMCD(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_LGR_SMCD, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_LGR_SMCR(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_LGR_SMCR, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_LINK_SMCR(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_LINK_SMCR, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_STATS(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_STATS, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_GET_SYS_INFO(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_GET_SYS_INFO, smc_gen_nl_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_NETLINK_REMOVE_UEID(fd sock_nl_generic, msg ptr[in, msghdr_SMC_GEN_NETLINK_auto[SMC_NETLINK_REMOVE_UEID, smc_gen_ueid_policy$auto_smc_netlink]], f flags[send_flags])
+sendmsg$auto_SMC_PNETID_ADD(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_ADD, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags])
+sendmsg$auto_SMC_PNETID_DEL(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_DEL, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags])
+sendmsg$auto_SMC_PNETID_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_FLUSH, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags])
+sendmsg$auto_SMC_PNETID_GET(fd sock_nl_generic, msg ptr[in, msghdr_SMC_PNETID_auto[SMC_PNETID_GET, smc_pnet_policy$auto_smc_pnet]], f flags[send_flags])
+sendmsg$auto_TASKSTATS_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_TASKSTATS_auto[TASKSTATS_CMD_GET, taskstats_cmd_get_policy$auto_taskstats]], f flags[send_flags])
+sendmsg$auto_TCP_METRICS_CMD_DEL(fd sock_nl_generic, msg ptr[in, msghdr_tcp_metrics_auto[TCP_METRICS_CMD_DEL, tcp_metrics_nl_policy$auto_tcp_metrics]], f flags[send_flags])
+sendmsg$auto_TCP_METRICS_CMD_GET(fd sock_nl_generic, msg ptr[in, msghdr_tcp_metrics_auto[TCP_METRICS_CMD_GET, tcp_metrics_nl_policy$auto_tcp_metrics]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_CDEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_CDEV_GET, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_ADD(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_ADD, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_DELETE(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_DELETE, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_FLUSH, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_THRESHOLD_GET(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_THRESHOLD_GET, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_GOV(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_GOV, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_ID(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_ID, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_TEMP(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_TEMP, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_THERMAL_GENL_CMD_TZ_GET_TRIP(fd sock_nl_generic, msg ptr[in, msghdr_thermal_auto[THERMAL_GENL_CMD_TZ_GET_TRIP, thermal_genl_policy$auto_thermal_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_ADDR_LEGACY_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_ADDR_LEGACY_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_BEARER_ADD(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_ADD, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_BEARER_DISABLE(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_DISABLE, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_BEARER_ENABLE(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_ENABLE, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_BEARER_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_BEARER_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_BEARER_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_KEY_FLUSH(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_KEY_FLUSH, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_KEY_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_KEY_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_LINK_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_LINK_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_LINK_RESET_STATS(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_LINK_RESET_STATS, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_LINK_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_LINK_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_MEDIA_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MEDIA_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_MEDIA_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MEDIA_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_MON_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MON_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_MON_PEER_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MON_PEER_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_MON_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_MON_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_NAME_TABLE_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NAME_TABLE_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_NET_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NET_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_NET_SET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NET_SET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_NODE_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_NODE_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_PEER_REMOVE(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_PEER_REMOVE, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_PUBL_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_PUBL_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_SOCK_GET(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_SOCK_GET, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_TIPC_NL_UDP_GET_REMOTEIP(fd sock_nl_generic, msg ptr[in, msghdr_TIPCv2_auto[TIPC_NL_UDP_GET_REMOTEIP, tipc_nl_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_DEV_ATTR_SET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_ATTR_SET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_DEV_CONFIG_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_CONFIG_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_DEV_DEL(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_DEL, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_DEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_DEV_NEW(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_NEW, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_DEV_VSTATS_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_DEV_VSTATS_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_VDPA_CMD_MGMTDEV_GET(fd sock_nl_generic, msg ptr[in, msghdr_vdpa_auto[VDPA_CMD_MGMTDEV_GET, vdpa_nl_policy$auto_vdpa]], f flags[send_flags])
+sendmsg$auto_WG_CMD_GET_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_wireguard_auto[WG_CMD_GET_DEVICE, device_policy$auto_netlink]], f flags[send_flags])
+sendmsg$auto_WG_CMD_SET_DEVICE(fd sock_nl_generic, msg ptr[in, msghdr_wireguard_auto[WG_CMD_SET_DEVICE, device_policy$auto_netlink]], f flags[send_flags])
+sendto$auto(fd fd, buff ptr[inout, array[auto_todo]], len intptr, flags int32, addr ptr[inout, sockaddr$auto_record], addr_len int32)
+set_mempolicy$auto(mode int32, nmask ptr[in, intptr], maxnode intptr)
+set_mempolicy_home_node$auto(start intptr, len intptr, home_node intptr, flags intptr)
+set_robust_list$auto(head ptr[inout, robust_list_head$auto_record], len intptr)
+set_thread_area$auto(u_info ptr[inout, user_desc$auto_record])
+set_tid_address$auto(tidptr ptr[inout, int32])
+setdomainname$auto(name ptr[inout, string], len int32)
+setfsgid$auto(gid gid)
+setfsgid32$auto(gid gid)
+setfsuid$auto(uid uid)
+setfsuid32$auto(uid uid)
+setgid$auto(gid gid)
+setgid32$auto(gid gid)
+setgroups$auto(gidsetsize int32, grouplist ptr[inout, int32])
+setgroups32$auto(gidsetsize int32, grouplist ptr[inout, int32])
+sethostname$auto(name ptr[inout, string], len int32)
+setitimer$auto(which int32, value ptr[inout, __kernel_old_itimerval$auto_record], ovalue ptr[inout, __kernel_old_itimerval$auto_record])
+setns$auto(fd fd, flags int32)
+setpgid$auto(pid pid, pgid pid)
+setpriority$auto(which int32, who int32, niceval int32)
+setregid$auto(rgid gid, egid gid)
+setregid32$auto(rgid gid, egid gid)
+setresgid$auto(rgid gid, egid gid, sgid gid)
+setresgid32$auto(rgid gid, egid gid, sgid gid)
+setresuid$auto(ruid uid, euid uid, suid uid)
+setresuid32$auto(ruid uid, euid uid, suid uid)
+setreuid$auto(ruid uid, euid uid)
+setreuid32$auto(ruid uid, euid uid)
+setrlimit$auto(_resource int32, rlim ptr[inout, rlimit$auto_record])
+setsockopt$auto(fd fd, level int32, optname int32, optval ptr[inout, string], optlen int32)
+settimeofday$auto(tv ptr[inout, __kernel_old_timeval$auto_record], tz ptr[inout, timezone$auto_record])
+setuid$auto(uid uid)
+setuid32$auto(uid uid)
+setxattr$auto(pathname ptr[in, filename], name ptr[in, string], value ptr[in, array[auto_todo]], size intptr, flags int32)
+setxattrat$auto(dfd fd_dir, pathname ptr[in, filename], at_flags int32, name ptr[in, string], uargs ptr[in, xattr_args$auto_record], usize intptr)
+shmat$auto(shmid int32, shmaddr ptr[inout, string], shmflg int32)
+shmctl$auto(shmid int32, cmd int32, buf ptr[inout, shmid_ds$auto_record])
+shmdt$auto(shmaddr ptr[inout, string])
+shmget$auto(key int32, size intptr, shmflg int32)
+shutdown$auto(fd fd, how int32)
+sigaltstack$auto(uss ptr[in, sigaltstack$auto_record], uoss ptr[inout, sigaltstack$auto_record])
+signal$auto(sig int32, handler ptr[inout, ptr[in, auto_todo]])
+signalfd$auto(ufd fd, user_mask ptr[inout, sigset_t$auto_record], sizemask intptr)
+signalfd4$auto(ufd fd, user_mask ptr[inout, sigset_t$auto_record], sizemask intptr, flags int32)
+sigpending$auto(uset ptr[inout, intptr])
+sigprocmask$auto(how int32, nset ptr[inout, intptr], oset ptr[inout, intptr])
+sigsuspend$auto(unused1 const[0], unused2 const[0], mask intptr)
+socket$auto(family int32, type int32, protocol int32)
+socketcall$auto(call int32, args ptr[inout, intptr])
+socketpair$auto(family int32, type int32, protocol int32, usockvec ptr[inout, int32])
+splice$auto(fd_in fd, off_in ptr[inout, int64], fd_out fd, off_out ptr[inout, int64], len intptr, flags int32)
+ssetmask$auto(newmask int32)
+stat$auto(filename ptr[in, filename], statbuf ptr[inout, stat$auto_record])
+statfs$auto(pathname ptr[in, filename], buf ptr[inout, statfs$auto_record])
+statfs64$auto(pathname ptr[in, filename], sz intptr, buf ptr[inout, statfs64$auto_record])
+statmount$auto(req ptr[in, mnt_id_req$auto_record], buf ptr[inout, statmount$auto_record], bufsize intptr, flags int32)
+statx$auto(dfd fd_dir, filename ptr[in, filename], flags int32, mask int32, buffer ptr[inout, statx$auto_record])
+stime$auto(tptr ptr[inout, int32])
+swapoff$auto(specialfile ptr[in, string])
+swapon$auto(specialfile ptr[in, string], swap_flags int32)
+symlink$auto(oldname ptr[in, filename], newname ptr[in, filename])
+symlinkat$auto(oldname ptr[in, filename], newdfd fd_dir, newname ptr[in, filename])
+sync_file_range$auto(fd fd, offset intptr, nbytes intptr, flags int32)
+sync_file_range2$auto(fd fd, flags int32, offset intptr, nbytes intptr)
+syncfs$auto(fd fd)
+sysfs$auto(option int32, arg1 intptr, arg2 intptr)
+sysinfo$auto(info ptr[inout, sysinfo$auto_record])
+syslog$auto(type int32, buf ptr[inout, string], len int32)
+syz_genetlink_get_family_id$auto_802_15_4_MAC(name ptr[in, string["802.15.4 MAC"]], fd sock_nl_generic) genl_802_15_4_MAC_family_id_auto
+syz_genetlink_get_family_id$auto_HSR(name ptr[in, string["HSR"]], fd sock_nl_generic) genl_HSR_family_id_auto
+syz_genetlink_get_family_id$auto_IOAM6(name ptr[in, string["IOAM6"]], fd sock_nl_generic) genl_IOAM6_family_id_auto
+syz_genetlink_get_family_id$auto_IPVS(name ptr[in, string["IPVS"]], fd sock_nl_generic) genl_IPVS_family_id_auto
+syz_genetlink_get_family_id$auto_MAC80211_HWSIM(name ptr[in, string["MAC80211_HWSIM"]], fd sock_nl_generic) genl_MAC80211_HWSIM_family_id_auto
+syz_genetlink_get_family_id$auto_MAC802154_HWSIM(name ptr[in, string["MAC802154_HWSIM"]], fd sock_nl_generic) genl_MAC802154_HWSIM_family_id_auto
+syz_genetlink_get_family_id$auto_NCSI(name ptr[in, string["NCSI"]], fd sock_nl_generic) genl_NCSI_family_id_auto
+syz_genetlink_get_family_id$auto_NET_DM(name ptr[in, string["NET_DM"]], fd sock_nl_generic) genl_NET_DM_family_id_auto
+syz_genetlink_get_family_id$auto_NLBL_CALIPSO(name ptr[in, string["NLBL_CALIPSO"]], fd sock_nl_generic) genl_NLBL_CALIPSO_family_id_auto
+syz_genetlink_get_family_id$auto_NLBL_CIPSOv4(name ptr[in, string["NLBL_CIPSOv4"]], fd sock_nl_generic) genl_NLBL_CIPSOv4_family_id_auto
+syz_genetlink_get_family_id$auto_NLBL_MGMT(name ptr[in, string["NLBL_MGMT"]], fd sock_nl_generic) genl_NLBL_MGMT_family_id_auto
+syz_genetlink_get_family_id$auto_NLBL_UNLBL(name ptr[in, string["NLBL_UNLBL"]], fd sock_nl_generic) genl_NLBL_UNLBL_family_id_auto
+syz_genetlink_get_family_id$auto_SEG6(name ptr[in, string["SEG6"]], fd sock_nl_generic) genl_SEG6_family_id_auto
+syz_genetlink_get_family_id$auto_SMC_GEN_NETLINK(name ptr[in, string["SMC_GEN_NETLINK"]], fd sock_nl_generic) genl_SMC_GEN_NETLINK_family_id_auto
+syz_genetlink_get_family_id$auto_SMC_PNETID(name ptr[in, string["SMC_PNETID"]], fd sock_nl_generic) genl_SMC_PNETID_family_id_auto
+syz_genetlink_get_family_id$auto_TASKSTATS(name ptr[in, string["TASKSTATS"]], fd sock_nl_generic) genl_TASKSTATS_family_id_auto
+syz_genetlink_get_family_id$auto_TIPCv2(name ptr[in, string["TIPCv2"]], fd sock_nl_generic) genl_TIPCv2_family_id_auto
+syz_genetlink_get_family_id$auto_batadv(name ptr[in, string["batadv"]], fd sock_nl_generic) genl_batadv_family_id_auto
+syz_genetlink_get_family_id$auto_cifs(name ptr[in, string["cifs"]], fd sock_nl_generic) genl_cifs_family_id_auto
+syz_genetlink_get_family_id$auto_ethtool(name ptr[in, string["ethtool"]], fd sock_nl_generic) genl_ethtool_family_id_auto
+syz_genetlink_get_family_id$auto_gtp(name ptr[in, string["gtp"]], fd sock_nl_generic) genl_gtp_family_id_auto
+syz_genetlink_get_family_id$auto_handshake(name ptr[in, string["handshake"]], fd sock_nl_generic) genl_handshake_family_id_auto
+syz_genetlink_get_family_id$auto_ila(name ptr[in, string["ila"]], fd sock_nl_generic) genl_ila_family_id_auto
+syz_genetlink_get_family_id$auto_l2tp(name ptr[in, string["l2tp"]], fd sock_nl_generic) genl_l2tp_family_id_auto
+syz_genetlink_get_family_id$auto_macsec(name ptr[in, string["macsec"]], fd sock_nl_generic) genl_macsec_family_id_auto
+syz_genetlink_get_family_id$auto_nbd(name ptr[in, string["nbd"]], fd sock_nl_generic) genl_nbd_family_id_auto
+syz_genetlink_get_family_id$auto_net_shaper(name ptr[in, string["net-shaper"]], fd sock_nl_generic) genl_net_shaper_family_id_auto
+syz_genetlink_get_family_id$auto_netdev(name ptr[in, string["netdev"]], fd sock_nl_generic) genl_netdev_family_id_auto
+syz_genetlink_get_family_id$auto_nfc(name ptr[in, string["nfc"]], fd sock_nl_generic) genl_nfc_family_id_auto
+syz_genetlink_get_family_id$auto_nfsd(name ptr[in, string["nfsd"]], fd sock_nl_generic) genl_nfsd_family_id_auto
+syz_genetlink_get_family_id$auto_nl80211(name ptr[in, string["nl80211"]], fd sock_nl_generic) genl_nl80211_family_id_auto
+syz_genetlink_get_family_id$auto_nl802154(name ptr[in, string["nl802154"]], fd sock_nl_generic) genl_nl802154_family_id_auto
+syz_genetlink_get_family_id$auto_nlctrl(name ptr[in, string["nlctrl"]], fd sock_nl_generic) genl_nlctrl_family_id_auto
+syz_genetlink_get_family_id$auto_ovs_ct_limit(name ptr[in, string["ovs_ct_limit"]], fd sock_nl_generic) genl_ovs_ct_limit_family_id_auto
+syz_genetlink_get_family_id$auto_ovs_datapath(name ptr[in, string["ovs_datapath"]], fd sock_nl_generic) genl_ovs_datapath_family_id_auto
+syz_genetlink_get_family_id$auto_ovs_flow(name ptr[in, string["ovs_flow"]], fd sock_nl_generic) genl_ovs_flow_family_id_auto
+syz_genetlink_get_family_id$auto_ovs_meter(name ptr[in, string["ovs_meter"]], fd sock_nl_generic) genl_ovs_meter_family_id_auto
+syz_genetlink_get_family_id$auto_ovs_packet(name ptr[in, string["ovs_packet"]], fd sock_nl_generic) genl_ovs_packet_family_id_auto
+syz_genetlink_get_family_id$auto_ovs_vport(name ptr[in, string["ovs_vport"]], fd sock_nl_generic) genl_ovs_vport_family_id_auto
+syz_genetlink_get_family_id$auto_tcp_metrics(name ptr[in, string["tcp_metrics"]], fd sock_nl_generic) genl_tcp_metrics_family_id_auto
+syz_genetlink_get_family_id$auto_thermal(name ptr[in, string["thermal"]], fd sock_nl_generic) genl_thermal_family_id_auto
+syz_genetlink_get_family_id$auto_vdpa(name ptr[in, string["vdpa"]], fd sock_nl_generic) genl_vdpa_family_id_auto
+syz_genetlink_get_family_id$auto_wireguard(name ptr[in, string["wireguard"]], fd sock_nl_generic) genl_wireguard_family_id_auto
+tee$auto(fdin fd, fdout fd, len intptr, flags int32)
+tgkill$auto(tgid pid, pid pid, sig int32)
+time$auto(tloc ptr[inout, intptr])
+timer_create$auto(which_clock int32, timer_event_spec ptr[inout, sigevent$auto_record], created_timer_id ptr[inout, int32])
+timer_delete$auto(timer_id int32)
+timer_getoverrun$auto(timer_id int32)
+timer_gettime$auto(timer_id int32, setting ptr[inout, __kernel_itimerspec$auto_record])
+timer_gettime64$auto(timer_id int32, setting ptr[inout, __kernel_itimerspec$auto_record])
+timer_settime$auto(timer_id int32, flags int32, new_setting ptr[in, __kernel_itimerspec$auto_record], old_setting ptr[inout, __kernel_itimerspec$auto_record])
+timer_settime64$auto(timer_id int32, flags int32, new_setting ptr[in, __kernel_itimerspec$auto_record], old_setting ptr[inout, __kernel_itimerspec$auto_record])
+timerfd_create$auto(clockid int32, flags int32)
+timerfd_gettime$auto(ufd fd, otmr ptr[inout, __kernel_itimerspec$auto_record])
+timerfd_gettime64$auto(ufd fd, otmr ptr[inout, __kernel_itimerspec$auto_record])
+timerfd_settime$auto(ufd fd, flags int32, utmr ptr[in, __kernel_itimerspec$auto_record], otmr ptr[inout, __kernel_itimerspec$auto_record])
+timerfd_settime64$auto(ufd fd, flags int32, utmr ptr[in, __kernel_itimerspec$auto_record], otmr ptr[inout, __kernel_itimerspec$auto_record])
+times$auto(tbuf ptr[inout, tms$auto_record])
+tkill$auto(pid pid, sig int32)
+truncate$auto(path ptr[in, filename], length intptr)
+truncate64$auto(filename ptr[in, filename], offset_low intptr, offset_high intptr)
+ugetrlimit$auto(_resource int32, rlim ptr[inout, rlimit$auto_record])
+umask$auto(mask int32)
+umount$auto(name ptr[inout, string])
+umount2$auto(name ptr[inout, string], flags int32)
+uname$auto(name ptr[inout, new_utsname$auto_record])
+unlink$auto(pathname ptr[in, filename])
+unlinkat$auto(dfd fd_dir, pathname ptr[in, filename], flag int32)
+unshare$auto(unshare_flags intptr)
+userfaultfd$auto(flags int32)
+ustat$auto(dev int32, ubuf ptr[inout, ustat$auto_record])
+utime$auto(filename ptr[inout, filename], times ptr[inout, utimbuf$auto_record])
+utimensat$auto(dfd fd_dir, filename ptr[in, filename], utimes ptr[inout, __kernel_timespec$auto_record], flags int32)
+utimensat_time64$auto(dfd fd_dir, filename ptr[in, filename], utimes ptr[inout, __kernel_timespec$auto_record], flags int32)
+utimes$auto(filename ptr[inout, filename], utimes ptr[inout, __kernel_old_timeval$auto_record])
+vmsplice$auto(fd fd, uiov ptr[in, iovec$auto_record], nr_segs intptr, flags int32)
+wait4$auto(upid int32, stat_addr ptr[inout, int32], options int32, ru ptr[inout, rusage$auto_record])
+waitid$auto(which int32, upid int32, infop ptr[inout, siginfo$auto_record], options int32, ru ptr[inout, rusage$auto_record])
+waitpid$auto(pid pid, stat_addr ptr[inout, int32], options int32)
+write$auto(fd fd, buf ptr[in, string], count intptr)
+writev$auto(fd intptr, vec ptr[in, iovec$auto_record], vlen intptr)
__aio_sigset$auto_record {
sigmask ptr[in, sigset_t$auto_record]