Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

checkpatch: allow http links of any length in commit logs

Dave Gilbert noticed that checkpatch warns about URL links over 75 chars
in length in commit logs.

Fix that.

Link: https://lkml.kernel.org/r/3529faaf84a5a9a96c5c0ec4183ae0ba6e97673c.camel@perches.com
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Dave Gilbert <linux@treblig.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Joe Perches and committed by
Andrew Morton
a6cf527e e416f0ed

+1 -1
+1 -1
scripts/checkpatch.pl
··· 3294 3294 # file delta changes 3295 3295 $line =~ /^\s*(?:[\w\.\-\+]*\/)++[\w\.\-\+]+:/ || 3296 3296 # filename then : 3297 - $line =~ /^\s*(?:Fixes:|$link_tags_search|$signature_tags)/i || 3297 + $line =~ /^\s*(?:Fixes:|https?:|$link_tags_search|$signature_tags)/i || 3298 3298 # A Fixes:, link or signature tag line 3299 3299 $commit_log_possible_stack_dump)) { 3300 3300 WARN("COMMIT_LOG_LONG_LINE",