OSDN Git Service

KVM: x86: Check for existing Hyper-V vCPU in kvm_hv_vcpu_init()
authorSean Christopherson <seanjc@google.com>
Tue, 30 Aug 2022 13:37:08 +0000 (15:37 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 26 Sep 2022 16:02:38 +0000 (12:02 -0400)
commit1cac8d9f6bd25df3713103e44e2d9ca0c2e03c33
tree1484b38a98d17ba076c2ac413a4a411cd961f9e6
parentce2196b831b1e9f8982b2904fc3e8658cc0e6573
KVM: x86: Check for existing Hyper-V vCPU in kvm_hv_vcpu_init()

When potentially allocating/initializing the Hyper-V vCPU struct, check
for an existing instance in kvm_hv_vcpu_init() instead of requiring
callers to perform the check.  Relying on callers to do the check is
risky as it's all too easy for KVM to overwrite vcpu->arch.hyperv and
leak memory, and it adds additional burden on callers without much
benefit.

No functional change intended.

Signed-off-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Sean Christopherson <seanjc@google.com>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20220830133737.1539624-5-vkuznets@redhat.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/hyperv.c