diff options
author | Junichi Uekawa <dancerj@gmail.com> | 2020-08-09 20:35:28 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 12:35:28 +0100 |
commit | e8a9e84672dcaa892d4708c163f768dc177b6d4c (patch) | |
tree | cd6c209ff029f55aee72a15548f8064040bcaeed | |
parent | d1deae6968c49d83334e874c33abfe15824c4548 (diff) | |
download | libfuse-e8a9e84672dcaa892d4708c163f768dc177b6d4c.tar.gz |
Doc fixes (#537)
* Add fallocate to list of operations that may omit path.
* earlier versions is 10+ years old.
Document is not obvious how old it is. Add it.
* Update manpage link
-rw-r--r-- | doc/kernel.txt | 4 | ||||
-rw-r--r-- | include/fuse.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/kernel.txt b/doc/kernel.txt index e73484f..6e7c7a1 100644 --- a/doc/kernel.txt +++ b/doc/kernel.txt @@ -70,7 +70,7 @@ The filesystem type given to mount(2) can be one of the following: Mount options ~~~~~~~~~~~~~ -See mount.fuse(8). +See mount.fuse3(8). Control filesystem ~~~~~~~~~~~~~~~~~~ @@ -80,7 +80,7 @@ There's a control filesystem for FUSE, which can be mounted by: mount -t fusectl none /sys/fs/fuse/connections Mounting it under the '/sys/fs/fuse/connections' directory makes it -backwards compatible with earlier versions. +backwards compatible with versions before 2.6.0. Under the fuse control filesystem each connection has a directory named by a unique number. diff --git a/include/fuse.h b/include/fuse.h index a92d5ee..7ffae41 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -255,8 +255,8 @@ struct fuse_config { /** * If this option is given the file-system handlers for the * following operations will not receive path information: - * read, write, flush, release, fsync, readdir, releasedir, - * fsyncdir, lock, ioctl and poll. + * read, write, flush, release, fallocate, fsync, readdir, + * releasedir, fsyncdir, lock, ioctl and poll. * * For the truncate, getattr, chmod, chown and utimens * operations the path will be provided only if the struct |