[Virtio-fs] [PATCH 2/3] virtiofsd: add some options to the man page

Masayoshi Mizuma msys.mizuma at gmail.com
Wed Dec 18 20:08:32 UTC 2019


From: Masayoshi Mizuma <m.mizuma at jp.fujitsu.com>

Add following options to the man page:
- flock|no_flock
- norace
- posix_lock|no_posix_lock
- readdirplus|no_readdirplus
- timeout
- writeback|no_writeback
- xattr|no_xattr

Signed-off-by: Masayoshi Mizuma <m.mizuma at jp.fujitsu.com>
---
 tools/virtiofsd/virtiofsd.texi | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/tools/virtiofsd/virtiofsd.texi b/tools/virtiofsd/virtiofsd.texi
index eec7fbf4e6..76eb219676 100644
--- a/tools/virtiofsd/virtiofsd.texi
+++ b/tools/virtiofsd/virtiofsd.texi
@@ -34,12 +34,34 @@ Print version.
 Enable debug output.
 @item --syslog
 Print log messages to syslog instead of stderr.
+ at item -o flock|no_flock
+enable/disable flock.
+The default is @var{no_flock}.
 @item -o log_level=@var{level}
 Print only log messages matching @var{level} or more severe.  @var{level} is
 one of @code{err}, @code{warn}, @code{info}, or @code{debug}.  The default is
 @var{info}.
+ at item -o norace
+Disable racy fallback.
+The default is false.
+ at item -o posix_lock|no_posix_lock
+Enable/Disable remote posix lock.
+The default is @var{posix_lock}.
+ at item -o readdirplus|no_readdirplus
+Enable/Disable readdirplus.
+The default is @var{readdirplus}
 @item -o source=@var{path}
 Share host directory tree located at @var{path}.  This option is required.
+ at item -o timeout=<number>
+I/O timeout (second).
+The default depends on cache= option.
+ at item -o writeback|no_writeback
+Enable/Disable writeback cache. The cache alows the FUSE client
+to buffer and merge write requests.
+The default is @var{no_writeback}.
+ at item -o xattr|no_xattr
+Enable/Disable Extended attributes (xattr) of the files and directories.
+The default is @var{no_xattr}.
 @item --socket-path=@var{path}, -o vhost_user_socket=@var{path}
 Listen on vhost-user UNIX domain socket at @var{path}.
 @item --fd=@var{fdnum}
-- 
2.18.1





More information about the Virtio-fs mailing list