summaryrefslogtreecommitdiffstats
path: root/sys/amd64/amd64/trap.c
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>1997-09-21 21:38:05 +0000
committergibbs <gibbs@FreeBSD.org>1997-09-21 21:38:05 +0000
commit6450b2fc55f73c4ce810304628205a53e371a626 (patch)
treec0111a7d8bf820bab5ce944f0be0983a78d5be25 /sys/amd64/amd64/trap.c
parent51fbeeacb49c374db82570f339949c62d1198558 (diff)
downloadFreeBSD-src-6450b2fc55f73c4ce810304628205a53e371a626.zip
FreeBSD-src-6450b2fc55f73c4ce810304628205a53e371a626.tar.gz
autoconf.c:
Add cpu_rootconf and cpu_dumpconf so that configuring these two devices can be better controlled by the MI configuration code. machdep.c: MD initialization code for the new callout interface. trap.c: Add support for printing out whether cam interrupts are masked during a panic.
Diffstat (limited to 'sys/amd64/amd64/trap.c')
-rw-r--r--sys/amd64/amd64/trap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c
index 9cbd539..b1e8c26 100644
--- a/sys/amd64/amd64/trap.c
+++ b/sys/amd64/amd64/trap.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
- * $Id: trap.c,v 1.109 1997/08/28 14:36:54 jlemon Exp $
+ * $Id: trap.c,v 1.110 1997/09/05 08:54:54 peter Exp $
*/
/*
@@ -780,6 +780,8 @@ trap_fatal(frame)
printf("tty ");
if ((cpl & bio_imask) == bio_imask)
printf("bio ");
+ if ((cpl & cam_imask) == cam_imask)
+ printf("cam ");
if (cpl == 0)
printf("none");
#ifdef SMP
OpenPOWER on IntegriCloud