diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-06-26 06:49:04 -0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2018-07-02 11:25:00 -0600 |
commit | 5d395fa63baa5cce7314ff806b81c77319432bf2 (patch) | |
tree | ccfba4281600097418ae33b421c7c4ec4265f84a /scripts | |
parent | d25c0634441ca59325f1119cbd203ecda65521b2 (diff) | |
download | linux-stable-5d395fa63baa5cce7314ff806b81c77319432bf2.tar.gz linux-stable-5d395fa63baa5cce7314ff806b81c77319432bf2.tar.bz2 linux-stable-5d395fa63baa5cce7314ff806b81c77319432bf2.zip |
scripts/documentation-file-ref-check: ignore sched-pelt false positive
When Documentation/scheduler/sched-pelt.c is compiled, it generates
a file called Documentation/scheduler/sched-pelt. As this only
exists after building such tool, we need an explict check
to remove the false-positive.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/documentation-file-ref-check | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/documentation-file-ref-check b/scripts/documentation-file-ref-check index 857eb0d7458d..ad9db6821824 100755 --- a/scripts/documentation-file-ref-check +++ b/scripts/documentation-file-ref-check @@ -75,6 +75,9 @@ while (<IN>) { # Remove URL false-positives next if ($fulref =~ m/^http/); + # Remove sched-pelt false-positive + next if ($fulref =~ m,^Documentation/scheduler/sched-pelt$,); + # Discard some build examples from Documentation/target/tcm_mod_builder.txt next if ($fulref =~ m,mnt/sdb/lio-core-2.6.git/Documentation/target,); |