From 6450b2fc55f73c4ce810304628205a53e371a626 Mon Sep 17 00:00:00 2001 From: gibbs Date: Sun, 21 Sep 1997 21:38:05 +0000 Subject: 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. --- sys/amd64/amd64/trap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/amd64/amd64/trap.c') 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 -- cgit v1.1