aboutsummaryrefslogtreecommitdiff
path: root/lib/checksrc.pl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/checksrc.pl')
-rwxr-xr-xlib/checksrc.pl20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/checksrc.pl b/lib/checksrc.pl
index cd4314b51..190f00c93 100755
--- a/lib/checksrc.pl
+++ b/lib/checksrc.pl
@@ -26,13 +26,31 @@ my $indent = 2;
my $warnings;
my $errors;
+my $supressed; # whitelisted problems
my $file;
my $dir=".";
my $wlist;
+my %whitelist;
+
+sub readwhitelist {
+ open(W, "<checksrc.whitelist");
+ my @all=<W>;
+ for(@all) {
+ chomp;
+ $whitelist{$_}=1;
+ }
+ close(W);
+}
+
sub checkwarn {
my ($num, $col, $file, $line, $msg, $error) = @_;
+ if($whitelist{$line}) {
+ $supressed++;
+ return;
+ }
+
my $w=$error?"error":"warning";
if($w) {
@@ -78,6 +96,8 @@ if(!$file) {
exit;
}
+readwhitelist();
+
do {
if("$wlist" !~ / $file /) {
my $fullname = $file;