diff options
author | Joe Perches <joe@perches.com> | 2016-10-11 16:52:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-11 18:06:30 -0400 |
commit | 0616efa45af493a259d25c1716102173f10bd789 (patch) | |
tree | 18f2263775e0ff72fb0e3ff7e7e6d7cdb963534b /scripts | |
parent | 15c03cfeabff447abec9e05b5830922099b89943 (diff) |
checkpatch: speed up checking for filenames in sections marked obsolete
Adding -f to the get_maintainer.pl invocation means git isn't invoked
by get_maintainer.pl for known filenames.
This reduces the overall time to run checkpatch.
Link: http://lkml.kernel.org/r/22991e3a295aeb399b43af0478b6e5809106ccee.1472684066.git.joe@perches.com
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 4ecb66c595f4..e44dc0c75d54 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -759,7 +759,7 @@ sub is_maintained_obsolete { | |||
759 | 759 | ||
760 | return 0 if (!(-e "$root/scripts/get_maintainer.pl")); | 760 | return 0 if (!(-e "$root/scripts/get_maintainer.pl")); |
761 | 761 | ||
762 | my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback $filename 2>&1`; | 762 | my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -f $filename 2>&1`; |
763 | 763 | ||
764 | return $status =~ /obsolete/i; | 764 | return $status =~ /obsolete/i; |
765 | } | 765 | } |