提交 5d395fa6 编写于 作者: M Mauro Carvalho Chehab 提交者: Jonathan Corbet

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: NMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: NJonathan Corbet <corbet@lwn.net>
上级 d25c0634
...@@ -75,6 +75,9 @@ while (<IN>) { ...@@ -75,6 +75,9 @@ while (<IN>) {
# Remove URL false-positives # Remove URL false-positives
next if ($fulref =~ m/^http/); 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 # Discard some build examples from Documentation/target/tcm_mod_builder.txt
next if ($fulref =~ m,mnt/sdb/lio-core-2.6.git/Documentation/target,); next if ($fulref =~ m,mnt/sdb/lio-core-2.6.git/Documentation/target,);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册