]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
KVM: x86: hyper-v: Rename vcpu_to_hv_syndbg() to to_hv_syndbg()
authorVitaly Kuznetsov <vkuznets@redhat.com>
Tue, 26 Jan 2021 13:48:08 +0000 (14:48 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 9 Feb 2021 13:17:12 +0000 (08:17 -0500)
vcpu_to_hv_syndbg()'s argument is  always 'vcpu' so there's no need to have
an additional prefix. Also, this makes the code more consistent with
vmx/svm where to_vmx()/to_svm() are being used.

No functional change intended.

Suggested-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Message-Id: <20210126134816.1880136-8-vkuznets@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/hyperv.c
arch/x86/kvm/hyperv.h

index b02adaa0bb537dece6bef02352cdd2f86fc8d931..b7e3fab01189aaec975eb08e8a7f449ffcdd5d24 100644 (file)
@@ -294,7 +294,7 @@ static int kvm_hv_syndbg_complete_userspace(struct kvm_vcpu *vcpu)
 
 static void syndbg_exit(struct kvm_vcpu *vcpu, u32 msr)
 {
-       struct kvm_hv_syndbg *syndbg = vcpu_to_hv_syndbg(vcpu);
+       struct kvm_hv_syndbg *syndbg = to_hv_syndbg(vcpu);
        struct kvm_vcpu_hv *hv_vcpu = &vcpu->arch.hyperv;
 
        hv_vcpu->exit.type = KVM_EXIT_HYPERV_SYNDBG;
@@ -311,7 +311,7 @@ static void syndbg_exit(struct kvm_vcpu *vcpu, u32 msr)
 
 static int syndbg_set_msr(struct kvm_vcpu *vcpu, u32 msr, u64 data, bool host)
 {
-       struct kvm_hv_syndbg *syndbg = vcpu_to_hv_syndbg(vcpu);
+       struct kvm_hv_syndbg *syndbg = to_hv_syndbg(vcpu);
 
        if (!kvm_hv_is_syndbg_enabled(vcpu) && !host)
                return 1;
@@ -350,7 +350,7 @@ static int syndbg_set_msr(struct kvm_vcpu *vcpu, u32 msr, u64 data, bool host)
 
 static int syndbg_get_msr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host)
 {
-       struct kvm_hv_syndbg *syndbg = vcpu_to_hv_syndbg(vcpu);
+       struct kvm_hv_syndbg *syndbg = to_hv_syndbg(vcpu);
 
        if (!kvm_hv_is_syndbg_enabled(vcpu) && !host)
                return 1;
@@ -1873,7 +1873,7 @@ int kvm_hv_hypercall(struct kvm_vcpu *vcpu)
                }
                fallthrough;
        case HVCALL_RESET_DEBUG_SESSION: {
-               struct kvm_hv_syndbg *syndbg = vcpu_to_hv_syndbg(vcpu);
+               struct kvm_hv_syndbg *syndbg = to_hv_syndbg(vcpu);
 
                if (!kvm_hv_is_syndbg_enabled(vcpu)) {
                        ret = HV_STATUS_INVALID_HYPERCALL_CODE;
index 48fcabacd3390e09892590726e109bbba9670fdf..220849cc12e5d89d77ef417a420622d7553b42cb 100644 (file)
@@ -73,7 +73,7 @@ static inline struct kvm_vcpu *hv_synic_to_vcpu(struct kvm_vcpu_hv_synic *synic)
        return hv_vcpu_to_vcpu(container_of(synic, struct kvm_vcpu_hv, synic));
 }
 
-static inline struct kvm_hv_syndbg *vcpu_to_hv_syndbg(struct kvm_vcpu *vcpu)
+static inline struct kvm_hv_syndbg *to_hv_syndbg(struct kvm_vcpu *vcpu)
 {
        return &vcpu->kvm->arch.hyperv.hv_syndbg;
 }