From: Nikolaus Rath Date: Sun, 16 Oct 2016 21:18:07 +0000 (-0700) Subject: fuse_session_new(): instead of listing options, refer to mount.fuse(8) X-Git-Tag: fuse-3.0.0rc1~35 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=93849ac2aa81f1bb2a858575386512ce01d725de;p=qemu-gpiodev%2Flibfuse.git fuse_session_new(): instead of listing options, refer to mount.fuse(8) --- diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index f17920d..d3b3e35 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -1673,16 +1673,11 @@ int fuse_parse_cmdline(struct fuse_args *args, * Returns a session structure suitable for passing to * fuse_session_mount() and fuse_session_loop(). * - * Under Linux, this function accepts the following options: - * - * -d, --debug enable debugging output - * -o allow_other allow access to other users - * -o allow_root allow access to root - * -o auto_unmount auto unmount on process termination - * -o default_permissions enable permission checking by kernel - * -o fsname=NAME set filesystem name - * -o subtype=NAME set filesystem type - * -o max_read=N set maximum size of read requests + * This function accepts most file-system independent mount options + * (like context, nodev, ro - see mount(8)), as well as the general + * fuse mount options listed in mount.fuse(8) (e.g. -o allow_root and + * -o default_permissions, but not ``-o use_ino``). Instead of `-o + * debug`, debugging may also enabled with `-d` or `--debug`. * * If not all options are known, an error message is written to stderr * and the function returns NULL.