Source
68
68
my $fulref = "$prefix$ref";
69
69
70
70
$fulref =~ s/^(\<file|ref)://;
71
71
$fulref =~ s/^[\'\`]+//;
72
72
$fulref =~ s,^\$\(.*\)/,,;
73
73
$base =~ s,.*/,,;
74
74
75
75
# Remove URL false-positives
76
76
next if ($fulref =~ m/^http/);
77
77
78
+
# Remove sched-pelt false-positive
79
+
next if ($fulref =~ m,^Documentation/scheduler/sched-pelt$,);
80
+
78
81
# Discard some build examples from Documentation/target/tcm_mod_builder.txt
79
82
next if ($fulref =~ m,mnt/sdb/lio-core-2.6.git/Documentation/target,);
80
83
81
84
# Check if exists, evaluating wildcards
82
85
next if (grep -e, glob("$ref $fulref"));
83
86
84
87
# Accept relative Documentation patches for tools/
85
88
if ($f =~ m/tools/) {
86
89
my $path = $f;
87
90
$path =~ s,(.*)/.*,$1,;