All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sean Christopherson <seanjc@google.com>
To: Ackerley Tng <ackerleytng@google.com>
Cc: "David Hildenbrand (Arm)" <david@kernel.org>,
	Paolo Bonzini <pbonzini@redhat.com>,
	kvm@vger.kernel.org,  linux-kernel@vger.kernel.org,
	Stefan Teodorescu <fane@google.com>,
	 Dennis Tighe <dtighe@google.com>,
	Sashiko Bot <sashiko-bot@kernel.org>,
	 Yan Zhao <yan.y.zhao@intel.com>
Subject: Re: [PATCH v3 1/4] KVM: guest_memfd: Gracefully handle xarray errors when binding a memslot
Date: Wed, 9 Sep 2026 17:11:02 -0700	[thread overview]
Message-ID: <aqH1lvIscO8ybcKR@google.com> (raw)
In-Reply-To: <CAEvNRgF6EsMc4iLSM_VZP-5fGGwKv1YJxf-D7Z+DVANTJhxiYw@mail.gmail.com>

On Wed, Sep 09, 2026, Ackerley Tng wrote:
> "David Hildenbrand (Arm)" <david@kernel.org> writes:
> 
> >
> > [...snip...]
> >
> >> -	xa_store_range(&f->bindings, start, end - 1, slot, GFP_KERNEL);
> >> +	xar = xa_store_range(&f->bindings, start, end - 1, slot, GFP_KERNEL);
> >> +
> >> +	r = xa_is_err(xar) ? xa_err(xar) : 0;
> >
> >
> > r = xa_err(xar);
> >
> > Should be sufficient, right?
> >
> > mm/memremap.c:pagemap_range() uses that and just avoids the intermediate xar
> > value completely.
> >
> > r = xa_err(xa_store_range(...);
> >
> >> +	if (r) {
> >> +		xa_store_range(&f->bindings, start, end - 1, NULL, GFP_KERNEL);
> >> +		slot->gmem.file = NULL;
> >> +		slot->gmem.pgoff = 0;
> >> +		slot->flags &= ~KVM_MEMSLOT_GMEM_ONLY;
> 
> Was wondering if the changelog should explain why not move
> xa_store_range() before setting up these 3 fields that need undoing.

Ya, I'll add some context.  The TL;DR is "look at patch 3".

> IIUC the reason is that other parts of gmem code expect any slots in
> bindings to have a non-NULL gmem.file?

Not just gmem code, all of KVM.  The instant the binding is created, the memslot
becomes reachable.  Because KVM manages memslots through SRCU-protected pointers,
for all intents and purposes memslots must be immutable if they are reachable,
otherwise readers could see half-baked state, e.g. a memslot with a gmem file but
the wrong pgoff.

  reply	other threads:[~2026-09-10  0:11 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04  0:43 [PATCH v3 0/4] KVM: guest_memfd: Fix binding bugs Sean Christopherson
2026-09-04  0:43 ` [PATCH v3 1/4] KVM: guest_memfd: Gracefully handle xarray errors when binding a memslot Sean Christopherson
2026-09-07 17:34   ` David Hildenbrand (Arm)
2026-09-09 19:27     ` Sean Christopherson
2026-09-09 22:59     ` Ackerley Tng
2026-09-10  0:11       ` Sean Christopherson [this message]
2026-09-04  0:43 ` [PATCH v3 2/4] KVM: Use goto to handle errors during memslot preparation Sean Christopherson
2026-09-07 17:36   ` David Hildenbrand (Arm)
2026-09-09 23:09   ` Ackerley Tng
2026-09-04  0:43 ` [PATCH v3 3/4] KVM: guest_memfd: Establish memslot<=>guest_memfd bindings *after* memslot is ready Sean Christopherson
2026-09-07 17:47   ` David Hildenbrand (Arm)
2026-09-09 21:53     ` Sean Christopherson
2026-09-04  0:43 ` [PATCH v3 4/4] KVM: guest_memfd: Drop superfluous WRITE_ONCE() when binding a memslot Sean Christopherson
2026-09-07 17:47   ` David Hildenbrand (Arm)
2026-09-09 23:06   ` Ackerley Tng

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=aqH1lvIscO8ybcKR@google.com \
    --to=seanjc@google.com \
    --cc=ackerleytng@google.com \
    --cc=david@kernel.org \
    --cc=dtighe@google.com \
    --cc=fane@google.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=sashiko-bot@kernel.org \
    --cc=yan.y.zhao@intel.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.