diff options
author | Max Reitz | 2021-02-17 12:58:44 +0100 |
---|---|---|
committer | Max Reitz | 2021-03-29 18:28:33 +0200 |
commit | 220222a0fecf0fbd9f49633abef552dd019ab9cd (patch) | |
tree | 6902d843bcd2adbccbe9f3371256fa9533df843f /storage-daemon | |
parent | block/mirror: Fix mirror_top's permissions (diff) | |
download | qemu-220222a0fecf0fbd9f49633abef552dd019ab9cd.tar.gz qemu-220222a0fecf0fbd9f49633abef552dd019ab9cd.tar.xz qemu-220222a0fecf0fbd9f49633abef552dd019ab9cd.zip |
qsd: Document FUSE exports
Implementing FUSE exports required no changes to the storage daemon, so
we forgot to document them there. Considering that both NBD and
vhost-user-blk exports are documented in its man page (and NBD exports
in its --help text), we should probably do the same for FUSE.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20210217115844.62661-1-mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'storage-daemon')
-rw-r--r-- | storage-daemon/qemu-storage-daemon.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/storage-daemon/qemu-storage-daemon.c b/storage-daemon/qemu-storage-daemon.c index 72900dc2ec..fc8b150629 100644 --- a/storage-daemon/qemu-storage-daemon.c +++ b/storage-daemon/qemu-storage-daemon.c @@ -98,6 +98,10 @@ static void help(void) " export the specified block node over NBD\n" " (requires --nbd-server)\n" "\n" +" --export [type=]fuse,id=<id>,node-name=<node-name>,mountpoint=<file>\n" +" [,growable=on|off][,writable=on|off]\n" +" export the specified block node over FUSE\n" +"\n" " --monitor [chardev=]name[,mode=control][,pretty[=on|off]]\n" " configure a QMP monitor\n" "\n" |