KVM: PPC: Book3S HV: Add function kvmhv_vcpu_is_radix()
authorSuraj Jitindar Singh <sjitindarsingh@gmail.com>
Fri, 14 Dec 2018 05:29:04 +0000 (16:29 +1100)
committerPaul Mackerras <paulus@ozlabs.org>
Mon, 17 Dec 2018 00:33:49 +0000 (11:33 +1100)
There exists a function kvm_is_radix() which is used to determine if a
kvm instance is using the radix mmu. However this only applies to the
first level (L1) guest. Add a function kvmhv_vcpu_is_radix() which can
be used to determine if the current execution context of the vcpu is
radix, accounting for if the vcpu is running a nested guest.

Currently all nested guests must be radix but this may change in the
future.

Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
arch/powerpc/include/asm/kvm_book3s_64.h
arch/powerpc/kvm/book3s_hv_nested.c

index c9cbaf02fc737d34ca52efd532634da6d68e70ff..34968fd2de240dcb2f439e15690aa5393e318cb5 100644 (file)
@@ -55,6 +55,7 @@ struct kvm_nested_guest {
        cpumask_t need_tlb_flush;
        cpumask_t cpu_in_guest;
        short prev_cpu[NR_CPUS];
+       u8 radix;                       /* is this nested guest radix */
 };
 
 /*
@@ -150,6 +151,18 @@ static inline bool kvm_is_radix(struct kvm *kvm)
        return kvm->arch.radix;
 }
 
+static inline bool kvmhv_vcpu_is_radix(struct kvm_vcpu *vcpu)
+{
+       bool radix;
+
+       if (vcpu->arch.nested)
+               radix = vcpu->arch.nested->radix;
+       else
+               radix = kvm_is_radix(vcpu->kvm);
+
+       return radix;
+}
+
 #define KVM_DEFAULT_HPT_ORDER  24      /* 16MB HPT by default */
 #endif
 
index 6d1b14bd7e65080f0e6795974398c973a08bc9be..6f9e1ad6052798265e50f3a7f7d24091f359bcb2 100644 (file)
@@ -480,6 +480,7 @@ struct kvm_nested_guest *kvmhv_alloc_nested(struct kvm *kvm, unsigned int lpid)
        if (shadow_lpid < 0)
                goto out_free2;
        gp->shadow_lpid = shadow_lpid;
+       gp->radix = 1;
 
        memset(gp->prev_cpu, -1, sizeof(gp->prev_cpu));