GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / tools / perf / scripts / perl / rwtop.pl
blob4bb3ecd33472498b186afe3b809d9431737e4c03
1 #!/usr/bin/perl -w
2 # (c) 2010, Tom Zanussi <tzanussi@gmail.com>
3 # Licensed under the terms of the GNU GPL License version 2
5 # read/write top
7 # Periodically displays system-wide r/w call activity, broken down by
8 # pid. If an [interval] arg is specified, the display will be
9 # refreshed every [interval] seconds. The default interval is 3
10 # seconds.
12 use 5.010000;
13 use strict;
14 use warnings;
16 use lib "$ENV{'PERF_EXEC_PATH'}/scripts/perl/Perf-Trace-Util/lib";
17 use lib "./Perf-Trace-Util/lib";
18 use Perf::Trace::Core;
19 use Perf::Trace::Util;
21 my $default_interval = 3;
22 my $nlines = 20;
23 my $print_thread;
24 my $print_pending = 0;
26 my %reads;
27 my %writes;
29 my $interval = shift;
30 if (!$interval) {
31 $interval = $default_interval;
34 sub syscalls::sys_exit_read
36 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
37 $common_pid, $common_comm,
38 $nr, $ret) = @_;
40 print_check();
42 if ($ret > 0) {
43 $reads{$common_pid}{bytes_read} += $ret;
44 } else {
45 if (!defined ($reads{$common_pid}{bytes_read})) {
46 $reads{$common_pid}{bytes_read} = 0;
48 $reads{$common_pid}{errors}{$ret}++;
52 sub syscalls::sys_enter_read
54 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
55 $common_pid, $common_comm,
56 $nr, $fd, $buf, $count) = @_;
58 print_check();
60 $reads{$common_pid}{bytes_requested} += $count;
61 $reads{$common_pid}{total_reads}++;
62 $reads{$common_pid}{comm} = $common_comm;
65 sub syscalls::sys_exit_write
67 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
68 $common_pid, $common_comm,
69 $nr, $ret) = @_;
71 print_check();
73 if ($ret <= 0) {
74 $writes{$common_pid}{errors}{$ret}++;
78 sub syscalls::sys_enter_write
80 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
81 $common_pid, $common_comm,
82 $nr, $fd, $buf, $count) = @_;
84 print_check();
86 $writes{$common_pid}{bytes_written} += $count;
87 $writes{$common_pid}{total_writes}++;
88 $writes{$common_pid}{comm} = $common_comm;
91 sub trace_begin
93 $SIG{ALRM} = \&set_print_pending;
94 alarm 1;
97 sub trace_end
99 print_unhandled();
100 print_totals();
103 sub print_check()
105 if ($print_pending == 1) {
106 $print_pending = 0;
107 print_totals();
111 sub set_print_pending()
113 $print_pending = 1;
114 alarm $interval;
117 sub print_totals
119 my $count;
121 $count = 0;
123 clear_term();
125 printf("\nread counts by pid:\n\n");
127 printf("%6s %20s %10s %10s %10s\n", "pid", "comm",
128 "# reads", "bytes_req", "bytes_read");
129 printf("%6s %-20s %10s %10s %10s\n", "------", "--------------------",
130 "----------", "----------", "----------");
132 foreach my $pid (sort { ($reads{$b}{bytes_read} || 0) <=>
133 ($reads{$a}{bytes_read} || 0) } keys %reads) {
134 my $comm = $reads{$pid}{comm} || "";
135 my $total_reads = $reads{$pid}{total_reads} || 0;
136 my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
137 my $bytes_read = $reads{$pid}{bytes_read} || 0;
139 printf("%6s %-20s %10s %10s %10s\n", $pid, $comm,
140 $total_reads, $bytes_requested, $bytes_read);
142 if (++$count == $nlines) {
143 last;
147 $count = 0;
149 printf("\nwrite counts by pid:\n\n");
151 printf("%6s %20s %10s %13s\n", "pid", "comm",
152 "# writes", "bytes_written");
153 printf("%6s %-20s %10s %13s\n", "------", "--------------------",
154 "----------", "-------------");
156 foreach my $pid (sort { ($writes{$b}{bytes_written} || 0) <=>
157 ($writes{$a}{bytes_written} || 0)} keys %writes) {
158 my $comm = $writes{$pid}{comm} || "";
159 my $total_writes = $writes{$pid}{total_writes} || 0;
160 my $bytes_written = $writes{$pid}{bytes_written} || 0;
162 printf("%6s %-20s %10s %13s\n", $pid, $comm,
163 $total_writes, $bytes_written);
165 if (++$count == $nlines) {
166 last;
170 %reads = ();
171 %writes = ();
174 my %unhandled;
176 sub print_unhandled
178 if ((scalar keys %unhandled) == 0) {
179 return;
182 print "\nunhandled events:\n\n";
184 printf("%-40s %10s\n", "event", "count");
185 printf("%-40s %10s\n", "----------------------------------------",
186 "-----------");
188 foreach my $event_name (keys %unhandled) {
189 printf("%-40s %10d\n", $event_name, $unhandled{$event_name});
193 sub trace_unhandled
195 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
196 $common_pid, $common_comm) = @_;
198 $unhandled{$event_name}++;