aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux
diff options
context:
space:
mode:
authorStefano Duo <stefanoduo@google.com>2020-07-22 14:23:13 +0000
committerDmitry Vyukov <dvyukov@google.com>2020-08-14 18:55:11 +0200
commitaa6107e60d2616837cbf09be1e371132718306dc (patch)
treea18276f979b6f7948aa7744b67bbf2be1778a723 /sys/linux
parent19b6584f719a7fd28b8d0851c4e9b5cb20be35df (diff)
sys/linux/fs_fuse.txt: use bytelen instead of len
Use the type bytelen instead of len to express the length of the data structure being pointed by the pointer passed to read$FUSE().
Diffstat (limited to 'sys/linux')
-rw-r--r--sys/linux/fs_fuse.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/linux/fs_fuse.txt b/sys/linux/fs_fuse.txt
index d7d887a9e..ce75b6d6b 100644
--- a/sys/linux/fs_fuse.txt
+++ b/sys/linux/fs_fuse.txt
@@ -13,9 +13,9 @@ openat$fuse(fd const[AT_FDCWD], file ptr[in, string["/dev/fuse"]], flags const[O
openat$cuse(fd const[AT_FDCWD], file ptr[in, string["/dev/cuse"]], flags const[O_RDWR], mode const[0]) fd_fuse
ioctl$FUSE_DEV_IOC_CLONE(fd fd_fuse, cmd const[FUSE_DEV_IOC_CLONE], arg ptr[in, fd_fuse])
-mount$fuse(src const[0], dst ptr[in, filename], type ptr[in, string["fuse"]], flags flags[mount_flags], opts ptr[in, fuse_options])
type read_buffer array[int8, FUSE_MIN_READ_BUFFER]
-read$FUSE(fd fd_fuse, buf ptr[out, fuse_in[read_buffer]], len len[buf])
+read$FUSE(fd fd_fuse, buf ptr[out, fuse_in[read_buffer]], len bytesize[buf])
+mount$fuse(src const[0], dst ptr[in, filename], type ptr[in, string["fuse"]], flags flags[mount_flags], opts ptr[in, fuse_options])
mount$fuseblk(src ptr[in, string["/dev/loop0"]], dst ptr[in, filename], type ptr[in, string["fuseblk"]], flags flags[mount_flags], opts ptr[in, fuse_options])
write$FUSE_INTERRUPT(fd fd_fuse, arg ptr[in, fuse_out[void]], len bytesize[arg])