On 25.03.24 02:22, Stephen Rothwell wrote:
Hi all, After merging the mm tree, today's linux-next build (htmldocs) produced this warning: Documentation/core-api/mm-api:112: include/linux/mm.h:2187: ERROR: Unexpected indentation. Documentation/core-api/mm-api:112: include/linux/mm.h:2189: WARNING: Block quote ends without a blank line; unexpected unindent. Documentation/core-api/mm-api:112: include/linux/mm.h:2199: ERROR: Unexpected indentation. Documentation/core-api/mm-api:112: include/linux/mm.h:2200: WARNING: Block quote ends without a blank line; unexpected unindent. Introduced by commit 08ec651d776e ("mm: convert folio_estimated_sharers() to folio_likely_mapped_shared()") from the mm-unstable branch of the mm tree.
Seems like kerneldoc does not appreciate my lists+indentation. The following should get the job done: From 3e472636d266e3acba3755ed5712992adbc2151d Mon Sep 17 00:00:00 2001 From: David Hildenbrand <david@xxxxxxxxxx> Date: Mon, 25 Mar 2024 09:23:03 +0100 Subject: [PATCH] folio_likely_mapped_shared() kerneldoc fixup Fixup "mm: convert folio_estimated_sharers() to folio_likely_mapped_shared()". Signed-off-by: David Hildenbrand <david@xxxxxxxxxx> --- include/linux/mm.h | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/include/linux/mm.h b/include/linux/mm.h index afe27ff3fa94..fb3724723448 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2183,23 +2183,25 @@ static inline size_t folio_size(struct folio *folio) * 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. */ -- 2.43.2 -- Cheers, David / dhildenb