]> Git Repo - linux.git/blobdiff - scripts/documentation-file-ref-check
Merge tag 'mlx5-fixes-2019-03-11' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / scripts / documentation-file-ref-check
index 078999a3fdff7542ff52db288b96d9f0848e1c49..ad9db6821824392d293716107b843573c85145d6 100755 (executable)
@@ -75,6 +75,12 @@ 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,);
+
                # Check if exists, evaluating wildcards
                next if (grep -e, glob("$ref $fulref"));
 
This page took 0.030098 seconds and 4 git commands to generate.