sergio-j-cazzolato@localhost:~$ SNAP_SECCOMP_DEBUG=1 /usr/lib/snapd/snap-seccomp compile <(echo mknod) /tmp/xxx
#
# pseudo filter code start
#
# filter for arch aarch64 (3221225655)
if ($arch == 3221225655)
# filter for syscall "mknod" (-10165) [priority: 65535]
if ($syscall == -10165)
action ALLOW;
# default action
action KILL;
# filter for arch arm (1073741864)
if ($arch == 1073741864)
# filter for syscall "mknod" (14) [priority: 65535]
if ($syscall == 14)
action ALLOW;
# default action
action KILL;
# invalid architecture action
action KILL;
#
# pseudo filter code end
#