svn commit: r241549 - head/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Sun Oct 14 17:08:47 UTC 2012


Author: kib
Date: Sun Oct 14 17:08:46 2012
New Revision: 241549
URL: http://svn.freebsd.org/changeset/base/241549

Log:
  Print the %rip value for uprintf_signal.
  
  MFC after:	1 week

Modified:
  head/sys/amd64/amd64/trap.c

Modified: head/sys/amd64/amd64/trap.c
==============================================================================
--- head/sys/amd64/amd64/trap.c	Sun Oct 14 17:07:34 2012	(r241548)
+++ head/sys/amd64/amd64/trap.c	Sun Oct 14 17:08:46 2012	(r241549)
@@ -617,8 +617,10 @@ trap(struct trapframe *frame)
 	ksi.ksi_addr = (void *)addr;
 	if (uprintf_signal) {
 		uprintf("pid %d comm %s: signal %d err %lx code %d type %d "
-		    "addr 0x%lx <%02x %02x %02x %02x %02x %02x %02x %02x>\n",
+		    "addr 0x%lx rip 0x%lx "
+		    "<%02x %02x %02x %02x %02x %02x %02x %02x>\n",
 		    p->p_pid, p->p_comm, i, frame->tf_err, ucode, type, addr,
+		    frame->tf_rip,
 		    fubyte((void *)(frame->tf_rip + 0)),
 		    fubyte((void *)(frame->tf_rip + 1)),
 		    fubyte((void *)(frame->tf_rip + 2)),


More information about the svn-src-head mailing list