From: Gregory Price <gourry@gourry.net>
To: Ackerley Tng <ackerleytng@google.com>
Cc: linux-mm@kvack.org, kvm@vger.kernel.org,
linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-team@meta.com, pbonzini@redhat.com, seanjc@google.com,
akpm@linux-foundation.org, david@kernel.org, ziy@nvidia.com,
matthew.brost@intel.com, joshua.hahnjy@gmail.com,
rakie.kim@sk.com, byungchul@sk.com,
ying.huang@linux.alibaba.com, apopple@nvidia.com,
shuah@kernel.org
Subject: Re: [PATCH 0/5] KVM: guest_memfd: bind backing memory to a NUMA node
Date: Wed, 9 Sep 2026 19:10:00 -0400 [thread overview]
Message-ID: <aqHkVKvons1tBs1O@gourry-fedora-PF4VCD3F> (raw)
In-Reply-To: <CAEvNRgHWyBaBpZ4Bem1Eu86b-cuEA7NkyjxTJ4D3FnpGe1B2Yg@mail.gmail.com>
On Wed, Sep 09, 2026 at 03:41:35PM -0700, Ackerley Tng wrote:
> Gregory Price <gourry@gourry.net> writes:
>
> > guest_memfd allocates its folios through a per-inode shared mempolicy.
> >
> > Today that policy can only be set after the fact, with mbind() on a host
> > mmap of the fd. That requires the fd to be mappable, and it cannot reach
> > folios that are only ever guest-faulted. Neither holds for a
> > non-mappable (confidential) guest_memfd.
> >
> > Add GUEST_MEMFD_FLAG_BIND_NODE and a node field to struct
> > kvm_create_guest_memfd. When set, KVM builds an MPOL_BIND policy for the
> > requested node and installs it over the whole inode, so every folio is
> > allocated there with no userspace mbind().
> >
>
> Instead of a custom API to ensure all guest_memfd allocations come from
> a single node, how about these options?
>
> 1. Using cgroups/cpuset to constrain allocations (could be troublesome
> if the guest memory is not preallocated, unless the vCPU threads are
> running with the cpuset config)
>
> 2. Process-level NUMA policy
>
for 1 and 2:
the intent is to put the guest memory on the target node, not all system
memory for a given process. so the scope here is not the same.
in fact at that granularity, the desired node may not even have eligible
memory to host the task's memory.
> 3. Why not request the guest_memfd to be mmap-able just to be able to
> set a memory policy?
>
the eventual intent is to enable this for fully confidential,
host-unmapped guest, isolated to a particular memory device.
Requiring a mapping to get node-placement is quite defeating the point.
> 4. How about something like fbind() that takes an fd and offset range
> instead of mbind(), which has a prerequisite on mmap()?
>
This was a consideration - although it has other limitations and larger
complexities associated with it.
Where does the policy live for random fd's? (inode? address_space?)
How is a reclaimed inode's policy handled? (lost forever?)
figured i'd start by reducing the scope to the narrowest and clearest
use-case, but I did expect to have the fbind() conversation.
I'm open to it, but it seems like over-engineering.
If you look at tmpfs / shmem, you'll see there is the option for a
default filesystem-wide mempolicy that can be plumbed, but i'm not sure
there's a real usecase for per-file mempolicies that isn't literally
guest_memfd.
> This doesn't exist yet, but I'm hoping to discuss this at LPC 2026:
>
> 5. What if you could pass an fd representing a mount to guest_memfd at
> creation time, so to make all the allocations come from a single node
>
> Step 1: Create a tmpfs mount, specify mpol for mount to MPOL_BIND
> Step 2: Get some fd representing the tmpfs mount, hand that to
> guest_memfd at creation time
> Step 3: guest_memfd allocations will always come from that tmpfs
> mount, and abide by that tmpfs mount's memory policy.
>
This i think this is more feasible than something like fbind, but devil
is in the details.
I definitely think it's interesting and would love to chat at LPC!
> May I know more about the use case behind this new feature?
>
see above - confidential vm whose memory is quarantined to a particular
device, without placing that same burden on the host memory.
~Gregory
next prev parent reply other threads:[~2026-09-09 23:10 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-02 19:46 [PATCH 0/5] KVM: guest_memfd: bind backing memory to a NUMA node Gregory Price
2026-09-02 19:46 ` [PATCH 1/5] mm/mempolicy: add mempolicy_create() Gregory Price
2026-09-02 19:46 ` [PATCH 2/5] mm/mempolicy: add mpol_set_shared_policy_range() Gregory Price
2026-09-02 19:46 ` [PATCH 3/5] KVM: guest_memfd: bind backing memory to a NUMA node at creation Gregory Price
2026-09-02 19:46 ` [PATCH 4/5] selftests: KVM: guest_memfd: let the gmem_test() harness bind a node Gregory Price
2026-09-02 19:46 ` [PATCH 5/5] selftests: KVM: guest_memfd: test GUEST_MEMFD_FLAG_BIND_NODE Gregory Price
2026-09-09 22:41 ` [PATCH 0/5] KVM: guest_memfd: bind backing memory to a NUMA node Ackerley Tng
2026-09-09 23:10 ` Gregory Price [this message]
2026-09-09 23:23 ` Ackerley Tng
2026-09-09 23:41 ` Gregory Price
2026-09-10 11:32 ` David Hildenbrand (Arm)
2026-09-10 13:39 ` Gregory Price
2026-09-10 14:00 ` David Hildenbrand (Arm)
2026-09-10 11:30 ` David Hildenbrand (Arm)
2026-09-10 13:40 ` Gregory Price
2026-09-10 14:05 ` David Hildenbrand (Arm)
2026-09-10 14:46 ` Gregory Price
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=aqHkVKvons1tBs1O@gourry-fedora-PF4VCD3F \
--to=gourry@gourry.net \
--cc=ackerleytng@google.com \
--cc=akpm@linux-foundation.org \
--cc=apopple@nvidia.com \
--cc=byungchul@sk.com \
--cc=david@kernel.org \
--cc=joshua.hahnjy@gmail.com \
--cc=kernel-team@meta.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=matthew.brost@intel.com \
--cc=pbonzini@redhat.com \
--cc=rakie.kim@sk.com \
--cc=seanjc@google.com \
--cc=shuah@kernel.org \
--cc=ying.huang@linux.alibaba.com \
--cc=ziy@nvidia.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