提交 c443453c 编写于 作者: A Andrew Murray 提交者: Jiri Kosina

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: NAndrew Murray <amurray@mpc-data.co.uk>
Acked-by: NArjan van de Ven <arjan@linux.intel.com>
Signed-off-by: NJiri Kosina <jkosina@suse.cz>
上级 28f65c11
......@@ -44,7 +44,7 @@ my %end;
my %type;
my $done = 0;
my $maxtime = 0;
my $firsttime = 100;
my $firsttime = 99999;
my $count = 0;
my %pids;
my %pidctr;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册