The patch titled Subject: highmem: remove unneeded spaces in kmap_local_page() kdocs has been added to the -mm mm-unstable branch. Its filename is highmem-remove-unneeded-spaces-in-kmap_local_page-kdocs.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/highmem-remove-unneeded-spaces-in-kmap_local_page-kdocs.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: "Fabio M. De Francesco" <fmdefrancesco@xxxxxxxxx> Subject: highmem: remove unneeded spaces in kmap_local_page() kdocs Date: Thu, 28 Jul 2022 17:48:38 +0200 Patch series "highmem: Extend kmap_local_page() documentation", v2. The Highmem interface is evolving and the current documentation does not reflect the intended uses of each of the calls. Furthermore, after a recent series of reworks, the differences of the calls can still be confusing and may lead to the expanded use of calls which are deprecated. This series is the second round of changes towards an enhanced documentation of the Highmem's interface; at this stage the patches are only focused to kmap_local_page(). In addition it also contains some minor clean ups. This patch (of 7): In the kdocs of kmap_local_page(), the description of @page starts after several unnecessary spaces. Therefore, remove those spaces. Link: https://lkml.kernel.org/r/20220728154844.10874-1-fmdefrancesco@xxxxxxxxx Link: https://lkml.kernel.org/r/20220728154844.10874-2-fmdefrancesco@xxxxxxxxx Signed-off-by: Fabio M. De Francesco <fmdefrancesco@xxxxxxxxx> Suggested-by: Ira Weiny <ira.weiny@xxxxxxxxx> Reviewed-by: Ira Weiny <ira.weiny@xxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Cc: Mike Rapoport <rppt@xxxxxxxxxxxxx> Cc: Sebastian Andrzej Siewior <bigeasy@xxxxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Will Deacon <will@xxxxxxxxxx> Cc: Peter Collingbourne <pcc@xxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/highmem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/highmem.h~highmem-remove-unneeded-spaces-in-kmap_local_page-kdocs +++ a/include/linux/highmem.h @@ -60,7 +60,7 @@ static inline void kmap_flush_unused(voi /** * kmap_local_page - Map a page for temporary usage - * @page: Pointer to the page to be mapped + * @page: Pointer to the page to be mapped * * Returns: The virtual address of the mapping * _ Patches currently in -mm which might be from fmdefrancesco@xxxxxxxxx are highmem-remove-unneeded-spaces-in-kmap_local_page-kdocs.patch highmem-specify-that-kmap_local_page-is-callable-from-interrupts.patch documentation-mm-dont-kmap-pages-which-cant-come-from-highmem.patch documentation-mm-avoid-invalid-use-of-addresses-from-kmap_local_page.patch documentation-mm-prefer-kmap_local_page-and-avoid-kmap.patch highmem-delete-a-sentence-from-kmap_local_page-kdocs.patch documentation-mm-add-details-about-kmap_local_page-and-preemption.patch