The patch titled Subject: checkpatch: add *_NOTIFIER_HEAD as var definition has been removed from the -mm tree. Its filename was checkpatch-add-_notifier_head-as-var-definition.patch This patch was dropped because it had testing failures ------------------------------------------------------ From: Gilad Ben-Yossef <gilad@xxxxxxxxxxxxx> Subject: checkpatch: add *_NOTIFIER_HEAD as var definition Add *_NOTIFIER_HEAD as variable definition to avoid code like this: ATOMIC_NOTIFIER_HEAD(foo); EXPORT_SYMBOL_GPL(foo); By triggering the following warning: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable Link: http://lkml.kernel.org/r/20190704104457.30045-1-gilad@xxxxxxxxxxxxx Signed-off-by: Gilad Ben-Yossef <gilad@xxxxxxxxxxxxx> Cc: Ofir Drang <ofir.drang@xxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: John Hubbard <jhubbard@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) --- a/scripts/checkpatch.pl~checkpatch-add-_notifier_head-as-var-definition +++ a/scripts/checkpatch.pl @@ -3891,6 +3891,7 @@ sub process { ^.DEFINE_$Ident\(\Q$name\E\)| ^.DECLARE_$Ident\(\Q$name\E\)| ^.LIST_HEAD\(\Q$name\E\)| + ^.{$Ident}_NOTIFIER_HEAD\(\Q$name\E\)| ^.(?:$Storage\s+)?$Type\s*\(\s*\*\s*\Q$name\E\s*\)\s*\(| \b\Q$name\E(?:\s+$Attribute)*\s*(?:;|=|\[|\() )/x) { _ Patches currently in -mm which might be from gilad@xxxxxxxxxxxxx are