The patch titled Subject: folio_likely_mapped_shared() kerneldoc fixup has been added to the -mm mm-unstable branch. Its filename is mm-convert-folio_estimated_sharers-to-folio_likely_mapped_shared-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-convert-folio_estimated_sharers-to-folio_likely_mapped_shared-fix.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: David Hildenbrand <david@xxxxxxxxxx> Subject: folio_likely_mapped_shared() kerneldoc fixup Date: Mon, 25 Mar 2024 09:23:03 +0100 Fixup "mm: convert folio_estimated_sharers() to folio_likely_mapped_shared()". Link: https://lkml.kernel.org/r/dd0ad9f2-2d7a-45f3-9ba3-979488c7dd27@xxxxxxxxxx Signed-off-by: David Hildenbrand <david@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm.h | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) --- a/include/linux/mm.h~mm-convert-folio_estimated_sharers-to-folio_likely_mapped_shared-fix +++ a/include/linux/mm.h @@ -2183,23 +2183,25 @@ static inline size_t folio_size(struct f * at most once into an MM, and they cannot be partially mapped. * * For other folios, the result can be fuzzy: - * (a) For partially-mappable large folios (THP), the return value can wrongly - * indicate "mapped exclusively" (false negative) when the folio is - * only partially mapped into at least one MM. - * (b) For pagecache folios (including hugetlb), the return value can wrongly - * indicate "mapped shared" (false positive) when two VMAs in the same MM - * cover the same file range. - * (c) For (small) KSM folios, the return value can wrongly indicate "mapped - * shared" (false negative), when the folio is mapped multiple times into - * the same MM. + * #. For partially-mappable large folios (THP), the return value can wrongly + * indicate "mapped exclusively" (false negative) when the folio is + * only partially mapped into at least one MM. + * #. For pagecache folios (including hugetlb), the return value can wrongly + * indicate "mapped shared" (false positive) when two VMAs in the same MM + * cover the same file range. + * #. For (small) KSM folios, the return value can wrongly indicate "mapped + * shared" (false negative), when the folio is mapped multiple times into + * the same MM. * * Further, this function only considers current page table mappings that - * are tracked using the folio mapcount(s). It does not consider: - * (1) If the folio might get mapped in the (near) future (e.g., swapcache, - * pagecache, temporary unmapping for migration). - * (2) If the folio is mapped differently (VM_PFNMAP). - * (3) If hugetlb page table sharing applies. Callers might want to check - * hugetlb_pmd_shared(). + * are tracked using the folio mapcount(s). + * + * This function does not consider: + * #. If the folio might get mapped in the (near) future (e.g., swapcache, + * pagecache, temporary unmapping for migration). + * #. If the folio is mapped differently (VM_PFNMAP). + * #. If hugetlb page table sharing applies. Callers might want to check + * hugetlb_pmd_shared(). * * Return: Whether the folio is estimated to be mapped into more than one MM. */ _ Patches currently in -mm which might be from david@xxxxxxxxxx are mm-secretmem-fix-gup-fast-succeeding-on-secretmem-folios.patch mm-madvise-make-madv_populate_readwrite-handle-vm_fault_retry-properly.patch mm-madvise-dont-perform-madvise-vma-walk-for-madv_populate_readwrite.patch mm-userfaultfd-dont-place-zeropages-when-zeropages-are-disallowed.patch s390-mm-re-enable-the-shared-zeropage-for-pv-and-skeys-kvm-guests.patch mm-convert-folio_estimated_sharers-to-folio_likely_mapped_shared.patch mm-convert-folio_estimated_sharers-to-folio_likely_mapped_shared-fix.patch selftests-memfd_secret-add-vmsplice-test.patch mm-merge-folio_is_secretmem-into-folio_fast_pin_allowed.patch