mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Sean Christopherson <seanjc@google.com>
To: Xiaoyao Li <xiaoyao.li@intel.com>
Cc: Ackerley Tng <ackerleytng@google.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	kvm@vger.kernel.org,  linux-kernel@vger.kernel.org,
	Fuad Tabba <tabba@google.com>
Subject: Re: [PATCH v5 7/7] KVM: guest_memfd: Rework PREPARE config and hook into a more generic CONVERT
Date: Tue, 21 Jul 2026 09:24:35 -0700	[thread overview]
Message-ID: <al-dQ1EBD272HY4a@google.com> (raw)
In-Reply-To: <36036850-2d73-4c0f-84bc-64ba542ba425@intel.com>

On Fri, Jul 17, 2026, Xiaoyao Li wrote:
> On 7/17/2026 5:42 AM, Ackerley Tng wrote:
> > Xiaoyao Li <xiaoyao.li@intel.com> writes:
> > @@ -798,7 +798,7 @@ int kvm_gmem_get_pfn(struct kvm *kvm, struct
> > kvm_memory_slot *slot,
> >   		folio_mark_uptodate(folio);
> >   	}
> > 
> > -	r = kvm_gmem_make_private(kvm, slot, gfn, folio);
> > +	r = kvm_gmem_prepare_folio(kvm, slot, gfn, folio);
> > 
> >   	folio_unlock(folio);
> > 
> > I'll move just this renaming to [1] like you suggested.
> > 
> > I think it's okay to continue to always call prepare_folio(), and within
> > the prepare_folio() function, only do conversion when the CONVERT CONFIG
> > is defined.
> 
> I don't think so.
> 
> This patch not only renames kvm_arch_gmem_prepare() to
> kvm_arch_gmem_convert(), but also adds one more parameter
> 
>   'bool to_private'
> 
> and hardcodes the new parameter to true. This mean the arch callback will
> convert the folio to private unconditionally in kvm_prepare_folio() when
> CONFIG_HAVE_KVM_ARCH_GMEM_CONVERT is enabled.
> 
> Note the CONFIG is not a per-VM thing but a build time thing. The
> unconditionally-converting-to-private semantic can also be applied to
> gmem-only memslot for non-Coco VMs whenever the HAVE_KVM_ARCH_GMEM_CONVERT
> is enabled when building the kernel.
> 
> Though the code won't do anything for gmem-only memslot for non-Coco VMs,
> the literal semantic of the function and parameter is wrong.

Agreed.  How about I add a patch to guard the call with:

	if (kvm_arch_has_private_mem(kvm) &&
	    !(GMEM_I(inode)->flags & GUEST_MEMFD_FLAG_INIT_SHARED))
		r = kvm_gmem_make_private(kvm, slot, gfn, folio);

which is semantically correct pre-in-place conversion.  And then when in-place
conversion comes along, that will get switched to:

	if (kvm_gmem_is_private_mem(inode, index))
		r = kvm_gmem_make_private(kvm, slot, gfn, folio);

Which IMO yields a very clean and intuitive diff.

Actually, even better would be to insert a patch to provide kvm_gmem_is_private_mem()
and kvm_gmem_is_shared_mem() as part of this prep, and pull in "KVM: guest_memfd:
Only prepare folios for private pages" with a massaged shortlog+changelog.

I.e. have this at the end of this prep work:

static bool kvm_gmem_is_private_mem(struct inode *inode, pgoff_t index)
{
	return kvm_arch_has_private_mem(kvm) && 
	       !(GMEM_I(inode)->flags & GUEST_MEMFD_FLAG_INIT_SHARED);
}

static bool kvm_gmem_is_shared_mem(struct inode *inode, pgoff_t index)
{
	return !kvm_gmem_is_private_mem(inode, index);
}

	if (!kvm_gmem_is_shared_mem(inode, vmf->pgoff))
		return VM_FAULT_SIGBUS;

	if (kvm_gmem_is_private_mem(inode, index))
		r = kvm_gmem_make_private(kvm, slot, gfn, folio);

	
And then "KVM: guest_memfd: Introduce per-gmem attributes, use to guard user mappings"
isn't changing the semantics of the callers, it's only changing the internal
plumbing for PRIVATE vs. SHARED.

  reply	other threads:[~2026-07-21 16:24 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-14 23:10 [PATCH v5 0/7] KVM: guest_memfd: reclaim()/convert() cleanups Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 1/7] KVM: guest_memfd: Plumb the number of pages and max order into .invalidate() Sean Christopherson
2026-07-14 23:52   ` Ackerley Tng
2026-07-15  8:15   ` Fuad Tabba
2026-07-16  7:09   ` Xiaoyao Li
2026-07-21 16:42     ` Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 2/7] KVM: guest_memfd: Rename invalidate() arch hook to reclaim() and isolate it Sean Christopherson
2026-07-14 23:53   ` Ackerley Tng
2026-07-15  8:19   ` Fuad Tabba
2026-07-16 10:04   ` Xiaoyao Li
2026-07-14 23:10 ` [PATCH v5 3/7] KVM: guest_memfd: Drop the redundant printk on arch gmem_prepare() failure Sean Christopherson
2026-07-15  8:21   ` Fuad Tabba
2026-07-16 10:05   ` Xiaoyao Li
2026-07-14 23:10 ` [PATCH v5 4/7] KVM: guest_memfd: Fold __kvm_gmem_prepare_folio() into its sole caller Sean Christopherson
2026-07-14 23:55   ` Ackerley Tng
2026-07-21 16:39     ` Sean Christopherson
2026-07-22  1:30       ` Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 5/7] KVM: guest_memfd: Explicitly pass number of pages to kvm_arch_gmem_prepare() Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 6/7] KVM: x86: Combine .gmem_prepare()+.gmem_invalidate() into .gmem_convert() Sean Christopherson
2026-07-15  0:06   ` Ackerley Tng
2026-07-15  0:10     ` Sean Christopherson
2026-07-15  9:50       ` Fuad Tabba
2026-07-15  9:48   ` Fuad Tabba
2026-07-17  3:42   ` Ackerley Tng
2026-07-21 16:10     ` Sean Christopherson
2026-07-21 18:13       ` Ackerley Tng
2026-07-21 18:55         ` Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 7/7] KVM: guest_memfd: Rework PREPARE config and hook into a more generic CONVERT Sean Christopherson
2026-07-15  0:09   ` Ackerley Tng
2026-07-15  9:53   ` Fuad Tabba
2026-07-16  9:35   ` Xiaoyao Li
2026-07-16 21:42     ` Ackerley Tng
2026-07-17  3:56       ` Xiaoyao Li
2026-07-21 16:24         ` Sean Christopherson [this message]
2026-07-22  3:25           ` Xiaoyao Li
2026-07-23 20:33             ` 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=al-dQ1EBD272HY4a@google.com \
    --to=seanjc@google.com \
    --cc=ackerleytng@google.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=tabba@google.com \
    --cc=xiaoyao.li@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome