Commit 6922c3d7 authored by Tom Zanussi's avatar Tom Zanussi Committed by Arnaldo Carvalho de Melo

perf/trace/scripting: rw-by-pid script cleanup

Some minor fixes for the rw-by-pid script:

- Fix nuisance 'use of uninitialized value' warnings

- Change the failed read/write sections to sort by error counts

Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
LKML-Reference: <1273466820-9330-3-git-send-email-tzanussi@gmail.com>
Signed-off-by: default avatarTom Zanussi <tzanussi@gmail.com>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent c3f5fd28
...@@ -79,12 +79,12 @@ sub trace_end ...@@ -79,12 +79,12 @@ sub trace_end
printf("%6s %-20s %10s %10s %10s\n", "------", "--------------------", printf("%6s %-20s %10s %10s %10s\n", "------", "--------------------",
"-----------", "----------", "----------"); "-----------", "----------", "----------");
foreach my $pid (sort {$reads{$b}{bytes_read} <=> foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
$reads{$a}{bytes_read}} keys %reads) { ($reads{$a}{bytes_read} || 0) } keys %reads) {
my $comm = $reads{$pid}{comm}; my $comm = $reads{$pid}{comm} || "";
my $total_reads = $reads{$pid}{total_reads}; my $total_reads = $reads{$pid}{total_reads} || 0;
my $bytes_requested = $reads{$pid}{bytes_requested}; my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
my $bytes_read = $reads{$pid}{bytes_read}; my $bytes_read = $reads{$pid}{bytes_read} || 0;
printf("%6s %-20s %10s %10s %10s\n", $pid, $comm, printf("%6s %-20s %10s %10s %10s\n", $pid, $comm,
$total_reads, $bytes_requested, $bytes_read); $total_reads, $bytes_requested, $bytes_read);
...@@ -96,16 +96,23 @@ sub trace_end ...@@ -96,16 +96,23 @@ sub trace_end
printf("%6s %20s %6s %10s\n", "------", "--------------------", printf("%6s %20s %6s %10s\n", "------", "--------------------",
"------", "----------"); "------", "----------");
foreach my $pid (keys %reads) { my @errcounts = ();
my $comm = $reads{$pid}{comm};
foreach my $err (sort {$reads{$b}{comm} cmp $reads{$a}{comm}}
keys %{$reads{$pid}{errors}}) {
my $errors = $reads{$pid}{errors}{$err};
printf("%6d %-20s %6d %10s\n", $pid, $comm, $err, $errors); foreach my $pid (keys %reads) {
foreach my $error (keys %{$reads{$pid}{errors}}) {
my $comm = $reads{$pid}{comm} || "";
my $errcount = $reads{$pid}{errors}{$error} || 0;
push @errcounts, [$pid, $comm, $error, $errcount];
} }
} }
@errcounts = sort { $b->[3] <=> $a->[3] } @errcounts;
for my $i (0 .. $#errcounts) {
printf("%6d %-20s %6d %10s\n", $errcounts[$i][0],
$errcounts[$i][1], $errcounts[$i][2], $errcounts[$i][3]);
}
printf("\nwrite counts by pid:\n\n"); printf("\nwrite counts by pid:\n\n");
printf("%6s %20s %10s %10s\n", "pid", "comm", printf("%6s %20s %10s %10s\n", "pid", "comm",
...@@ -113,11 +120,11 @@ sub trace_end ...@@ -113,11 +120,11 @@ sub trace_end
printf("%6s %-20s %10s %10s\n", "------", "--------------------", printf("%6s %-20s %10s %10s\n", "------", "--------------------",
"-----------", "----------"); "-----------", "----------");
foreach my $pid (sort {$writes{$b}{bytes_written} <=> foreach my $pid (sort { ($writes{$b}{bytes_written} || 0) <=>
$writes{$a}{bytes_written}} keys %writes) { ($writes{$a}{bytes_written} || 0)} keys %writes) {
my $comm = $writes{$pid}{comm}; my $comm = $writes{$pid}{comm} || "";
my $total_writes = $writes{$pid}{total_writes}; my $total_writes = $writes{$pid}{total_writes} || 0;
my $bytes_written = $writes{$pid}{bytes_written}; my $bytes_written = $writes{$pid}{bytes_written} || 0;
printf("%6s %-20s %10s %10s\n", $pid, $comm, printf("%6s %-20s %10s %10s\n", $pid, $comm,
$total_writes, $bytes_written); $total_writes, $bytes_written);
...@@ -129,16 +136,23 @@ sub trace_end ...@@ -129,16 +136,23 @@ sub trace_end
printf("%6s %20s %6s %10s\n", "------", "--------------------", printf("%6s %20s %6s %10s\n", "------", "--------------------",
"------", "----------"); "------", "----------");
foreach my $pid (keys %writes) { @errcounts = ();
my $comm = $writes{$pid}{comm};
foreach my $err (sort {$writes{$b}{comm} cmp $writes{$a}{comm}}
keys %{$writes{$pid}{errors}}) {
my $errors = $writes{$pid}{errors}{$err};
printf("%6d %-20s %6d %10s\n", $pid, $comm, $err, $errors); foreach my $pid (keys %writes) {
foreach my $error (keys %{$writes{$pid}{errors}}) {
my $comm = $writes{$pid}{comm} || "";
my $errcount = $writes{$pid}{errors}{$error} || 0;
push @errcounts, [$pid, $comm, $error, $errcount];
} }
} }
@errcounts = sort { $b->[3] <=> $a->[3] } @errcounts;
for my $i (0 .. $#errcounts) {
printf("%6d %-20s %6d %10s\n", $errcounts[$i][0],
$errcounts[$i][1], $errcounts[$i][2], $errcounts[$i][3]);
}
print_unhandled(); print_unhandled();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment