KVM: PPC: Book3S HV nestedv2: Get the PID only if needed to copy tofrom a guest
authorJordan Niethe <jniethe5@gmail.com>
Fri, 1 Dec 2023 13:26:09 +0000 (18:56 +0530)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 7 Dec 2023 12:33:07 +0000 (23:33 +1100)
kvmhv_copy_tofrom_guest_radix() gets the PID at the start of the
function. If pid is not used, then this is a wasteful H_GUEST_GET_STATE
hcall for nestedv2 hosts. Move the assignment to where pid will be used.

Suggested-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Jordan Niethe <jniethe5@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20231201132618.555031-5-vaibhav@linux.ibm.com
arch/powerpc/kvm/book3s_64_mmu_radix.c

index 175a8eb2681fca3d6e83c0977a4f32457c2f58ba..916af6c153a5b0babc9c9acf726828c5609d7c63 100644 (file)
@@ -97,7 +97,7 @@ static long kvmhv_copy_tofrom_guest_radix(struct kvm_vcpu *vcpu, gva_t eaddr,
                                          void *to, void *from, unsigned long n)
 {
        int lpid = vcpu->kvm->arch.lpid;
-       int pid = kvmppc_get_pid(vcpu);
+       int pid;
 
        /* This would cause a data segment intr so don't allow the access */
        if (eaddr & (0x3FFUL << 52))
@@ -110,6 +110,8 @@ static long kvmhv_copy_tofrom_guest_radix(struct kvm_vcpu *vcpu, gva_t eaddr,
        /* If accessing quadrant 3 then pid is expected to be 0 */
        if (((eaddr >> 62) & 0x3) == 0x3)
                pid = 0;
+       else
+               pid = kvmppc_get_pid(vcpu);
 
        eaddr &= ~(0xFFFUL << 52);