]> git.ipfire.org Git - thirdparty/qemu.git/commit - target/i386/kvm.c
hyperv: ensure VP index equal to QEMU cpu_index
authorRoman Kagan <rkagan@virtuozzo.com>
Mon, 2 Jul 2018 13:41:56 +0000 (16:41 +0300)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 16 Jul 2018 14:58:16 +0000 (16:58 +0200)
commite9688fabc32b532c9a93794c37e343facd5ecd36
treed3358975667874d13bc45827abb3a0a97c11b371
parent1b2013ea5ddfd7d6a1426bd716dd6528ec91a8a7
hyperv: ensure VP index equal to QEMU cpu_index

Hyper-V identifies vCPUs by Virtual Processor (VP) index which can be
queried by the guest via HV_X64_MSR_VP_INDEX msr.  It is defined by the
spec as a sequential number which can't exceed the maximum number of
vCPUs per VM.

It has to be owned by QEMU in order to preserve it across migration.

However, the initial implementation in KVM didn't allow to set this
msr, and KVM used its own notion of VP index.  Fortunately, the way
vCPUs are created in QEMU/KVM makes it likely that the KVM value is
equal to QEMU cpu_index.

So choose cpu_index as the value for vp_index, and push that to KVM on
kernels that support setting the msr.  On older ones that don't, query
the kernel value and assert that it's in sync with QEMU.

Besides, since handling errors from vCPU init at hotplug time is
impossible, disable vCPU hotplug.

This patch also introduces accessor functions to encapsulate the mapping
between a vCPU and its vp_index.

Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
Message-Id: <20180702134156.13404-3-rkagan@virtuozzo.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/i386/pc.c
target/i386/hyperv.c
target/i386/hyperv.h
target/i386/kvm-stub.c
target/i386/kvm.c
target/i386/kvm_i386.h