The patch titled Subject: mm/munlock: fix kernel-doc formatting issues has been added to the -mm tree. Its filename is mm-munlock-mlock_page-munlock_page-batch-by-pagevec-fix.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-munlock-mlock_page-munlock_page-batch-by-pagevec-fix.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-munlock-mlock_page-munlock_page-batch-by-pagevec-fix.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: Yang Li <yang.lee@xxxxxxxxxxxxxxxxx> Subject: mm/munlock: fix kernel-doc formatting issues Some functions had kernel-doc that used a hash instead of a colon to separate the parameter name from the one line description. Replacing them to remove warnings found by running scripts/kernel-doc, which is caused by using 'make W=1'. mm/mlock.c:218: warning: Function parameter or member 'page' not described in 'mlock_page' mm/mlock.c:240: warning: Function parameter or member 'page' not described in 'mlock_new_page' mm/mlock.c:260: warning: Function parameter or member 'page' not described in 'munlock_page' Link: https://lkml.kernel.org/r/20220210004849.69017-1-yang.lee@xxxxxxxxxxxxxxxxx Signed-off-by: Yang Li <yang.lee@xxxxxxxxxxxxxxxxx> Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx> Cc: Hugh Dickins <hughd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- --- a/mm/mlock.c~mm-munlock-mlock_page-munlock_page-batch-by-pagevec-fix +++ a/mm/mlock.c @@ -212,7 +212,7 @@ bool need_mlock_page_drain(int cpu) /** * mlock_page - mlock a page already on (or temporarily off) LRU - * @page - page to be mlocked, either a normal page or a THP head. + * @page: page to be mlocked, either a normal page or a THP head. */ void mlock_page(struct page *page) { @@ -234,7 +234,7 @@ void mlock_page(struct page *page) /** * mlock_new_page - mlock a newly allocated page not yet on LRU - * @page - page to be mlocked, either a normal page or a THP head. + * @page: page to be mlocked, either a normal page or a THP head. */ void mlock_new_page(struct page *page) { @@ -254,7 +254,7 @@ void mlock_new_page(struct page *page) /** * munlock_page - munlock a page - * @page - page to be munlocked, either a normal page or a THP head. + * @page: page to be munlocked, either a normal page or a THP head. */ void munlock_page(struct page *page) { _ Patches currently in -mm which might be from yang.lee@xxxxxxxxxxxxxxxxx are mm-munlock-mlock_page-munlock_page-batch-by-pagevec-fix.patch proc-vmcore-fix-vmcore_alloc_buf-kernel-doc-comment.patch