diff options
author | Kevin Wolf | 2022-01-25 16:15:14 +0100 |
---|---|---|
committer | Kevin Wolf | 2022-02-01 13:49:15 +0100 |
commit | e66e665f15736f5ee1fbd8087926cb0f1e52f61a (patch) | |
tree | 333430aa5c511af21cd346c7ea430b76e2f6ba41 /storage-daemon | |
parent | Merge remote-tracking branch 'remotes/legoater/tags/pull-ppc-20220130' into s... (diff) | |
download | qemu-e66e665f15736f5ee1fbd8087926cb0f1e52f61a.tar.gz qemu-e66e665f15736f5ee1fbd8087926cb0f1e52f61a.tar.xz qemu-e66e665f15736f5ee1fbd8087926cb0f1e52f61a.zip |
qemu-storage-daemon: Fix typo in vhost-user-blk help
The syntax of the fd passing case misses the "addr.type=" key. Add it.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20220125151514.49035-1-kwolf@redhat.com>
Reviewed-by: Hanna Reitz <hreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'storage-daemon')
-rw-r--r-- | storage-daemon/qemu-storage-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage-daemon/qemu-storage-daemon.c b/storage-daemon/qemu-storage-daemon.c index 9d76d1114d..ec9aa79b55 100644 --- a/storage-daemon/qemu-storage-daemon.c +++ b/storage-daemon/qemu-storage-daemon.c @@ -111,7 +111,7 @@ static void help(void) " export the specified block node as a\n" " vhost-user-blk device over UNIX domain socket\n" " --export [type=]vhost-user-blk,id=<id>,node-name=<node-name>,\n" -" fd,addr.str=<fd>[,writable=on|off]\n" +" addr.type=fd,addr.str=<fd>[,writable=on|off]\n" " [,logical-block-size=<block-size>][,num-queues=<num-queues>]\n" " export the specified block node as a\n" " vhost-user-blk device over file descriptor\n" |