Given the following program: #include <stdio.h> #include <sys/mount.h> #include <unistd.h> int main(void) { int fsd = fsopen("ext4", FSOPEN_CLOEXEC); printf("fsd: 0x%x\n", fsd); return 0; } WARNING: unhandled amd64-linux syscall: 430
Note that this syscall is part of a group of not yet wrapped syscalls: fsopen, open_tree, move_mount, fsconfig, fsmount and fspick
commit 4044bcea0427853fc44a3d02a0fc0b2a81935452 Author: Mark Wielaard <mark@klomp.org> Date: Tue Nov 26 19:00:34 2024 +0100 Add open_tree, move_mount, fsopen, fsconfig, fsmount, fspick linux syswraps Shared linux syscalls implementing various file system mount tasks. Since linux kernel version 5.2. Check arguments and track file descriptors. https://bugs.kde.org/show_bug.cgi?id=494246