Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

KVM: Documentation: Add the missing description for tdp_mmu_page into kvm_mmu_page

Add the description for tdp_mmu_page into kvm_mmu_page description.
tdp_mmu_page is a field to differentiate shadow pages from TDP MMU and
non-TDP MMU.

Signed-off-by: Mingwei Zhang <mizhang@google.com>
Reviewed-by: Kai Huang <kai.huang@intel.com>
Link: https://lore.kernel.org/r/20230912184553.1887764-7-mizhang@google.com
Signed-off-by: Sean Christopherson <seanjc@google.com>

authored by

Mingwei Zhang and committed by
Sean Christopherson
78b5605d c3204c40

+4
+4
Documentation/virt/kvm/x86/mmu.rst
··· 282 282 since the last time the page table was actually used; if emulation 283 283 is triggered too frequently on this page, KVM will unmap the page 284 284 to avoid emulation in the future. 285 + tdp_mmu_page: 286 + Is 1 if the shadow page is a TDP MMU page. This variable is used to 287 + bifurcate the control flows for KVM when walking any data structure that 288 + may contain pages from both TDP MMU and shadow MMU. 285 289 286 290 Reverse map 287 291 ===========