[PATCH] x86-64: Include build number in oops output
Include build number in oops output Helps me to match oopses to correct kernel. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
69e1a33f62
commit
9acf23c42b
@@ -271,8 +271,11 @@ void __show_regs(struct pt_regs * regs)
|
|||||||
|
|
||||||
printk("\n");
|
printk("\n");
|
||||||
print_modules();
|
print_modules();
|
||||||
printk("Pid: %d, comm: %.20s %s %s\n",
|
printk("Pid: %d, comm: %.20s %s %s %.*s\n",
|
||||||
current->pid, current->comm, print_tainted(), system_utsname.release);
|
current->pid, current->comm, print_tainted(),
|
||||||
|
system_utsname.release,
|
||||||
|
(int)strcspn(system_utsname.version, " "),
|
||||||
|
system_utsname.version);
|
||||||
printk("RIP: %04lx:[<%016lx>] ", regs->cs & 0xffff, regs->rip);
|
printk("RIP: %04lx:[<%016lx>] ", regs->cs & 0xffff, regs->rip);
|
||||||
printk_address(regs->rip);
|
printk_address(regs->rip);
|
||||||
printk("\nRSP: %04lx:%016lx EFLAGS: %08lx\n", regs->ss, regs->rsp, regs->eflags);
|
printk("\nRSP: %04lx:%016lx EFLAGS: %08lx\n", regs->ss, regs->rsp, regs->eflags);
|
||||||
|
Reference in New Issue
Block a user