From: Sean Christopherson <seanjc@google.com>
To: David Matlack <dmatlack@google.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
kvm@vger.kernel.org, Kai Huang <kai.huang@intel.com>,
Isaku Yamahata <isaku.yamahata@gmail.com>,
Peter Xu <peterx@redhat.com>
Subject: Re: [PATCH v3 08/10] KVM: x86/mmu: Split out TDP MMU page fault handling
Date: Tue, 11 Oct 2022 21:56:36 +0000 [thread overview]
Message-ID: <Y0XmlE90yHqfnEFM@google.com> (raw)
In-Reply-To: <20220921173546.2674386-9-dmatlack@google.com>
On Wed, Sep 21, 2022, David Matlack wrote:
> Split out the page fault handling for the TDP MMU to a separate
> function. This creates some duplicate code, but makes the TDP MMU fault
> handler simpler to read by eliminating branches and will enable future
> cleanups by allowing the TDP MMU and non-TDP MMU fault paths to diverge.
IMO, the code duplication isn't worth the relatively minor simplification. And
some of the "cleanups" to reduce the duplication arguably add complexity, e.g.
moving code around in "Initialize fault.{gfn,slot} earlier for direct MMUs" isn't
a net positive IMO.
With the TDP MMU being all-or-nothing, the need to check if the MMU is a TDP MMU
goes away. If the TDP MMU is enabled, direct_page_fault() will be reached only
for non-nested TDP page faults. Paging is required for NPT, and EPT faults will
always go through ept_page_fault(), i.e. nonpaging_page_fault() is unused.
In other words, this code
bool is_tdp_mmu_fault = is_tdp_mmu(vcpu->arch.mmu);
gets replaced with direct checks on is_tdp_mmu_enabled(). And because fast page
faults are used only for direct MMUs, that code can also simply query whether or
not the TDP MMU is enabled.
Avoiding make_mmu_pages_available() for the TDP MMU is easy enough and doesn't
require any new conditionals.
if (is_tdp_mmu_enabled()) {
r = kvm_tdp_mmu_map(vcpu, fault);
} else {
r = make_mmu_pages_available(vcpu);
if (r)
goto out_unlock;
r = __direct_map(vcpu, fault);
}
That leaves the read vs. write lock as the only code that is borderline difficult
to read. I agree that's a little ugly, but IMO it's not worth duplicating the
entire function. If we really wanted to hide that ugliness, we could add helpers
to do the lock+unlock, but even that seems somewhat superfluous.
From a performance perspective, with the flag being read-only after the vendor
module is loaded, we can add a static key to track TDP MMU enabling, biased to the
TDP MMU being enabled. That turns all of if-statements into NOPs for the TDP MMU.
(this is why I suggested keeping the is_tdp_mmu_enabled() wrapper in patch 1).
Static branches actually shrink the code size too (because that matters), e.g. a
5-byte nop instead of 8 bytes for TEST+Jcc.
I'll speculatively post a v4 with the static key idea, minus patches 7, 8, and 10.
I think that'll make it easier to discuss the static key/branch implementation.
If we decide we still want to split out the TDP MMU page fault handler, then it
should be relatively simple to fold back in those patches.
E.g. the generate code looks like this:
4282 if (is_tdp_mmu_enabled())
4283 read_lock(&vcpu->kvm->mmu_lock);
0x000000000005ff7e <+494>: nopl 0x0(%rax,%rax,1)
0x000000000005ff83 <+499>: mov (%rbx),%rdi
0x000000000005ff86 <+502>: call 0x5ff8b <direct_page_fault+507>
4286
4287 if (is_page_fault_stale(vcpu, fault))
0x000000000005ff8b <+507>: mov %r15,%rsi
0x000000000005ff8e <+510>: mov %rbx,%rdi
0x000000000005ff91 <+513>: call 0x558b0 <is_page_fault_stale>
0x000000000005ff96 <+518>: test %al,%al
0x000000000005ff98 <+520>: jne 0x603e1 <direct_page_fault+1617>
4288 goto out_unlock;
4289
4290 if (is_tdp_mmu_enabled()) {
4291 r = kvm_tdp_mmu_map(vcpu, fault);
0x000000000005ff9e <+526>: nopl 0x0(%rax,%rax,1)
0x000000000005ffa3 <+531>: mov %rbx,%rdi
0x000000000005ffa6 <+534>: mov %r15,%rsi
0x000000000005ffa9 <+537>: call 0x5ffae <direct_page_fault+542>
0x000000000005ffae <+542>: mov (%rbx),%rdi
0x000000000005ffb1 <+545>: mov %eax,%ebp
#ifdef CONFIG_X86_64
DECLARE_STATIC_KEY_TRUE(tdp_mmu_enabled);
#endif
static inline bool is_tdp_mmu_enabled(void)
{
#ifdef CONFIG_X86_64
return static_branch_likely(&tdp_mmu_enabled);
#else
return false;
#endif
}
static inline bool is_tdp_mmu(struct kvm_mmu *mmu)
{
return is_tdp_mmu_enabled() && mmu->root_role.direct;
}
next prev parent reply other threads:[~2022-10-11 21:56 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-21 17:35 [PATCH v3 00/10] KVM: x86/mmu: Make tdp_mmu read-only and clean up TPD MMU fault handler David Matlack
2022-09-21 17:35 ` [PATCH v3 01/10] KVM: x86/mmu: Change tdp_mmu to a read-only parameter David Matlack
2022-09-27 9:19 ` Huang, Kai
2022-09-27 16:14 ` David Matlack
2022-09-27 21:10 ` Huang, Kai
2022-09-29 1:56 ` Huang, Kai
2022-10-03 18:58 ` Isaku Yamahata
2022-10-03 20:02 ` David Matlack
2022-10-03 21:56 ` Isaku Yamahata
2022-10-03 20:11 ` Huang, Kai
2022-10-11 20:12 ` Sean Christopherson
2022-09-21 17:35 ` [PATCH v3 02/10] KVM: x86/mmu: Move TDP MMU VM init/uninit behind tdp_mmu_enabled David Matlack
2022-10-03 19:01 ` Isaku Yamahata
2022-09-21 17:35 ` [PATCH v3 03/10] KVM: x86/mmu: Grab mmu_invalidate_seq in kvm_faultin_pfn() David Matlack
2022-10-03 19:05 ` Isaku Yamahata
2022-09-21 17:35 ` [PATCH v3 04/10] KVM: x86/mmu: Handle error PFNs " David Matlack
2022-09-21 17:35 ` [PATCH v3 05/10] KVM: x86/mmu: Avoid memslot lookup during KVM_PFN_ERR_HWPOISON handling David Matlack
2022-10-03 19:23 ` Isaku Yamahata
2022-09-21 17:35 ` [PATCH v3 06/10] KVM: x86/mmu: Handle no-slot faults in kvm_faultin_pfn() David Matlack
2022-09-21 17:35 ` [PATCH v3 07/10] KVM: x86/mmu: Initialize fault.{gfn,slot} earlier for direct MMUs David Matlack
2022-10-03 19:27 ` Isaku Yamahata
2022-09-21 17:35 ` [PATCH v3 08/10] KVM: x86/mmu: Split out TDP MMU page fault handling David Matlack
2022-10-03 19:28 ` Isaku Yamahata
2022-10-11 21:56 ` Sean Christopherson [this message]
2022-09-21 17:35 ` [PATCH v3 09/10] KVM: x86/mmu: Stop needlessly making MMU pages available for TDP MMU faults David Matlack
2022-10-03 19:28 ` Isaku Yamahata
2022-09-21 17:35 ` [PATCH v3 10/10] KVM: x86/mmu: Rename __direct_map() to direct_map() David Matlack
2022-10-03 19:29 ` Isaku Yamahata
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y0XmlE90yHqfnEFM@google.com \
--to=seanjc@google.com \
--cc=dmatlack@google.com \
--cc=isaku.yamahata@gmail.com \
--cc=kai.huang@intel.com \
--cc=kvm@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.