diff options
author | Andrew Murray <amurray@mpcdata.com> | 2011-06-09 17:40:10 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-06-12 18:04:57 -0400 |
commit | c443453c6dc88576db540acc6ef40e1d2869e394 (patch) | |
tree | 98492b4f5c0c496a3322d2b556aa48c14b9294ee /scripts | |
parent | 28f65c11f2ffb3957259dece647a24f8ad2e241b (diff) |
bootgraph.pl: relax timing information requirements
This patch removes the assumption of the bootgraph.pl script that the
timing information reported by PRINTK_TIME will contain at least one
entry with a time of less than 100 seconds.
Not all boards correctly reset the system timer and in many cases the
inital times reported by PRINTK_TIME is high. When this occurs the
bootchart.pl script fails to give any useful output.
This patch sets the $firsttime variable to the largest value expected
by PRINTK_TIME
Signed-off-by: Andrew Murray <amurray@mpc-data.co.uk>
Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/bootgraph.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootgraph.pl b/scripts/bootgraph.pl index 12caa822a232..b78fca994a15 100644 --- a/scripts/bootgraph.pl +++ b/scripts/bootgraph.pl | |||
@@ -44,7 +44,7 @@ my %end; | |||
44 | my %type; | 44 | my %type; |
45 | my $done = 0; | 45 | my $done = 0; |
46 | my $maxtime = 0; | 46 | my $maxtime = 0; |
47 | my $firsttime = 100; | 47 | my $firsttime = 99999; |
48 | my $count = 0; | 48 | my $count = 0; |
49 | my %pids; | 49 | my %pids; |
50 | my %pidctr; | 50 | my %pidctr; |