KVM: arm64: debug: Drop useless vpcu parameter
authorMarc Zyngier <maz@kernel.org>
Fri, 5 Jul 2019 10:25:10 +0000 (11:25 +0100)
committerMarc Zyngier <maz@kernel.org>
Tue, 7 Jul 2020 08:28:38 +0000 (09:28 +0100)
As part of the ongoing spring cleanup, remove the now useless
vcpu parameter that is passed around (host and guest contexts
give us everything we need).

Signed-off-by: Marc Zyngier <maz@kernel.org>
arch/arm64/kvm/hyp/include/hyp/debug-sr.h

index 5499d6c1fd9fe1c2b1992e465ea79e150ee7be8a..0297dc63988c0faa897234524a985ac334ceb025 100644 (file)
@@ -88,9 +88,8 @@
        default:        write_debug(ptr[0], reg, 0);                    \
        }
 
-static inline void __debug_save_state(struct kvm_vcpu *vcpu,
-                                     struct kvm_guest_debug_arch *dbg,
-                                     struct kvm_cpu_context *ctxt)
+static void __debug_save_state(struct kvm_guest_debug_arch *dbg,
+                              struct kvm_cpu_context *ctxt)
 {
        u64 aa64dfr0;
        int brps, wrps;
@@ -107,9 +106,8 @@ static inline void __debug_save_state(struct kvm_vcpu *vcpu,
        ctxt_sys_reg(ctxt, MDCCINT_EL1) = read_sysreg(mdccint_el1);
 }
 
-static inline void __debug_restore_state(struct kvm_vcpu *vcpu,
-                                        struct kvm_guest_debug_arch *dbg,
-                                        struct kvm_cpu_context *ctxt)
+static void __debug_restore_state(struct kvm_guest_debug_arch *dbg,
+                                 struct kvm_cpu_context *ctxt)
 {
        u64 aa64dfr0;
        int brps, wrps;
@@ -142,8 +140,8 @@ static inline void __debug_switch_to_guest_common(struct kvm_vcpu *vcpu)
        host_dbg = &vcpu->arch.host_debug_state.regs;
        guest_dbg = kern_hyp_va(vcpu->arch.debug_ptr);
 
-       __debug_save_state(vcpu, host_dbg, host_ctxt);
-       __debug_restore_state(vcpu, guest_dbg, guest_ctxt);
+       __debug_save_state(host_dbg, host_ctxt);
+       __debug_restore_state(guest_dbg, guest_ctxt);
 }
 
 static inline void __debug_switch_to_host_common(struct kvm_vcpu *vcpu)
@@ -161,8 +159,8 @@ static inline void __debug_switch_to_host_common(struct kvm_vcpu *vcpu)
        host_dbg = &vcpu->arch.host_debug_state.regs;
        guest_dbg = kern_hyp_va(vcpu->arch.debug_ptr);
 
-       __debug_save_state(vcpu, guest_dbg, guest_ctxt);
-       __debug_restore_state(vcpu, host_dbg, host_ctxt);
+       __debug_save_state(guest_dbg, guest_ctxt);
+       __debug_restore_state(host_dbg, host_ctxt);
 
        vcpu->arch.flags &= ~KVM_ARM64_DEBUG_DIRTY;
 }