From 95e7a88b9746c73e727b94d85a626cf6dd612f16 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 10 Jul 2018 16:18:45 +0200 Subject: sys/linux: implement fuse as normal syscalls Remove syz_fuse* and implement them as normal syscalls. We not have enough expressive power to form mount options. --- sys/linux/fuse_arm.const | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sys/linux/fuse_arm.const') diff --git a/sys/linux/fuse_arm.const b/sys/linux/fuse_arm.const index b47514051..b5d91d5d9 100644 --- a/sys/linux/fuse_arm.const +++ b/sys/linux/fuse_arm.const @@ -1,7 +1,9 @@ # AUTOGENERATED FILE +# AT_FDCWD is not set FUSE_DEV_IOC_CLONE = 2147804416 FUSE_KERNEL_MINOR_VERSION = 27 FUSE_KERNEL_VERSION = 7 +# O_RDWR is not set S_IFBLK = 24576 S_IFCHR = 8192 S_IFDIR = 16384 @@ -10,4 +12,6 @@ S_IFLNK = 40960 S_IFREG = 32768 S_IFSOCK = 49152 __NR_ioctl = 54 +__NR_mount = 21 +__NR_openat = 322 __NR_write = 4 -- cgit mrf-deployment