diff --git a/[refs] b/[refs] index aa0deeb325cf..ef4c8fd592c4 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: bdabc7a345db97b3839c2c3deef40023cf8017ef +refs/heads/master: ca995cbf77f3df599b7e751c2d08d90787c65c45 diff --git a/trunk/scripts/export_report.pl b/trunk/scripts/export_report.pl index 48398a19fbbc..8f79b701de87 100644 --- a/trunk/scripts/export_report.pl +++ b/trunk/scripts/export_report.pl @@ -102,6 +102,8 @@ sub collectcfiles { # # collect the usage count of each symbol. # +my $modversion_warnings = 0; + foreach my $thismod (@allcfiles) { my $module; @@ -132,7 +134,8 @@ sub collectcfiles { } } if ($state != 2) { - print "WARNING:$thismod is not built with CONFIG_MODVERSION enabled\n"; + warn "WARNING:$thismod is not built with CONFIG_MODVERSIONS enabled\n"; + $modversion_warnings++; } close($module); } @@ -166,6 +169,9 @@ sub collectcfiles { modules. Each module lists the modules, and the symbols from that module that it uses. Each listed symbol reports the number of modules using it\n"); +print "\nNOTE: Got $modversion_warnings CONFIG_MODVERSIONS warnings\n\n" + if $modversion_warnings; + print "~"x80 , "\n"; for my $thismod (sort keys %MODULE) { my $list = $MODULE{$thismod};