net: Only show vhost-user in the help text if CONFIG_POSIX is defined
authorThomas Huth <thuth@redhat.com>
Wed, 21 Feb 2018 10:18:32 +0000 (11:18 +0100)
committerJason Wang <jasowang@redhat.com>
Mon, 5 Mar 2018 02:30:15 +0000 (10:30 +0800)
According to net/Makefile.objs we only link in the vhost-user code
if CONFIG_POSIX has been set. So the help screen should also only
show this information if CONFIG_POSIX has been defined.

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
qemu-options.hx

index fea949dd561fae2483f691df467bf20edc11a5b6..57815998f106b55836af809622d54c1706f437dc 100644 (file)
@@ -1998,8 +1998,10 @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
     "                VALE port (created on the fly) called 'name' ('nmname' is name of the \n"
     "                netmap device, defaults to '/dev/netmap')\n"
 #endif
+#ifdef CONFIG_POSIX
     "-netdev vhost-user,id=str,chardev=dev[,vhostforce=on|off]\n"
     "                configure a vhost-user network, backed by a chardev 'dev'\n"
+#endif
     "-netdev hubport,id=str,hubid=n[,netdev=nd]\n"
     "                configure a hub port on QEMU VLAN 'n'\n", QEMU_ARCH_ALL)
 DEF("net", HAS_ARG, QEMU_OPTION_net,