IMNSHO the instructions _after_ the oops are almost useless.  I would
be much happier to see all architectures display the code line like
this (from alpha):
Code: 44220001  f4200003  46520400 <a77d9c38> 6b9b4a40  a44803a8  42425401  42c10403  40603401
Showing instructions either side of the oops and marking the
instruction pointer with <>.  Even that version displays too much data
after the oops, for debugging you need more instructions leading up to
the failure and fewer instructions afterwards.
The variable length i386 instructions are a problem, finding a decent
start point is tricky.  ksymoops handles up to 64 bytes of code so
dumping EIP-56:EIP+8 would increase the chance of the disassembler
syncing to the correct instructions.  To be absolutely sure, dump two
code lines on i386.
Code: EIP-56 ... <EIP> ... EIP+8
Code: EIP ... EIP+8
The second line starts with EIP and does not have <> around any values,
it guarantees that we get a clean decode of the failing instruction.
ksymoops will print both code lines, which makes the decoded trace look
a little strange, but it is worth it to get better debugging.  For
architectures with fixed length instructions this is not a problem.
Code: c6 05 00 00 00 00 00 <eb> e7 8d 76 00 b8 00 e0 ff ff 21 e0 ff 
>>EIP; c0113f8c No symbols available   <=====
...
Code;  c0113f85 No symbols available
00000000 <_EIP>:
Code;  c0113f85 No symbols available
   0:   c6 05 00 00 00 00 00      movb   $0x0,0x0
Code;  c0113f8c No symbols available   <=====
   7:   eb e7                     jmp    fffffff0 <_EIP+0xfffffff0> c0113f75 No symbols available   <=====
Code;  c0113f8e No symbols available
   9:   8d 76 00                  lea    0x0(%esi),%esi
Code;  c0113f91 No symbols available
   c:   b8 00 e0 ff ff            mov    $0xffffe000,%eax
Code;  c0113f96 No symbols available
  11:   21 e0                     and    %esp,%eax
Code;  c0113f98 No symbols available
  13:   ff 00                     incl   (%eax)
Code: eb e7 8d 76 00 b8 00 e0 (second code line, no <>)
Code;  c0113f8c No symbols available
00000000 <_EIP>:
Code;  c0113f8c No symbols available
   0:   eb e7                     jmp    ffffffe9 <_EIP+0xffffffe9> c0113f75 No symbols available
Code;  c0113f8e No symbols available
   2:   8d 76 00                  lea    0x0(%esi),%esi
Code;  c0113f91 No symbols available
   5:   b8 00 e0 00 00            mov    $0xe000,%eax
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/