qemu: Check TSC frequency before starting QEMU
commit7da62c91f043209e3d40c2dc7655c5e35a4309bf
authorJiri Denemark <jdenemar@redhat.com>
Thu, 30 May 2019 22:03:59 +0000 (31 00:03 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Mon, 3 Jun 2019 16:07:16 +0000 (3 18:07 +0200)
tree90e2f9db3b317ed718b1c837416f615b4896b814
parentceb04d15e671b4fea1d674ee43c91410da9fe57d
qemu: Check TSC frequency before starting QEMU

When migrating a domain with invtsc CPU feature enabled, the TSC
frequency of the destination host must match the frequency used when the
domain was started on the source host or the destination host has to
support TSC scaling.

If the frequencies do not match and the destination host does not
support TSC scaling, QEMU will fail to set the right TSC frequency when
starting vCPUs on the destination and thus migration will fail. However,
this is quite late since both host might have spent significant time
transferring memory and perhaps even storage data.

By adding the check to libvirt we can let migration fail before any data
starts to be sent over. If for some reason libvirt is unable to detect
the host's TSC frequency or scaling support, we'll just let QEMU try and
the migration will either succeed or fail later.

Luckily, we mandate TSC frequency to be explicitly set in the domain XML
to even allow migration of domains with invtsc. We can just check
whether the requested frequency is compatible with the current host
before starting QEMU.

https://bugzilla.redhat.com/show_bug.cgi?id=1641702

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
src/qemu/qemu_process.c