The patch titled Subject: proc/vmcore: fix vmcore_alloc_buf() kernel-doc comment has been added to the -mm tree. Its filename is proc-vmcore-fix-vmcore_alloc_buf-kernel-doc-comment.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/proc-vmcore-fix-vmcore_alloc_buf-kernel-doc-comment.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/proc-vmcore-fix-vmcore_alloc_buf-kernel-doc-comment.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: proc/vmcore: fix vmcore_alloc_buf() kernel-doc comment Fix a spelling problem to remove warnings found by running scripts/kernel-doc, which is caused by using 'make W=1'. fs/proc/vmcore.c:492: warning: Function parameter or member 'size' not described in 'vmcore_alloc_buf' fs/proc/vmcore.c:492: warning: Excess function parameter 'sizez' description in 'vmcore_alloc_buf' Link: https://lkml.kernel.org/r/20220129011449.105278-1-yang.lee@xxxxxxxxxxxxxxxxx Signed-off-by: Yang Li <yang.lee@xxxxxxxxxxxxxxxxx> Reported-by: Abaci Robot <abaci@xxxxxxxxxxxxxxxxx> Acked-by: Baoquan He <bhe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/vmcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/proc/vmcore.c~proc-vmcore-fix-vmcore_alloc_buf-kernel-doc-comment +++ a/fs/proc/vmcore.c @@ -480,7 +480,7 @@ static const struct vm_operations_struct /** * vmcore_alloc_buf - allocate buffer in vmalloc memory - * @sizez: size of buffer + * @size: size of buffer * * If CONFIG_MMU is defined, use vmalloc_user() to allow users to mmap * the buffer to user-space by means of remap_vmalloc_range(). _ Patches currently in -mm which might be from yang.lee@xxxxxxxxxxxxxxxxx are proc-vmcore-fix-vmcore_alloc_buf-kernel-doc-comment.patch