bool inPostCopy = false;
unsigned int waitFlags;
virDomainDefPtr persistDef = NULL;
+ char *timestamp;
int rc;
VIR_DEBUG("driver=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
goto exit_monitor;
}
+ /* log start of migration */
+ if ((timestamp = virTimeStringNow()) != NULL) {
+ qemuDomainLogAppendMessage(driver, vm, "%s: initiating migration\n", timestamp);
+ VIR_FREE(timestamp);
+ }
+
switch (spec->destType) {
case MIGRATION_DEST_HOST:
if (STREQ(spec->dest.host.protocol, "rdma") &&