qmp-commands.hx: Clean up mess of client_migrate_info
client_migrate_info was put into qmp-commands.hx in the middle of migrate_set_speed, between the command and it's description. In addition client_migrate_info put the description before the command itself, which is the wrong order. Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
821601ea5b
commit
ff73edf514
@ -502,41 +502,6 @@ EQMP
|
||||
.mhandler.cmd_new = do_migrate_set_speed,
|
||||
},
|
||||
|
||||
SQMP
|
||||
client_migrate_info
|
||||
------------------
|
||||
|
||||
Set the spice/vnc connection info for the migration target. The spice/vnc
|
||||
server will ask the spice/vnc client to automatically reconnect using the
|
||||
new parameters (if specified) once the vm migration finished successfully.
|
||||
|
||||
Arguments:
|
||||
|
||||
- "protocol": protocol: "spice" or "vnc" (json-string)
|
||||
- "hostname": migration target hostname (json-string)
|
||||
- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
|
||||
- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
|
||||
- "cert-subject": server certificate subject (json-string, optional)
|
||||
|
||||
Example:
|
||||
|
||||
-> { "execute": "client_migrate_info",
|
||||
"arguments": { "protocol": "spice",
|
||||
"hostname": "virt42.lab.kraxel.org",
|
||||
"port": 1234 } }
|
||||
<- { "return": {} }
|
||||
|
||||
EQMP
|
||||
|
||||
{
|
||||
.name = "client_migrate_info",
|
||||
.args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
|
||||
.params = "protocol hostname port tls-port cert-subject",
|
||||
.help = "send migration info to spice/vnc client",
|
||||
.user_print = monitor_user_noop,
|
||||
.mhandler.cmd_new = client_migrate_info,
|
||||
},
|
||||
|
||||
SQMP
|
||||
migrate_set_speed
|
||||
-----------------
|
||||
@ -578,6 +543,41 @@ Example:
|
||||
-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
|
||||
<- { "return": {} }
|
||||
|
||||
EQMP
|
||||
|
||||
{
|
||||
.name = "client_migrate_info",
|
||||
.args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
|
||||
.params = "protocol hostname port tls-port cert-subject",
|
||||
.help = "send migration info to spice/vnc client",
|
||||
.user_print = monitor_user_noop,
|
||||
.mhandler.cmd_new = client_migrate_info,
|
||||
},
|
||||
|
||||
SQMP
|
||||
client_migrate_info
|
||||
------------------
|
||||
|
||||
Set the spice/vnc connection info for the migration target. The spice/vnc
|
||||
server will ask the spice/vnc client to automatically reconnect using the
|
||||
new parameters (if specified) once the vm migration finished successfully.
|
||||
|
||||
Arguments:
|
||||
|
||||
- "protocol": protocol: "spice" or "vnc" (json-string)
|
||||
- "hostname": migration target hostname (json-string)
|
||||
- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
|
||||
- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
|
||||
- "cert-subject": server certificate subject (json-string, optional)
|
||||
|
||||
Example:
|
||||
|
||||
-> { "execute": "client_migrate_info",
|
||||
"arguments": { "protocol": "spice",
|
||||
"hostname": "virt42.lab.kraxel.org",
|
||||
"port": 1234 } }
|
||||
<- { "return": {} }
|
||||
|
||||
EQMP
|
||||
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user