On Thu, Nov 27, 2025 at 01:18:10PM +0200, Mike Rapoport wrote:
On Tue, Nov 25, 2025 at 02:21:16PM -0500, Peter Xu wrote:
Hi, Mike,
On Tue, Nov 25, 2025 at 08:38:38PM +0200, Mike Rapoport wrote:
From: "Mike Rapoport (Microsoft)" rppt@kernel.org
When a VMA is registered with userfaulfd in minor mode, its ->fault() method should check if a folio exists in the page cache and if yes ->fault() should call handle_userfault(VM_UFFD_MISSING).
s/MISSING/MINOR/
Thanks, fixed.
new VM_FAULT_UFFD_MINOR there instead.
Personally I'd keep the fault path as simple as possible, because that's the more frequently used path (rather than when userfaultfd is armed). I also see it slightly a pity that even with flags introduced, it only solves the MINOR problem, not MISSING.
With David's suggestion the likely path remains unchanged.
It is not about the likely, it's about introducing flags into core path that makes the core path harder to follow, when it's not strictly required.
Meanwhile, personally I'm also not sure if we should have "unlikely" here.. My gut feeling is in reality we will only have two major use cases:
(a) when userfaultfd minor isn't in the picture
(b) when userfaultfd minor registered and actively being used (e.g. in a postcopy process)
Then without likely, IIUC the hardware should optimize path selected hence both a+b performs almost equally well.
My guessing is after adding unlikely, (a) works well, but (b) works badly. We may need to measure it, IIUC it's part of the reason why we sometimes do not encourage "likely/unlikely". But that's only my guess, some numbers would be more helpful.
One thing we can try is if we add "unlikely" then compare a sequential MINOR fault trapping on shmem and measure the time it takes, we need to better make sure we don't regress perf there. I wonder if James / Axel would care about it - QEMU doesn't yet support minor, but will soon, and we will also prefer better perf since the start.
As for MISSING, let's take it baby steps. We have enough space in vm_fault_reason for UFFD_MISSING if we'd want to pull handle_userfault() from shmem and hugetlb.
Yep.
If it's me, I'd simply export handle_userfault().. I confess I still don't know why exporting it is a problem, but maybe I missed something.
It's not only about export, it's also about not requiring ->fault() methods for pte-mapped memory call handle_userfault().
I also don't see it a problem.. as what shmem used to do. Maybe it's a personal preference? If so, I don't have a strong opinion.
Just to mention, if we want, I think we have at least one more option to do the same thing, but without even introducing a new flag to ->fault() retval.
That is, when we have get_folio() around, we can essentially do two faults in sequence, one lighter then the real one, only for minor vmas, something like (I didn't think deeper, so only a rough idea shown):
__do_fault(): if (uffd_minor(vma)) { ... folio = vma->get_folio(...); if (folio) return handle_userfault(vmf, VM_UFFD_MINOR); // fallthrough, which imply a cache miss } ret = vma->vm_ops->fault(vmf); ...
The risk of above is also perf-wise, but it's another angle where it might slow down page cache miss case where MINOR is registered only (hence, when cache missing we'll need to call both get_folio() and fault() now). However that's likely a less critical case than the unlikely, and I'm also guessing due to the shared code of get_folio() / fault(), codes will be preheated and it may not be measureable even if we write it like that.
Then maybe we can avoid this new flag completely but also achieve the same goal.
Thanks,