~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/bootgraph.pl

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /scripts/bootgraph.pl (Version linux-6.11.5) and /scripts/bootgraph.pl (Version linux-5.9.16)


  1 #!/usr/bin/env perl                                 1 #!/usr/bin/env perl
  2 # SPDX-License-Identifier: GPL-2.0-only             2 # SPDX-License-Identifier: GPL-2.0-only
  3                                                     3 
  4 # Copyright 2008, Intel Corporation                 4 # Copyright 2008, Intel Corporation
  5 #                                                   5 #
  6 # This file is part of the Linux kernel             6 # This file is part of the Linux kernel
  7 #                                                   7 #
  8 # Authors:                                          8 # Authors:
  9 #       Arjan van de Ven <arjan@linux.intel.com      9 #       Arjan van de Ven <arjan@linux.intel.com>
 10                                                    10 
 11                                                    11 
 12 #                                                  12 #
 13 # This script turns a dmesg output into a SVG      13 # This script turns a dmesg output into a SVG graphic that shows which
 14 # functions take how much time. You can view S     14 # functions take how much time. You can view SVG graphics with various
 15 # programs, including Inkscape, The Gimp and F     15 # programs, including Inkscape, The Gimp and Firefox.
 16 #                                                  16 #
 17 #                                                  17 #
 18 # For this script to work, the kernel needs to     18 # For this script to work, the kernel needs to be compiled with the
 19 # CONFIG_PRINTK_TIME configuration option enab     19 # CONFIG_PRINTK_TIME configuration option enabled, and with
 20 # "initcall_debug" passed on the kernel comman     20 # "initcall_debug" passed on the kernel command line.
 21 #                                                  21 #
 22 # usage:                                           22 # usage:
 23 #       dmesg | perl scripts/bootgraph.pl > ou     23 #       dmesg | perl scripts/bootgraph.pl > output.svg
 24 #                                                  24 #
 25                                                    25 
 26 use strict;                                        26 use strict;
 27 use Getopt::Long;                                  27 use Getopt::Long;
 28 my $header = 0;                                    28 my $header = 0;
 29                                                    29 
 30 sub help {                                         30 sub help {
 31         my $text = << "EOM";                       31         my $text = << "EOM";
 32 Usage:                                             32 Usage:
 33 1) dmesg | perl scripts/bootgraph.pl [OPTION]      33 1) dmesg | perl scripts/bootgraph.pl [OPTION] > output.svg
 34 2) perl scripts/bootgraph.pl -h                    34 2) perl scripts/bootgraph.pl -h
 35                                                    35 
 36 Options:                                           36 Options:
 37         -header Insert kernel version and date     37         -header Insert kernel version and date
 38 EOM                                                38 EOM
 39         my $std=shift;                             39         my $std=shift;
 40         if ($std == 1) {                           40         if ($std == 1) {
 41                 print STDERR $text;                41                 print STDERR $text;
 42         } else {                                   42         } else {
 43                 print $text;                       43                 print $text;
 44         }                                          44         }
 45         exit;                                      45         exit;
 46 }                                                  46 }
 47                                                    47 
 48 GetOptions(                                        48 GetOptions(
 49         'h|help'        =>\&help,                  49         'h|help'        =>\&help,
 50         'header'        =>\$header                 50         'header'        =>\$header
 51 );                                                 51 );
 52                                                    52 
 53 my %start;                                         53 my %start;
 54 my %end;                                           54 my %end;
 55 my %type;                                          55 my %type;
 56 my $done = 0;                                      56 my $done = 0;
 57 my $maxtime = 0;                                   57 my $maxtime = 0;
 58 my $firsttime = 99999;                             58 my $firsttime = 99999;
 59 my $count = 0;                                     59 my $count = 0;
 60 my %pids;                                          60 my %pids;
 61 my %pidctr;                                        61 my %pidctr;
 62                                                    62 
 63 my $headerstep = 20;                               63 my $headerstep = 20;
 64 my $xheader = 15;                                  64 my $xheader = 15;
 65 my $yheader = 25;                                  65 my $yheader = 25;
 66 my $cyheader = 0;                                  66 my $cyheader = 0;
 67                                                    67 
 68 while (<>) {                                       68 while (<>) {
 69         my $line = $_;                             69         my $line = $_;
 70         if ($line =~ /([0-9\.]+)\] calling  ([     70         if ($line =~ /([0-9\.]+)\] calling  ([a-zA-Z0-9\_\.]+)\+/) {
 71                 my $func = $2;                     71                 my $func = $2;
 72                 if ($done == 0) {                  72                 if ($done == 0) {
 73                         $start{$func} = $1;        73                         $start{$func} = $1;
 74                         $type{$func} = 0;          74                         $type{$func} = 0;
 75                         if ($1 < $firsttime) {     75                         if ($1 < $firsttime) {
 76                                 $firsttime = $     76                                 $firsttime = $1;
 77                         }                          77                         }
 78                 }                                  78                 }
 79                 if ($line =~ /\@ ([0-9]+)/) {      79                 if ($line =~ /\@ ([0-9]+)/) {
 80                         $pids{$func} = $1;         80                         $pids{$func} = $1;
 81                 }                                  81                 }
 82                 $count = $count + 1;               82                 $count = $count + 1;
 83         }                                          83         }
 84                                                    84 
 85         if ($line =~ /([0-9\.]+)\] async_waiti     85         if ($line =~ /([0-9\.]+)\] async_waiting @ ([0-9]+)/) {
 86                 my $pid = $2;                      86                 my $pid = $2;
 87                 my $func;                          87                 my $func;
 88                 if (!defined($pidctr{$pid})) {     88                 if (!defined($pidctr{$pid})) {
 89                         $func = "wait_" . $pid     89                         $func = "wait_" . $pid . "_1";
 90                         $pidctr{$pid} = 1;         90                         $pidctr{$pid} = 1;
 91                 } else {                           91                 } else {
 92                         $pidctr{$pid} = $pidct     92                         $pidctr{$pid} = $pidctr{$pid} + 1;
 93                         $func = "wait_" . $pid     93                         $func = "wait_" . $pid . "_" . $pidctr{$pid};
 94                 }                                  94                 }
 95                 if ($done == 0) {                  95                 if ($done == 0) {
 96                         $start{$func} = $1;        96                         $start{$func} = $1;
 97                         $type{$func} = 1;          97                         $type{$func} = 1;
 98                         if ($1 < $firsttime) {     98                         if ($1 < $firsttime) {
 99                                 $firsttime = $     99                                 $firsttime = $1;
100                         }                         100                         }
101                 }                                 101                 }
102                 $pids{$func} = $pid;              102                 $pids{$func} = $pid;
103                 $count = $count + 1;              103                 $count = $count + 1;
104         }                                         104         }
105                                                   105 
106         if ($line =~ /([0-9\.]+)\] initcall ([    106         if ($line =~ /([0-9\.]+)\] initcall ([a-zA-Z0-9\_\.]+)\+.*returned/) {
107                 if ($done == 0) {                 107                 if ($done == 0) {
108                         $end{$2} = $1;            108                         $end{$2} = $1;
109                         $maxtime = $1;            109                         $maxtime = $1;
110                 }                                 110                 }
111         }                                         111         }
112                                                   112 
113         if ($line =~ /([0-9\.]+)\] async_conti    113         if ($line =~ /([0-9\.]+)\] async_continuing @ ([0-9]+)/) {
114                 my $pid = $2;                     114                 my $pid = $2;
115                 my $func =  "wait_" . $pid . "    115                 my $func =  "wait_" . $pid . "_" . $pidctr{$pid};
116                 $end{$func} = $1;                 116                 $end{$func} = $1;
117                 $maxtime = $1;                    117                 $maxtime = $1;
118         }                                         118         }
119         if ($line =~ /Write protecting the/) {    119         if ($line =~ /Write protecting the/) {
120                 $done = 1;                        120                 $done = 1;
121         }                                         121         }
122         if ($line =~ /Freeing unused kernel me    122         if ($line =~ /Freeing unused kernel memory/) {
123                 $done = 1;                        123                 $done = 1;
124         }                                         124         }
125 }                                                 125 }
126                                                   126 
127 if ($count == 0) {                                127 if ($count == 0) {
128     print STDERR <<END;                           128     print STDERR <<END;
129 No data found in the dmesg. Make sure that 'pr    129 No data found in the dmesg. Make sure that 'printk.time=1' and
130 'initcall_debug' are passed on the kernel comm    130 'initcall_debug' are passed on the kernel command line.
131 END                                               131 END
132         help(1);                                  132         help(1);
133     exit 1;                                       133     exit 1;
134 }                                                 134 }
135                                                   135 
136 print "<?xml version=\"1.0\" standalone=\"no\"    136 print "<?xml version=\"1.0\" standalone=\"no\"?> \n";
137 print "<svg width=\"2000\" height=\"100%\" ver    137 print "<svg width=\"2000\" height=\"100%\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\">\n";
138                                                   138 
139                                                   139 
140 if ($header) {                                    140 if ($header) {
141         my $version = `uname -a`;                 141         my $version = `uname -a`;
142         my $date = `date`;                        142         my $date = `date`;
143         print "<text transform=\"translate($xh    143         print "<text transform=\"translate($xheader,$yheader)\">Kernel version: $version</text>\n";
144         $cyheader = $yheader+$headerstep;         144         $cyheader = $yheader+$headerstep;
145         print "<text transform=\"translate($xh    145         print "<text transform=\"translate($xheader,$cyheader)\">Date: $date</text>\n";
146 }                                                 146 }
147                                                   147 
148 my @styles;                                       148 my @styles;
149                                                   149 
150 $styles[0] = "fill:rgb(0,0,255);fill-opacity:0    150 $styles[0] = "fill:rgb(0,0,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
151 $styles[1] = "fill:rgb(0,255,0);fill-opacity:0    151 $styles[1] = "fill:rgb(0,255,0);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
152 $styles[2] = "fill:rgb(255,0,20);fill-opacity:    152 $styles[2] = "fill:rgb(255,0,20);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
153 $styles[3] = "fill:rgb(255,255,20);fill-opacit    153 $styles[3] = "fill:rgb(255,255,20);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
154 $styles[4] = "fill:rgb(255,0,255);fill-opacity    154 $styles[4] = "fill:rgb(255,0,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
155 $styles[5] = "fill:rgb(0,255,255);fill-opacity    155 $styles[5] = "fill:rgb(0,255,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
156 $styles[6] = "fill:rgb(0,128,255);fill-opacity    156 $styles[6] = "fill:rgb(0,128,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
157 $styles[7] = "fill:rgb(0,255,128);fill-opacity    157 $styles[7] = "fill:rgb(0,255,128);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
158 $styles[8] = "fill:rgb(255,0,128);fill-opacity    158 $styles[8] = "fill:rgb(255,0,128);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
159 $styles[9] = "fill:rgb(255,255,128);fill-opaci    159 $styles[9] = "fill:rgb(255,255,128);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
160 $styles[10] = "fill:rgb(255,128,255);fill-opac    160 $styles[10] = "fill:rgb(255,128,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
161 $styles[11] = "fill:rgb(128,255,255);fill-opac    161 $styles[11] = "fill:rgb(128,255,255);fill-opacity:0.5;stroke-width:1;stroke:rgb(0,0,0)";
162                                                   162 
163 my $style_wait = "fill:rgb(128,128,128);fill-o    163 my $style_wait = "fill:rgb(128,128,128);fill-opacity:0.5;stroke-width:0;stroke:rgb(0,0,0)";
164                                                   164 
165 my $mult = 1950.0 / ($maxtime - $firsttime);      165 my $mult = 1950.0 / ($maxtime - $firsttime);
166 my $threshold2 = ($maxtime - $firsttime) / 120    166 my $threshold2 = ($maxtime - $firsttime) / 120.0;
167 my $threshold = $threshold2/10;                   167 my $threshold = $threshold2/10;
168 my $stylecounter = 0;                             168 my $stylecounter = 0;
169 my %rows;                                         169 my %rows;
170 my $rowscount = 1;                                170 my $rowscount = 1;
171 my @initcalls = sort { $start{$a} <=> $start{$    171 my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start);
172                                                   172 
173 foreach my $key (@initcalls) {                    173 foreach my $key (@initcalls) {
174         my $duration = $end{$key} - $start{$ke    174         my $duration = $end{$key} - $start{$key};
175                                                   175 
176         if ($duration >= $threshold) {            176         if ($duration >= $threshold) {
177                 my ($s, $s2, $s3, $e, $w, $y,     177                 my ($s, $s2, $s3, $e, $w, $y, $y2, $style);
178                 my $pid = $pids{$key};            178                 my $pid = $pids{$key};
179                                                   179 
180                 if (!defined($rows{$pid})) {      180                 if (!defined($rows{$pid})) {
181                         $rows{$pid} = $rowscou    181                         $rows{$pid} = $rowscount;
182                         $rowscount = $rowscoun    182                         $rowscount = $rowscount + 1;
183                 }                                 183                 }
184                 $s = ($start{$key} - $firsttim    184                 $s = ($start{$key} - $firsttime) * $mult;
185                 $s2 = $s + 6;                     185                 $s2 = $s + 6;
186                 $s3 = $s + 1;                     186                 $s3 = $s + 1;
187                 $e = ($end{$key} - $firsttime)    187                 $e = ($end{$key} - $firsttime) * $mult;
188                 $w = $e - $s;                     188                 $w = $e - $s;
189                                                   189 
190                 $y = $rows{$pid} * 150;           190                 $y = $rows{$pid} * 150;
191                 $y2 = $y + 4;                     191                 $y2 = $y + 4;
192                                                   192 
193                 $style = $styles[$stylecounter    193                 $style = $styles[$stylecounter];
194                 $stylecounter = $stylecounter     194                 $stylecounter = $stylecounter + 1;
195                 if ($stylecounter > 11) {         195                 if ($stylecounter > 11) {
196                         $stylecounter = 0;        196                         $stylecounter = 0;
197                 };                                197                 };
198                                                   198 
199                 if ($type{$key} == 1) {           199                 if ($type{$key} == 1) {
200                         $y = $y + 15;             200                         $y = $y + 15;
201                         print "<rect x=\"$s\"     201                         print "<rect x=\"$s\" width=\"$w\" y=\"$y\" height=\"115\" style=\"$style_wait\"/>\n";
202                 } else {                          202                 } else {
203                         print "<rect x=\"$s\"     203                         print "<rect x=\"$s\" width=\"$w\" y=\"$y\" height=\"145\" style=\"$style\"/>\n";
204                         if ($duration >= $thre    204                         if ($duration >= $threshold2) {
205                                 print "<text t    205                                 print "<text transform=\"translate($s2,$y2) rotate(90)\">$key</text>\n";
206                         } else {                  206                         } else {
207                                 print "<text t    207                                 print "<text transform=\"translate($s3,$y2) rotate(90)\" font-size=\"3pt\">$key</text>\n";
208                         }                         208                         }
209                 }                                 209                 }
210         }                                         210         }
211 }                                                 211 }
212                                                   212 
213                                                   213 
214 # print the time line on top                      214 # print the time line on top
215 my $time = $firsttime;                            215 my $time = $firsttime;
216 my $step = ($maxtime - $firsttime) / 15;          216 my $step = ($maxtime - $firsttime) / 15;
217 while ($time < $maxtime) {                        217 while ($time < $maxtime) {
218         my $s3 = ($time - $firsttime) * $mult;    218         my $s3 = ($time - $firsttime) * $mult;
219         my $tm = int($time * 100) / 100.0;        219         my $tm = int($time * 100) / 100.0;
220         print "<text transform=\"translate($s3    220         print "<text transform=\"translate($s3,89) rotate(90)\">$tm</text>\n";
221         $time = $time + $step;                    221         $time = $time + $step;
222 }                                                 222 }
223                                                   223 
224 print "</svg>\n";                                 224 print "</svg>\n";
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php