From: Sean Christopherson <seanjc@google.com>
To: "Naveen N Rao (AMD)" <naveen@kernel.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
kvm@vger.kernel.org, linux-kernel@vger.kernel.org,
Maxim Levitsky <mlevitsk@redhat.com>,
Vasant Hegde <vasant.hegde@amd.com>,
Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Subject: Re: [RFC PATCH 2/3] KVM: SVM: Fix IRQ window inhibit handling across multiple vCPUs
Date: Wed, 14 Jan 2026 11:55:57 -0800 [thread overview]
Message-ID: <aWf0zQ6vA0Hmon2r@google.com> (raw)
In-Reply-To: <26732815475bf1c5ba672bc3b1785265f1a994e6.1752819570.git.naveen@kernel.org>
Finally mustered up the brainpower to land this series :-)
On Fri, Jul 18, 2025, Naveen N Rao (AMD) wrote:
> diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
> index f19a76d3ca0e..b781b4f1d304 100644
> --- a/arch/x86/include/asm/kvm_host.h
> +++ b/arch/x86/include/asm/kvm_host.h
> @@ -1395,6 +1395,10 @@ struct kvm_arch {
> struct kvm_pit *vpit;
> #endif
> atomic_t vapics_in_nmi_mode;
> +
> + /* Keep this in a cacheline separate from apicv_update_lock */
A comment won't suffice. To isolate what we want to isolate, tag things with
__aligned(). Ideally we would use __cacheline_aligned_in_smp, but AFAIK that
can't be used within a struct as it uses .section tags, :-(
And revisiting your analysis from
https://lore.kernel.org/all/evszbck4u7afiu7lkafwcu3rs6a7io2zkv53rygrgz544op4ur@m2bugote2wdl:
: Also, note that introducing apicv_irq_window after apicv_inhibit_reasons
: is degrading performance in the AVIC disabled case too. So, it is likely
: that some other cacheline below apicv_inhibit_reasons in kvm_arch may
: also be contributing to this.
I strongly suspect past-you were correct: the problem isn't that apicv_nr_irq_window_req
is in the same cacheline with apicv_update_lock, it's that apicv_nr_irq_window_req
landed in the same cachline as _other_ stuff.
Looking at the struct layout from kvm-x86-next-2025.01.14, putting apicv_irq_window
after apicv_inhibit_reasons _did_ put it on a separate cacheline from
apicv_update_lock:
/* --- cacheline 517 boundary (33088 bytes) was 24 bytes ago --- */
struct kvm_apic_map * apic_map; /* 33112 8 */
atomic_t apic_map_dirty; /* 33120 4 */
bool apic_access_memslot_enabled; /* 33124 1 */
bool apic_access_memslot_inhibited; /* 33125 1 */
/* XXX 2 bytes hole, try to pack */
struct rw_semaphore apicv_update_lock; /* 33128 152 */
/* XXX last struct has 1 hole */
/* --- cacheline 520 boundary (33280 bytes) --- */
unsigned long apicv_inhibit_reasons; /* 33280 8 */
atomic_t apicv_irq_window; /* 33288 4 */
/* XXX 4 bytes hole, try to pack */
gpa_t wall_clock; /* 33296 8 */
bool mwait_in_guest; /* 33304 1 */
bool hlt_in_guest; /* 33305 1 */
bool pause_in_guest; /* 33306 1 */
bool cstate_in_guest; /* 33307 1 */
/* XXX 4 bytes hole, try to pack */
unsigned long irq_sources_bitmap; /* 33312 8 */
s64 kvmclock_offset; /* 33320 8 */
raw_spinlock_t tsc_write_lock; /* 33328 64 */
/* --- cacheline 521 boundary (33344 bytes) was 48 bytes ago --- */
Which fits with my reaction that the irq_window counter being in the same cachline
as apicv_update_lock shouldn't be problematic, because the counter is only ever
written while holding the lock. I.e. the counter is written only when the lock
cacheline is likely already pulled in in an exclusive state.
What appears to be problematic is that the counter is in the same cacheline as
several relatively hot read-mostly fields:
apicv_inhibit_reasons - read by every vCPU on every VM-Enter
xxx_in_guest (now disabled_exits) - read on page faults, if a vCPU takes a
PAUSE exit, if a vCPU is scheduled out, etc.
kvmclock_offset - read every time a vCPU needs to refresh kvmclock
So I actually think we want apicv_update_lock and apicv_nr_irq_window_req to
_share_ a cacheline, and then isolate that cacheline from everything else. Because
those two fields are effectively write-mostly, whereas most things in kvm-arch are
read-mostly. I.e. end up with this:
/*
* Protects apicv_inhibit_reasons and apicv_nr_irq_window_req (with an
* asterisk, see kvm_inc_or_dec_irq_window_inhibit() for details).
*
* Force apicv_update_lock and apicv_nr_irq_window_req to reside in a
* dedicated cacheline. They are write-mostly, whereas most everything
* else in kvm_arch is read-mostly.
*/
struct rw_semaphore apicv_update_lock __aligned(L1_CACHE_BYTES);
atomic_t apicv_nr_irq_window_req;
/*
* As above, isolate apicv_update_lock and apicv_nr_irq_window_req on
* their own cacheline. Note that apicv_inhibit_reasons is read-mostly
* even though it's protected by apicv_update_lock (toggling VM-wide
* inhibits is rare; _checking_ for inhibits is common).
*/
unsigned long apicv_inhibit_reasons __aligned(L1_CACHE_BYTES);
I also want to land the optimization separately, so that it can be properly
documented, justified, and analyzed by others.
I pushed a rebased version (compile-tested only at this time) with the above change to:
https://github.com/sean-jc/linux.git svm/avic_irq_window
Can you run you perf tests to see if that aproach also eliminates the degredation
relative to avic=0 that you observed?
Thanks!
next prev parent reply other threads:[~2026-01-14 19:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-18 6:43 [RFC PATCH 0/3] KVM: SVM: Fix IRQ window inhibit handling Naveen N Rao (AMD)
2025-07-18 6:43 ` [RFC PATCH 1/3] KVM: SVM: Fix clearing IRQ window inhibit with nested guests Naveen N Rao (AMD)
2025-07-18 6:43 ` [RFC PATCH 2/3] KVM: SVM: Fix IRQ window inhibit handling across multiple vCPUs Naveen N Rao (AMD)
2026-01-14 19:55 ` Sean Christopherson [this message]
2026-01-14 20:19 ` Sean Christopherson
2026-01-22 14:49 ` Naveen N Rao
2026-01-23 19:55 ` Sean Christopherson
2025-07-18 6:43 ` [RFC PATCH 3/3] KVM: SVM: Optimize IRQ window inhibit handling Naveen N Rao (AMD)
2025-09-09 14:30 ` [RFC PATCH 0/3] KVM: SVM: Fix " Naveen N Rao
2025-09-09 15:34 ` Sean Christopherson
2025-09-10 12:30 ` Naveen N Rao
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=aWf0zQ6vA0Hmon2r@google.com \
--to=seanjc@google.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mlevitsk@redhat.com \
--cc=naveen@kernel.org \
--cc=pbonzini@redhat.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=vasant.hegde@amd.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox