The patch titled Subject: checkpatch: [HLP]LIST_HEAD is also declaration has been added to the -mm tree. Its filename is checkpatch-list_head-is-also-declaration.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/checkpatch-list_head-is-also-declaration.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/checkpatch-list_head-is-also-declaration.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/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Steffen Maier <maier@xxxxxxxxxxxxxxxxxx> Subject: checkpatch: [HLP]LIST_HEAD is also declaration Fixes the following false warning among others for LLIST_HEAD and PLIST_HEAD: WARNING: Missing a blank line after declarations #71: FILE: drivers/s390/scsi/zfcp_fsf.c:422: + struct hlist_node *tmp; + HLIST_HEAD(remove_queue); Link: http://lkml.kernel.org/r/20170614133512.89425-1-maier@xxxxxxxxxxxxxxxxxx Signed-off-by: Steffen Maier <maier@xxxxxxxxxxxxxxxxxx> Acked-by: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/checkpatch.pl~checkpatch-list_head-is-also-declaration scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-list_head-is-also-declaration +++ a/scripts/checkpatch.pl @@ -732,7 +732,7 @@ our $FuncArg = qr{$Typecast{0,1}($LvalOr our $declaration_macros = qr{(?x: (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(| - (?:$Storage\s+)?LIST_HEAD\s*\(| + (?:$Storage\s+)?[HLP]?LIST_HEAD\s*\(| (?:$Storage\s+)?${Type}\s+uninitialized_var\s*\( )}; _ Patches currently in -mm which might be from maier@xxxxxxxxxxxxxxxxxx are checkpatch-list_head-is-also-declaration.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html