mirror of https://gitee.com/openkylin/libvirt.git
qemu: add wait-unplug to qemu migration status enum
Aside from itinerant error (actually warning) messages due to an unrecognized response from qemu, this isn't even necessary - the migration proceeds successfully to completion anyway. (I'm not sure where to see this status reported in the API though - do we need to add an extra state, or recognition of a new event somewhere?) Signed-off-by: Laine Stump <laine@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
2758f680b7
commit
8a226ddb36
|
@ -1456,6 +1456,7 @@ qemuMigrationUpdateJobType(qemuDomainJobInfoPtr jobInfo)
|
|||
case QEMU_MONITOR_MIGRATION_STATUS_SETUP:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_ACTIVE:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_CANCELLING:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_WAIT_UNPLUG:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_LAST:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -167,6 +167,7 @@ VIR_ENUM_IMPL(qemuMonitorMigrationStatus,
|
|||
"device", "postcopy-active",
|
||||
"completed", "failed",
|
||||
"cancelling", "cancelled",
|
||||
"wait-unplug",
|
||||
);
|
||||
|
||||
VIR_ENUM_IMPL(qemuMonitorVMStatus,
|
||||
|
|
|
@ -767,6 +767,7 @@ typedef enum {
|
|||
QEMU_MONITOR_MIGRATION_STATUS_ERROR,
|
||||
QEMU_MONITOR_MIGRATION_STATUS_CANCELLING,
|
||||
QEMU_MONITOR_MIGRATION_STATUS_CANCELLED,
|
||||
QEMU_MONITOR_MIGRATION_STATUS_WAIT_UNPLUG,
|
||||
|
||||
QEMU_MONITOR_MIGRATION_STATUS_LAST
|
||||
} qemuMonitorMigrationStatus;
|
||||
|
|
|
@ -3513,6 +3513,7 @@ qemuMonitorJSONGetMigrationStatsReply(virJSONValuePtr reply,
|
|||
case QEMU_MONITOR_MIGRATION_STATUS_INACTIVE:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_SETUP:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_CANCELLED:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_WAIT_UNPLUG:
|
||||
case QEMU_MONITOR_MIGRATION_STATUS_LAST:
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue