aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJim Cromie <jim.cromie@gmail.com>2011-05-23 12:44:56 -0600
committerMichal Marek <mmarek@suse.cz>2011-05-24 16:07:07 +0200
commitbdabc7a345db97b3839c2c3deef40023cf8017ef (patch)
treedd4c1b460d9757ff611dce5548761aed62a7714d /scripts
parentde7b0b4110795be914e6cafdfec4276b2618cc78 (diff)
downloadkernel_samsung_smdk4412-bdabc7a345db97b3839c2c3deef40023cf8017ef.zip
kernel_samsung_smdk4412-bdabc7a345db97b3839c2c3deef40023cf8017ef.tar.gz
kernel_samsung_smdk4412-bdabc7a345db97b3839c2c3deef40023cf8017ef.tar.bz2
export_report: sort SECTION 2 output
Sort SECTION 2 modules by name. Within those module listings, sort the symbol providers by name, and remove the count, as it is misleading; its the kernel-wide count of uses of that symbol, not the count pertaining to the module being outlined. (this can be seen by grepping the output for a single symbol). The count is still used to sort the symbols. Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/export_report.pl8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/export_report.pl b/scripts/export_report.pl
index f97899c..48398a1 100644
--- a/scripts/export_report.pl
+++ b/scripts/export_report.pl
@@ -25,11 +25,12 @@ sub alphabetically {
sub print_depends_on {
my ($href) = @_;
print "\n";
- while (my ($mod, $list) = each %$href) {
+ for my $mod (sort keys %$href) {
+ my $list = $href->{$mod};
print "\t$mod:\n";
foreach my $sym (sort numerically @{$list}) {
my ($symbol, $no) = split /\s+/, $sym;
- printf("\t\t%-25s\t%-25d\n", $symbol, $no);
+ printf("\t\t%-25s\n", $symbol);
}
print "\n";
}
@@ -166,7 +167,8 @@ 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 "~"x80 , "\n";
-while (my ($thismod, $list) = each %MODULE) {
+for my $thismod (sort keys %MODULE) {
+ my $list = $MODULE{$thismod};
my %depends;
$thismod =~ s/\.mod\.c/.ko/;
print "\t\t\t$thismod\n";