+ llist-use-correct-function-parameter-name.patch added to mm-nonmm-unstable branch
Andrew Morton <[email protected]>
| Newsgroups | org.kernel.vger.mm-commits |
|---|---|
| Message-ID | <[email protected]> |
The patch titled
Subject: llist: use correct function parameter name
has been added to the -mm mm-nonmm-unstable branch. Its filename is
llist-use-correct-function-parameter-name.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/llist-use-correct-function-parameter-name.patch
This patch will later appear in the mm-nonmm-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 various
branches at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there most days
------------------------------------------------------
From: Randy Dunlap <[email protected]>
Subject: llist: use correct function parameter name
Date: Thu, 23 Jul 2026 09:51:13 -0700
Correct the function parameter name to avoid kernel-doc warnings:
Warning: ./include/linux/llist.h:71 function parameter 'list' not described in 'init_llist_head'
Warning: ./include/linux/llist.h:71 Excess function parameter 'head' description in 'init_llist_head'
Link: https://lore.kernel.org/[email protected]
Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
---
include/linux/llist.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/include/linux/llist.h~llist-use-correct-function-parameter-name
+++ a/include/linux/llist.h
@@ -66,7 +66,7 @@ struct llist_node {
/**
* init_llist_head - initialize lock-less list head
- * @head: the head for your lock-less list
+ * @list: the head for your lock-less list
*/
static inline void init_llist_head(struct llist_head *list)
{
_
Patches currently in -mm which might be from [email protected] are
mm-migrate-use-migrate_info-field-instead-of-private-fix.patch
mm-page_owner-document-page_owner-filter-fix.patch
radix-tree-add-correct-some-kernel-doc.patch
delaytop-sort-by-max-delay-to-highlight-top-latency-processes-fix.patch
rbtree-fixup-kernel-doc-names.patch
llist-use-correct-function-parameter-name.patch