virtio-blk num-queue is visible to guest OS, so this must be kept while
live migration.
Signed-off-by: Hiroki Narukawa <hnarukaw@yahoo-corp.jp>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
return false;
}
+ if (src->queues != dst->queues) {
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
+ _("Target disk queue count %u does not match source %u"),
+ dst->queues, src->queues);
+ return false;
+ }
+
if (!virDomainVirtioOptionsCheckABIStability(src->virtio, dst->virtio))
return false;