aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/kvm_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r--arch/x86/include/asm/kvm_host.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
index 1b3eb8a0a1bc..8ec3547c433d 100644
--- a/arch/x86/include/asm/kvm_host.h
+++ b/arch/x86/include/asm/kvm_host.h
@@ -296,6 +296,16 @@ struct kvm_vcpu_arch {
296 struct kvm_mmu mmu; 296 struct kvm_mmu mmu;
297 297
298 /* 298 /*
299 * Paging state of an L2 guest (used for nested npt)
300 *
301 * This context will save all necessary information to walk page tables
302 * of the an L2 guest. This context is only initialized for page table
303 * walking and not for faulting since we never handle l2 page faults on
304 * the host.
305 */
306 struct kvm_mmu nested_mmu;
307
308 /*
299 * Pointer to the mmu context currently used for 309 * Pointer to the mmu context currently used for
300 * gva_to_gpa translations. 310 * gva_to_gpa translations.
301 */ 311 */