mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
qemuMonitorJSONGetMigrationParams: Don't return early on CommandNotFound
The qemuMonitorJSONGetMigrationParams() function executes 'query-migrate-parameters' command and returns early if QEMU doesn't know the command. Well, the command was introduced in QEMU release 2.4 (specifically in commit v2.4.0-rc0~147^2~3) and since the minimum required version is 2.11.0 we can be sure that the command will always exist. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
7ce6a2f30e
commit
8534008c36
@ -2381,9 +2381,7 @@ qemuMonitorSetMigrationCacheSize(qemuMonitor *mon,
|
||||
* @mon: Pointer to the monitor object.
|
||||
* @params: Where to store migration parameters.
|
||||
*
|
||||
* If QEMU does not support querying migration parameters, the function will
|
||||
* set @params to NULL and return 0 (success). The caller is responsible for
|
||||
* freeing @params.
|
||||
* The caller is responsible for freeing @params.
|
||||
*
|
||||
* Returns 0 on success, -1 on error.
|
||||
*/
|
||||
|
@ -3281,11 +3281,6 @@ qemuMonitorJSONGetMigrationParams(qemuMonitor *mon,
|
||||
if (qemuMonitorJSONCommand(mon, cmd, &reply) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (qemuMonitorJSONHasError(reply, "CommandNotFound")) {
|
||||
ret = 0;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (qemuMonitorJSONCheckReply(cmd, reply, VIR_JSON_TYPE_OBJECT) < 0)
|
||||
goto cleanup;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user