aboutsummaryrefslogtreecommitdiff
path: root/target/i386/kvm-stub.c
diff options
context:
space:
mode:
authorRoman Kagan <rkagan@virtuozzo.com>2018-07-02 16:41:56 +0300
committerPaolo Bonzini <pbonzini@redhat.com>2018-07-16 16:58:16 +0200
commite9688fabc32b532c9a93794c37e343facd5ecd36 (patch)
treed3358975667874d13bc45827abb3a0a97c11b371 /target/i386/kvm-stub.c
parent1b2013ea5ddfd7d6a1426bd716dd6528ec91a8a7 (diff)
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>
Diffstat (limited to 'target/i386/kvm-stub.c')
-rw-r--r--target/i386/kvm-stub.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/target/i386/kvm-stub.c b/target/i386/kvm-stub.c
index bda4dc2f0c..e7a673e5db 100644
--- a/target/i386/kvm-stub.c
+++ b/target/i386/kvm-stub.c
@@ -40,3 +40,8 @@ uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
abort();
}
#endif
+
+bool kvm_hv_vpindex_settable(void)
+{
+ return false;
+}