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

TOMOYO Linux Cross Reference
Linux/scripts/markup_oops.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/markup_oops.pl (Version linux-6.11.5) and /scripts/markup_oops.pl (Version linux-6.4.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 use File::Basename;                                 4 use File::Basename;
  5 use Math::BigInt;                                   5 use Math::BigInt;
  6 use Getopt::Long;                                   6 use Getopt::Long;
  7                                                     7 
  8 # Copyright 2008, Intel Corporation                 8 # Copyright 2008, Intel Corporation
  9 #                                                   9 #
 10 # This file is part of the Linux kernel            10 # This file is part of the Linux kernel
 11 #                                                  11 #
 12 # Authors:                                         12 # Authors:
 13 #       Arjan van de Ven <arjan@linux.intel.com     13 #       Arjan van de Ven <arjan@linux.intel.com>
 14                                                    14 
 15                                                    15 
 16 my $cross_compile = "";                            16 my $cross_compile = "";
 17 my $vmlinux_name = "";                             17 my $vmlinux_name = "";
 18 my $modulefile = "";                               18 my $modulefile = "";
 19                                                    19 
 20 # Get options                                      20 # Get options
 21 Getopt::Long::GetOptions(                          21 Getopt::Long::GetOptions(
 22         'cross-compile|c=s'     => \$cross_com     22         'cross-compile|c=s'     => \$cross_compile,
 23         'module|m=s'            => \$modulefil     23         'module|m=s'            => \$modulefile,
 24         'help|h'                => \&usage,        24         'help|h'                => \&usage,
 25 ) || usage ();                                     25 ) || usage ();
 26 my $vmlinux_name = $ARGV[0];                       26 my $vmlinux_name = $ARGV[0];
 27 if (!defined($vmlinux_name)) {                     27 if (!defined($vmlinux_name)) {
 28         my $kerver = `uname -r`;                   28         my $kerver = `uname -r`;
 29         chomp($kerver);                            29         chomp($kerver);
 30         $vmlinux_name = "/lib/modules/$kerver/     30         $vmlinux_name = "/lib/modules/$kerver/build/vmlinux";
 31         print "No vmlinux specified, assuming      31         print "No vmlinux specified, assuming $vmlinux_name\n";
 32 }                                                  32 }
 33 my $filename = $vmlinux_name;                      33 my $filename = $vmlinux_name;
 34                                                    34 
 35 # Parse the oops to find the EIP value             35 # Parse the oops to find the EIP value
 36                                                    36 
 37 my $target = "0";                                  37 my $target = "0";
 38 my $function;                                      38 my $function;
 39 my $module = "";                                   39 my $module = "";
 40 my $func_offset = 0;                               40 my $func_offset = 0;
 41 my $vmaoffset = 0;                                 41 my $vmaoffset = 0;
 42                                                    42 
 43 my %regs;                                          43 my %regs;
 44                                                    44 
 45                                                    45 
 46 sub parse_x86_regs                                 46 sub parse_x86_regs
 47 {                                                  47 {
 48         my ($line) = @_;                           48         my ($line) = @_;
 49         if ($line =~ /EAX: ([0-9a-f]+) EBX: ([     49         if ($line =~ /EAX: ([0-9a-f]+) EBX: ([0-9a-f]+) ECX: ([0-9a-f]+) EDX: ([0-9a-f]+)/) {
 50                 $regs{"%eax"} = $1;                50                 $regs{"%eax"} = $1;
 51                 $regs{"%ebx"} = $2;                51                 $regs{"%ebx"} = $2;
 52                 $regs{"%ecx"} = $3;                52                 $regs{"%ecx"} = $3;
 53                 $regs{"%edx"} = $4;                53                 $regs{"%edx"} = $4;
 54         }                                          54         }
 55         if ($line =~ /ESI: ([0-9a-f]+) EDI: ([     55         if ($line =~ /ESI: ([0-9a-f]+) EDI: ([0-9a-f]+) EBP: ([0-9a-f]+) ESP: ([0-9a-f]+)/) {
 56                 $regs{"%esi"} = $1;                56                 $regs{"%esi"} = $1;
 57                 $regs{"%edi"} = $2;                57                 $regs{"%edi"} = $2;
 58                 $regs{"%esp"} = $4;                58                 $regs{"%esp"} = $4;
 59         }                                          59         }
 60         if ($line =~ /RAX: ([0-9a-f]+) RBX: ([     60         if ($line =~ /RAX: ([0-9a-f]+) RBX: ([0-9a-f]+) RCX: ([0-9a-f]+)/) {
 61                 $regs{"%eax"} = $1;                61                 $regs{"%eax"} = $1;
 62                 $regs{"%ebx"} = $2;                62                 $regs{"%ebx"} = $2;
 63                 $regs{"%ecx"} = $3;                63                 $regs{"%ecx"} = $3;
 64         }                                          64         }
 65         if ($line =~ /RDX: ([0-9a-f]+) RSI: ([     65         if ($line =~ /RDX: ([0-9a-f]+) RSI: ([0-9a-f]+) RDI: ([0-9a-f]+)/) {
 66                 $regs{"%edx"} = $1;                66                 $regs{"%edx"} = $1;
 67                 $regs{"%esi"} = $2;                67                 $regs{"%esi"} = $2;
 68                 $regs{"%edi"} = $3;                68                 $regs{"%edi"} = $3;
 69         }                                          69         }
 70         if ($line =~ /RBP: ([0-9a-f]+) R08: ([     70         if ($line =~ /RBP: ([0-9a-f]+) R08: ([0-9a-f]+) R09: ([0-9a-f]+)/) {
 71                 $regs{"%r08"} = $2;                71                 $regs{"%r08"} = $2;
 72                 $regs{"%r09"} = $3;                72                 $regs{"%r09"} = $3;
 73         }                                          73         }
 74         if ($line =~ /R10: ([0-9a-f]+) R11: ([     74         if ($line =~ /R10: ([0-9a-f]+) R11: ([0-9a-f]+) R12: ([0-9a-f]+)/) {
 75                 $regs{"%r10"} = $1;                75                 $regs{"%r10"} = $1;
 76                 $regs{"%r11"} = $2;                76                 $regs{"%r11"} = $2;
 77                 $regs{"%r12"} = $3;                77                 $regs{"%r12"} = $3;
 78         }                                          78         }
 79         if ($line =~ /R13: ([0-9a-f]+) R14: ([     79         if ($line =~ /R13: ([0-9a-f]+) R14: ([0-9a-f]+) R15: ([0-9a-f]+)/) {
 80                 $regs{"%r13"} = $1;                80                 $regs{"%r13"} = $1;
 81                 $regs{"%r14"} = $2;                81                 $regs{"%r14"} = $2;
 82                 $regs{"%r15"} = $3;                82                 $regs{"%r15"} = $3;
 83         }                                          83         }
 84 }                                                  84 }
 85                                                    85 
 86 sub reg_name                                       86 sub reg_name
 87 {                                                  87 {
 88         my ($reg) = @_;                            88         my ($reg) = @_;
 89         $reg =~ s/r(.)x/e\1x/;                     89         $reg =~ s/r(.)x/e\1x/;
 90         $reg =~ s/r(.)i/e\1i/;                     90         $reg =~ s/r(.)i/e\1i/;
 91         $reg =~ s/r(.)p/e\1p/;                     91         $reg =~ s/r(.)p/e\1p/;
 92         return $reg;                               92         return $reg;
 93 }                                                  93 }
 94                                                    94 
 95 sub process_x86_regs                               95 sub process_x86_regs
 96 {                                                  96 {
 97         my ($line, $cntr) = @_;                    97         my ($line, $cntr) = @_;
 98         my $str = "";                              98         my $str = "";
 99         if (length($line) < 40) {                  99         if (length($line) < 40) {
100                 return ""; # not an asm istruc    100                 return ""; # not an asm istruction
101         }                                         101         }
102                                                   102 
103         # find the arguments to the instructio    103         # find the arguments to the instruction
104         if ($line =~ /([0-9a-zA-Z\,\%\(\)\-\+]    104         if ($line =~ /([0-9a-zA-Z\,\%\(\)\-\+]+)$/) {
105                 $lastword = $1;                   105                 $lastword = $1;
106         } else {                                  106         } else {
107                 return "";                        107                 return "";
108         }                                         108         }
109                                                   109 
110         # we need to find the registers that g    110         # we need to find the registers that get clobbered,
111         # since their value is no longer relev    111         # since their value is no longer relevant for previous
112         # instructions in the stream.             112         # instructions in the stream.
113                                                   113 
114         $clobber = $lastword;                     114         $clobber = $lastword;
115         # first, remove all memory operands, t    115         # first, remove all memory operands, they're read only
116         $clobber =~ s/\([a-z0-9\%\,]+\)//g;       116         $clobber =~ s/\([a-z0-9\%\,]+\)//g;
117         # then, remove everything before the c    117         # then, remove everything before the comma, thats the read part
118         $clobber =~ s/.*\,//g;                    118         $clobber =~ s/.*\,//g;
119                                                   119 
120         # if this is the instruction that faul    120         # if this is the instruction that faulted, we haven't actually done
121         # the write yet... nothing is clobbere    121         # the write yet... nothing is clobbered.
122         if ($cntr == 0) {                         122         if ($cntr == 0) {
123                 $clobber = "";                    123                 $clobber = "";
124         }                                         124         }
125                                                   125 
126         foreach $reg (keys(%regs)) {              126         foreach $reg (keys(%regs)) {
127                 my $clobberprime = reg_name($c    127                 my $clobberprime = reg_name($clobber);
128                 my $lastwordprime = reg_name($    128                 my $lastwordprime = reg_name($lastword);
129                 my $val = $regs{$reg};            129                 my $val = $regs{$reg};
130                 if ($val =~ /^[0]+$/) {           130                 if ($val =~ /^[0]+$/) {
131                         $val = "0";               131                         $val = "0";
132                 } else {                          132                 } else {
133                         $val =~ s/^0*//;          133                         $val =~ s/^0*//;
134                 }                                 134                 }
135                                                   135 
136                 # first check if we're clobber    136                 # first check if we're clobbering this register; if we do
137                 # we print it with a =>, and t    137                 # we print it with a =>, and then delete its value
138                 if ($clobber =~ /$reg/ || $clo    138                 if ($clobber =~ /$reg/ || $clobberprime =~ /$reg/) {
139                         if (length($val) > 0)     139                         if (length($val) > 0) {
140                                 $str = $str .     140                                 $str = $str . " $reg => $val ";
141                         }                         141                         }
142                         $regs{$reg} = "";         142                         $regs{$reg} = "";
143                         $val = "";                143                         $val = "";
144                 }                                 144                 }
145                 # now check if we're reading t    145                 # now check if we're reading this register
146                 if ($lastword =~ /$reg/ || $la    146                 if ($lastword =~ /$reg/ || $lastwordprime =~ /$reg/) {
147                         if (length($val) > 0)     147                         if (length($val) > 0) {
148                                 $str = $str .     148                                 $str = $str . " $reg = $val ";
149                         }                         149                         }
150                 }                                 150                 }
151         }                                         151         }
152         return $str;                              152         return $str;
153 }                                                 153 }
154                                                   154 
155 # parse the oops                                  155 # parse the oops
156 while (<STDIN>) {                                 156 while (<STDIN>) {
157         my $line = $_;                            157         my $line = $_;
158         if ($line =~ /EIP: 0060:\[\<([a-z0-9]+    158         if ($line =~ /EIP: 0060:\[\<([a-z0-9]+)\>\]/) {
159                 $target = $1;                     159                 $target = $1;
160         }                                         160         }
161         if ($line =~ /RIP: 0010:\[\<([a-z0-9]+    161         if ($line =~ /RIP: 0010:\[\<([a-z0-9]+)\>\]/) {
162                 $target = $1;                     162                 $target = $1;
163         }                                         163         }
164         if ($line =~ /EIP is at ([a-zA-Z0-9\_]    164         if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/0x[a-f0-9]/) {
165                 $function = $1;                   165                 $function = $1;
166                 $func_offset = $2;                166                 $func_offset = $2;
167         }                                         167         }
168         if ($line =~ /RIP: 0010:\[\<[0-9a-f]+\    168         if ($line =~ /RIP: 0010:\[\<[0-9a-f]+\>\]  \[\<[0-9a-f]+\>\] ([a-zA-Z0-9\_]+)\+0x([0-9a-f]+)\/0x[a-f0-9]/) {
169                 $function = $1;                   169                 $function = $1;
170                 $func_offset = $2;                170                 $func_offset = $2;
171         }                                         171         }
172                                                   172 
173         # check if it's a module                  173         # check if it's a module
174         if ($line =~ /EIP is at ([a-zA-Z0-9\_]    174         if ($line =~ /EIP is at ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]+\W\[([a-zA-Z0-9\_\-]+)\]/) {
175                 $module = $3;                     175                 $module = $3;
176         }                                         176         }
177         if ($line =~ /RIP: 0010:\[\<[0-9a-f]+\    177         if ($line =~ /RIP: 0010:\[\<[0-9a-f]+\>\]  \[\<[0-9a-f]+\>\] ([a-zA-Z0-9\_]+)\+(0x[0-9a-f]+)\/0x[a-f0-9]+\W\[([a-zA-Z0-9\_\-]+)\]/) {
178                 $module = $3;                     178                 $module = $3;
179         }                                         179         }
180         parse_x86_regs($line);                    180         parse_x86_regs($line);
181 }                                                 181 }
182                                                   182 
183 my $decodestart = Math::BigInt->from_hex("0x$t    183 my $decodestart = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$func_offset");
184 my $decodestop = Math::BigInt->from_hex("0x$ta    184 my $decodestop = Math::BigInt->from_hex("0x$target") + 8192;
185 if ($target eq "0") {                             185 if ($target eq "0") {
186         print "No oops found!\n";                 186         print "No oops found!\n";
187         usage();                                  187         usage();
188 }                                                 188 }
189                                                   189 
190 # if it's a module, we need to find the .ko fi    190 # if it's a module, we need to find the .ko file and calculate a load offset
191 if ($module ne "") {                              191 if ($module ne "") {
192         if ($modulefile eq "") {                  192         if ($modulefile eq "") {
193                 $modulefile = `modinfo -F file    193                 $modulefile = `modinfo -F filename $module`;
194                 chomp($modulefile);               194                 chomp($modulefile);
195         }                                         195         }
196         $filename = $modulefile;                  196         $filename = $modulefile;
197         if ($filename eq "") {                    197         if ($filename eq "") {
198                 print "Module .ko file for $mo    198                 print "Module .ko file for $module not found. Aborting\n";
199                 exit;                             199                 exit;
200         }                                         200         }
201         # ok so we found the module, now we ne    201         # ok so we found the module, now we need to calculate the vma offset
202         open(FILE, $cross_compile."objdump -dS    202         open(FILE, $cross_compile."objdump -dS $filename |") || die "Cannot start objdump";
203         while (<FILE>) {                          203         while (<FILE>) {
204                 if ($_ =~ /^([0-9a-f]+) \<$fun    204                 if ($_ =~ /^([0-9a-f]+) \<$function\>\:/) {
205                         my $fu = $1;              205                         my $fu = $1;
206                         $vmaoffset = Math::Big    206                         $vmaoffset = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$fu") - Math::BigInt->from_hex("0x$func_offset");
207                 }                                 207                 }
208         }                                         208         }
209         close(FILE);                              209         close(FILE);
210 }                                                 210 }
211                                                   211 
212 my $counter = 0;                                  212 my $counter = 0;
213 my $state   = 0;                                  213 my $state   = 0;
214 my $center  = -1;                                 214 my $center  = -1;
215 my @lines;                                        215 my @lines;
216 my @reglines;                                     216 my @reglines;
217                                                   217 
218 sub InRange {                                     218 sub InRange {
219         my ($address, $target) = @_;              219         my ($address, $target) = @_;
220         my $ad = "0x".$address;                   220         my $ad = "0x".$address;
221         my $ta = "0x".$target;                    221         my $ta = "0x".$target;
222         my $delta = Math::BigInt->from_hex($ad    222         my $delta = Math::BigInt->from_hex($ad) - Math::BigInt->from_hex($ta);
223                                                   223 
224         if (($delta > -4096) && ($delta < 4096    224         if (($delta > -4096) && ($delta < 4096)) {
225                 return 1;                         225                 return 1;
226         }                                         226         }
227         return 0;                                 227         return 0;
228 }                                                 228 }
229                                                   229 
230                                                   230 
231                                                   231 
232 # first, parse the input into the lines array,    232 # first, parse the input into the lines array, but to keep size down,
233 # we only do this for 4Kb around the sweet spo    233 # we only do this for 4Kb around the sweet spot
234                                                   234 
235 open(FILE, $cross_compile."objdump -dS --adjus    235 open(FILE, $cross_compile."objdump -dS --adjust-vma=$vmaoffset --start-address=$decodestart --stop-address=$decodestop $filename |") || die "Cannot start objdump";
236                                                   236 
237 while (<FILE>) {                                  237 while (<FILE>) {
238         my $line = $_;                            238         my $line = $_;
239         chomp($line);                             239         chomp($line);
240         if ($state == 0) {                        240         if ($state == 0) {
241                 if ($line =~ /^([a-f0-9]+)\:/)    241                 if ($line =~ /^([a-f0-9]+)\:/) {
242                         if (InRange($1, $targe    242                         if (InRange($1, $target)) {
243                                 $state = 1;       243                                 $state = 1;
244                         }                         244                         }
245                 }                                 245                 }
246         }                                         246         }
247         if ($state == 1) {                        247         if ($state == 1) {
248                 if ($line =~ /^([a-f0-9][a-f0-    248                 if ($line =~ /^([a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9]+)\:/) {
249                         my $val = $1;             249                         my $val = $1;
250                         if (!InRange($val, $ta    250                         if (!InRange($val, $target)) {
251                                 last;             251                                 last;
252                         }                         252                         }
253                         if ($val eq $target) {    253                         if ($val eq $target) {
254                                 $center = $cou    254                                 $center = $counter;
255                         }                         255                         }
256                 }                                 256                 }
257                 $lines[$counter] = $line;         257                 $lines[$counter] = $line;
258                                                   258 
259                 $counter = $counter + 1;          259                 $counter = $counter + 1;
260         }                                         260         }
261 }                                                 261 }
262                                                   262 
263 close(FILE);                                      263 close(FILE);
264                                                   264 
265 if ($counter == 0) {                              265 if ($counter == 0) {
266         print "No matching code found \n";        266         print "No matching code found \n";
267         exit;                                     267         exit;
268 }                                                 268 }
269                                                   269 
270 if ($center == -1) {                              270 if ($center == -1) {
271         print "No matching code found \n";        271         print "No matching code found \n";
272         exit;                                     272         exit;
273 }                                                 273 }
274                                                   274 
275 my $start;                                        275 my $start;
276 my $finish;                                       276 my $finish;
277 my $codelines = 0;                                277 my $codelines = 0;
278 my $binarylines = 0;                              278 my $binarylines = 0;
279 # now we go up and down in the array to find h    279 # now we go up and down in the array to find how much we want to print
280                                                   280 
281 $start = $center;                                 281 $start = $center;
282                                                   282 
283 while ($start > 1) {                              283 while ($start > 1) {
284         $start = $start - 1;                      284         $start = $start - 1;
285         my $line = $lines[$start];                285         my $line = $lines[$start];
286         if ($line =~ /^([a-f0-9]+)\:/) {          286         if ($line =~ /^([a-f0-9]+)\:/) {
287                 $binarylines = $binarylines +     287                 $binarylines = $binarylines + 1;
288         } else {                                  288         } else {
289                 $codelines = $codelines + 1;      289                 $codelines = $codelines + 1;
290         }                                         290         }
291         if ($codelines > 10) {                    291         if ($codelines > 10) {
292                 last;                             292                 last;
293         }                                         293         }
294         if ($binarylines > 20) {                  294         if ($binarylines > 20) {
295                 last;                             295                 last;
296         }                                         296         }
297 }                                                 297 }
298                                                   298 
299                                                   299 
300 $finish = $center;                                300 $finish = $center;
301 $codelines = 0;                                   301 $codelines = 0;
302 $binarylines = 0;                                 302 $binarylines = 0;
303 while ($finish < $counter) {                      303 while ($finish < $counter) {
304         $finish = $finish + 1;                    304         $finish = $finish + 1;
305         my $line = $lines[$finish];               305         my $line = $lines[$finish];
306         if ($line =~ /^([a-f0-9]+)\:/) {          306         if ($line =~ /^([a-f0-9]+)\:/) {
307                 $binarylines = $binarylines +     307                 $binarylines = $binarylines + 1;
308         } else {                                  308         } else {
309                 $codelines = $codelines + 1;      309                 $codelines = $codelines + 1;
310         }                                         310         }
311         if ($codelines > 10) {                    311         if ($codelines > 10) {
312                 last;                             312                 last;
313         }                                         313         }
314         if ($binarylines > 20) {                  314         if ($binarylines > 20) {
315                 last;                             315                 last;
316         }                                         316         }
317 }                                                 317 }
318                                                   318 
319                                                   319 
320 my $i;                                            320 my $i;
321                                                   321 
322                                                   322 
323 # start annotating the registers in the asm.      323 # start annotating the registers in the asm.
324 # this goes from the oopsing point back, so th    324 # this goes from the oopsing point back, so that the annotator
325 # can track (opportunistically) which register    325 # can track (opportunistically) which registers got written and
326 # whos value no longer is relevant.               326 # whos value no longer is relevant.
327                                                   327 
328 $i = $center;                                     328 $i = $center;
329 while ($i >= $start) {                            329 while ($i >= $start) {
330         $reglines[$i] = process_x86_regs($line    330         $reglines[$i] = process_x86_regs($lines[$i], $center - $i);
331         $i = $i - 1;                              331         $i = $i - 1;
332 }                                                 332 }
333                                                   333 
334 $i = $start;                                      334 $i = $start;
335 while ($i < $finish) {                            335 while ($i < $finish) {
336         my $line;                                 336         my $line;
337         if ($i == $center) {                      337         if ($i == $center) {
338                 $line =  "*$lines[$i] ";          338                 $line =  "*$lines[$i] ";
339         } else {                                  339         } else {
340                 $line =  " $lines[$i] ";          340                 $line =  " $lines[$i] ";
341         }                                         341         }
342         print $line;                              342         print $line;
343         if (defined($reglines[$i]) && length($    343         if (defined($reglines[$i]) && length($reglines[$i]) > 0) {
344                 my $c = 60 - length($line);       344                 my $c = 60 - length($line);
345                 while ($c > 0) { print " "; $c    345                 while ($c > 0) { print " "; $c = $c - 1; };
346                 print "| $reglines[$i]";          346                 print "| $reglines[$i]";
347         }                                         347         }
348         if ($i == $center) {                      348         if ($i == $center) {
349                 print "<--- faulting instructi    349                 print "<--- faulting instruction";
350         }                                         350         }
351         print "\n";                               351         print "\n";
352         $i = $i +1;                               352         $i = $i +1;
353 }                                                 353 }
354                                                   354 
355 sub usage {                                       355 sub usage {
356         print <<EOT;                              356         print <<EOT;
357 Usage:                                            357 Usage:
358   dmesg | perl $0 [OPTION] [VMLINUX]              358   dmesg | perl $0 [OPTION] [VMLINUX]
359                                                   359 
360 OPTION:                                           360 OPTION:
361   -c, --cross-compile CROSS_COMPILE     Specif    361   -c, --cross-compile CROSS_COMPILE     Specify the prefix used for toolchain.
362   -m, --module MODULE_DIRNAME           Specif    362   -m, --module MODULE_DIRNAME           Specify the module filename.
363   -h, --help                            Help.     363   -h, --help                            Help.
364 EOT                                               364 EOT
365         exit;                                     365         exit;
366 }                                                 366 }
                                                      

~ [ 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