RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / tools / perf / scripts / perl / wakeup-latency.pl
blobd9143dcec6c601c3b544fbc3a87fe7c1f29d4e70
1 #!/usr/bin/perl -w
2 # (c) 2009, Tom Zanussi <tzanussi@gmail.com>
3 # Licensed under the terms of the GNU GPL License version 2
5 # Display avg/min/max wakeup latency
7 # The common_* event handler fields are the most useful fields common to
8 # all events. They don't necessarily correspond to the 'common_*' fields
9 # in the status files. Those fields not available as handler params can
10 # be retrieved via script functions of the form get_common_*().
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 %last_wakeup;
23 my $max_wakeup_latency;
24 my $min_wakeup_latency;
25 my $total_wakeup_latency = 0;
26 my $total_wakeups = 0;
28 sub sched::sched_switch
30 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
31 $common_pid, $common_comm,
32 $prev_comm, $prev_pid, $prev_prio, $prev_state, $next_comm, $next_pid,
33 $next_prio) = @_;
35 my $wakeup_ts = $last_wakeup{$common_cpu}{ts};
36 if ($wakeup_ts) {
37 my $switch_ts = nsecs($common_secs, $common_nsecs);
38 my $wakeup_latency = $switch_ts - $wakeup_ts;
39 if ($wakeup_latency > $max_wakeup_latency) {
40 $max_wakeup_latency = $wakeup_latency;
42 if ($wakeup_latency < $min_wakeup_latency) {
43 $min_wakeup_latency = $wakeup_latency;
45 $total_wakeup_latency += $wakeup_latency;
46 $total_wakeups++;
48 $last_wakeup{$common_cpu}{ts} = 0;
51 sub sched::sched_wakeup
53 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
54 $common_pid, $common_comm,
55 $comm, $pid, $prio, $success, $target_cpu) = @_;
57 $last_wakeup{$target_cpu}{ts} = nsecs($common_secs, $common_nsecs);
60 sub trace_begin
62 $min_wakeup_latency = 1000000000;
63 $max_wakeup_latency = 0;
66 sub trace_end
68 printf("wakeup_latency stats:\n\n");
69 print "total_wakeups: $total_wakeups\n";
70 if ($total_wakeups) {
71 printf("avg_wakeup_latency (ns): %u\n",
72 avg($total_wakeup_latency, $total_wakeups));
73 } else {
74 printf("avg_wakeup_latency (ns): N/A\n");
76 printf("min_wakeup_latency (ns): %u\n", $min_wakeup_latency);
77 printf("max_wakeup_latency (ns): %u\n", $max_wakeup_latency);
79 print_unhandled();
82 my %unhandled;
84 sub print_unhandled
86 if ((scalar keys %unhandled) == 0) {
87 return;
90 print "\nunhandled events:\n\n";
92 printf("%-40s %10s\n", "event", "count");
93 printf("%-40s %10s\n", "----------------------------------------",
94 "-----------");
96 foreach my $event_name (keys %unhandled) {
97 printf("%-40s %10d\n", $event_name, $unhandled{$event_name});
101 sub trace_unhandled
103 my ($event_name, $context, $common_cpu, $common_secs, $common_nsecs,
104 $common_pid, $common_comm) = @_;
106 $unhandled{$event_name}++;