mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Huang, Kai" <kai.huang@intel.com>
To: "pbonzini@redhat.com" <pbonzini@redhat.com>,
	"seanjc@google.com" <seanjc@google.com>
Cc: "kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	"jthoughton@google.com" <jthoughton@google.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] KVM: x86/mmu: Use CMPXCHG when clearing Accessed bit in the shadow MMU
Date: Wed, 29 Jul 2026 11:10:29 +0000	[thread overview]
Message-ID: <ea32bf304cb912380e760c2c7267d4db53765c68.camel@intel.com> (raw)
In-Reply-To: <20260728002236.869865-3-seanjc@google.com>

On Mon, 2026-07-27 at 17:22 -0700, Sean Christopherson wrote:
> Use CMPXCHG instead of clear_bit(), which currently emits a LOCK BTR since
> the to-be-cleared bit isn't a compiled-time constant, when aging SPTEs in
				^
				compile-time ?

> the shadow MMU to align with the approach taken by the TDP MMU, and because
> using CMPXCHG is far more robust against bugs in KVM.  E.g. if the SPTE is
> somehow no longer an SPTE due to a KVM bug, CMPXCHG will fail gracefully,
> whereas clear_bit() would potentially corrupt/clobber memory.
> 
> Clearing the Accessed bit without atomically ensuring the SPTE is still the
> old SPTE is "fine", as holding the rmap's lock ensures zapping the old SPTE
> can't fully complete, which in turn ensures a new, different SPTE can't be
> installed.  But that chain of logic isn't exactly obvious, and there's zero
> reason to avoid CMPXCHG as its cost on modern hardware is within ~1-2 uops
> of LOCK BTR (and may even be cheaper on some microarchitectures).  Doing a
> 64-bit CMPXCHG on 32-bit kernels does requires a more expensive CMPXCHG8B,
					^
					require

> but 32-bit KVM is all but dead at this point.
> 
> Cc: James Houghton <jthoughton@google.com>
> Signed-off-by: Sean Christopherson <seanjc@google.com>

Reviewed-by: Kai Huang <kai.huang@intel.com>

  parent reply	other threads:[~2026-07-29 11:10 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-28  0:22 [PATCH 0/2] KVM: x86/mmu: Use LOCK CMPXCHG to clear Accessed bits Sean Christopherson
2026-07-28  0:22 ` [PATCH 1/2] KVM: x86/mmu: Use CMPXCHG when clearing Accessed bit in TDP MMU Sean Christopherson
2026-07-28  0:31   ` James Houghton
2026-07-29 11:07   ` Huang, Kai
2026-07-28  0:22 ` [PATCH 2/2] KVM: x86/mmu: Use CMPXCHG when clearing Accessed bit in the shadow MMU Sean Christopherson
2026-07-28  0:34   ` James Houghton
2026-07-29 11:10   ` Huang, Kai [this message]
2026-07-29 11:12 ` [PATCH 0/2] KVM: x86/mmu: Use LOCK CMPXCHG to clear Accessed bits Huang, Kai
2026-07-29 13:33   ` Sean Christopherson
2026-07-29 22:04     ` Huang, Kai
2026-07-31 20:10 ` Sean Christopherson

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=ea32bf304cb912380e760c2c7267d4db53765c68.camel@intel.com \
    --to=kai.huang@intel.com \
    --cc=jthoughton@google.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=seanjc@google.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

Powered by JetHome