Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Jan 2008 07:26:39 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 133715 for review
Message-ID:  <200801200726.m0K7Qd15075065@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=133715

Change 133715 by kmacy@pandemonium:kmacy:xen31 on 2008/01/20 07:26:13

	also get the eip

Affected files ...

.. //depot/projects/xen31/sys/i386/i386/trap.c#8 edit

Differences ...

==== //depot/projects/xen31/sys/i386/i386/trap.c#8 (text+ko) ====

@@ -834,7 +834,7 @@
 	}
 #ifdef XEN
 	if (rv == KERN_PROTECTION_FAILURE)
-		printf("SIGBUS: p=%s va=0x%x ftype=0x%x\n", p->p_comm, va, ftype);
+		printf("SIGBUS: p=%s va=0x%x ftype=0x%x eip=0x%x\n", p->p_comm, va, ftype, frame->tf_eip);
 #endif
 	    
 	return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801200726.m0K7Qd15075065>