diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-23 12:43:45 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-23 14:30:41 +0300 |
commit | c3ab0e28a437c213e5e2c1d890f3891b6952b9ca (patch) | |
tree | 8246e6614acd941b07c0925dea03b97f3ae1f3a7 /arch/powerpc/include/asm/kvm_host.h | |
parent | ba1f82456ba8438a8abc96274d57bfe76d34a4a8 (diff) | |
parent | 51696f39cbee5bb684e7959c0c98b5f54548aa34 (diff) | |
download | linux-c3ab0e28a437c213e5e2c1d890f3891b6952b9ca.tar.xz |
Merge branch 'topic/ppc-kvm' of https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux into HEAD
- Support for the H_RPT_INVALIDATE hypercall
- Conversion of Book3S entry/exit to C
- Bug fixes
Diffstat (limited to 'arch/powerpc/include/asm/kvm_host.h')
-rw-r--r-- | arch/powerpc/include/asm/kvm_host.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h index ae3d4af61b66..dd8bd4706259 100644 --- a/arch/powerpc/include/asm/kvm_host.h +++ b/arch/powerpc/include/asm/kvm_host.h @@ -298,7 +298,6 @@ struct kvm_arch { u8 fwnmi_enabled; u8 secure_guest; u8 svm_enabled; - bool threads_indep; bool nested_enable; bool dawr1_enabled; pgd_t *pgtable; @@ -684,7 +683,12 @@ struct kvm_vcpu_arch { ulong fault_dar; u32 fault_dsisr; unsigned long intr_msr; - ulong fault_gpa; /* guest real address of page fault (POWER9) */ + /* + * POWER9 and later: fault_gpa contains the guest real address of page + * fault for a radix guest, or segment descriptor (equivalent to result + * from slbmfev of SLB entry that translated the EA) for hash guests. + */ + ulong fault_gpa; #endif #ifdef CONFIG_BOOKE |