The quilt patch titled Subject: checkpatch: warn only for URLs to non-lore archives has been removed from the -mm tree. Its filename was checkpatch-add-warning-for-non-lore-mailing-list-urls-fix.patch This patch was dropped because it was folded into checkpatch-add-warning-for-non-lore-mailing-list-urls.patch ------------------------------------------------------ From: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> Subject: checkpatch: warn only for URLs to non-lore archives Date: Mon Nov 14 16:33:12 2022 -0600 Previously we warned for anything that contained the archive hostname, but some email addresses also contain those hostnames, and we'd rather not warn about those. Only warn if we see "http" before the archive hostname. Link: https://lkml.kernel.org/r/20221114224315.GA939630@bhelgaas Signed-off-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> Reviewed-by: Peter Collingbourne <pcc@xxxxxxxxxx> Cc: Andy Whitcroft <apw@xxxxxxxxxxxxx> Cc: Dwaipayan Ray <dwaipayanray1@xxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Kees Cook <keescook@xxxxxxxxxxxx> Cc: Lukas Bulwahn <lukas.bulwahn@xxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/checkpatch.pl~checkpatch-add-warning-for-non-lore-mailing-list-urls-fix +++ a/scripts/checkpatch.pl @@ -3336,7 +3336,7 @@ sub process { } # Check for mailing list archives other than lore.kernel.org - if ($rawline =~ m{\b$obsolete_archives}) { + if ($rawline =~ m{http.*\b$obsolete_archives}) { WARN("PREFER_LORE_ARCHIVE", "Use lore.kernel.org archive links when possible - see https://lore.kernel.org/lists.html\n" . $herecurr); } _ Patches currently in -mm which might be from bhelgaas@xxxxxxxxxx are checkpatch-add-warning-for-non-lore-mailing-list-urls.patch ia64-remove-unused-__slow_down_io-and-slow_down_io-definitions.patch