[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 05/10] qemu-options: update to show preferred boolean syntax for
From: |
Daniel P . Berrangé |
Subject: |
[PATCH 05/10] qemu-options: update to show preferred boolean syntax for -incoming |
Date: |
Tue, 16 Feb 2021 19:10:22 +0000 |
The preferred syntax is to use "foo=on|off", rather than a bare
"foo" or "nofoo".
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
qemu-options.hx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/qemu-options.hx b/qemu-options.hx
index fb2050cda9..da0ddf8a3a 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -4135,8 +4135,8 @@ SRST
ERST
DEF("incoming", HAS_ARG, QEMU_OPTION_incoming, \
- "-incoming tcp:[host]:port[,to=maxport][,ipv4][,ipv6]\n" \
- "-incoming rdma:host:port[,ipv4][,ipv6]\n" \
+ "-incoming tcp:[host]:port[,to=maxport][,ipv4=on|off][,ipv6=on|off]\n" \
+ "-incoming rdma:host:port[,ipv4=on|off][,ipv6=on|off]\n" \
"-incoming unix:socketpath\n" \
" prepare for incoming migration, listen on\n" \
" specified protocol and socket address\n" \
@@ -4148,9 +4148,9 @@ DEF("incoming", HAS_ARG, QEMU_OPTION_incoming, \
" wait for the URI to be specified via migrate_incoming\n",
QEMU_ARCH_ALL)
SRST
-``-incoming tcp:[host]:port[,to=maxport][,ipv4][,ipv6]``
+``-incoming tcp:[host]:port[,to=maxport][,ipv4=on|off][,ipv6=on|off]``
\
-``-incoming rdma:host:port[,ipv4][,ipv6]``
+``-incoming rdma:host:port[,ipv4=on|off][,ipv6=on|off]``
Prepare for incoming migration, listen on a given tcp port.
``-incoming unix:socketpath``
--
2.29.2
- [PATCH 00/10] qemu-options: always use key=on|off syntax for bool option docs, Daniel P . Berrangé, 2021/02/16
- [PATCH 01/10] gdbstub: use preferred boolean option syntax, Daniel P . Berrangé, 2021/02/16
- [PATCH 02/10] qemu-options: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 03/10] qemu-options: update to show preferred boolean syntax for -spice, Daniel P . Berrangé, 2021/02/16
- [PATCH 05/10] qemu-options: update to show preferred boolean syntax for -incoming,
Daniel P . Berrangé <=
- [PATCH 04/10] qemu-options: update to show preferred boolean syntax for -netdev, Daniel P . Berrangé, 2021/02/16
- [PATCH 08/10] docs: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 06/10] qemu-options: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 07/10] docs: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 09/10] docs: update to show preferred boolean syntax for -cpu, Daniel P . Berrangé, 2021/02/16
- [PATCH 10/10] target/i386: update to show preferred boolean syntax for -cpu, Daniel P . Berrangé, 2021/02/16