From c552a9a1c3362d37fc1aaf3a9ba4231225b1f13a Mon Sep 17 00:00:00 2001 From: eivind Date: Wed, 4 Feb 1998 22:34:03 +0000 Subject: Turn DIAGNOSTIC into a new-style option. --- sys/amd64/amd64/busdma_machdep.c | 4 +++- sys/amd64/amd64/cpu_switch.S | 3 ++- sys/amd64/amd64/machdep.c | 3 ++- sys/amd64/amd64/pmap.c | 3 ++- sys/amd64/amd64/swtch.s | 3 ++- sys/amd64/amd64/trap.c | 3 ++- sys/amd64/amd64/vm_machdep.c | 3 ++- sys/amd64/isa/isa.c | 4 +++- 8 files changed, 18 insertions(+), 8 deletions(-) (limited to 'sys/amd64') diff --git a/sys/amd64/amd64/busdma_machdep.c b/sys/amd64/amd64/busdma_machdep.c index 5f66ab9..d085d31 100644 --- a/sys/amd64/amd64/busdma_machdep.c +++ b/sys/amd64/amd64/busdma_machdep.c @@ -23,9 +23,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: busdma_machdep.c,v 1.1 1998/01/15 07:32:20 gibbs Exp $ */ +#include "opt_diagnostic.h" + #include #include #include diff --git a/sys/amd64/amd64/cpu_switch.S b/sys/amd64/amd64/cpu_switch.S index 552aac8..eb859e8 100644 --- a/sys/amd64/amd64/cpu_switch.S +++ b/sys/amd64/amd64/cpu_switch.S @@ -33,10 +33,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: swtch.s,v 1.65 1997/12/14 02:11:13 dyson Exp $ + * $Id: swtch.s,v 1.66 1997/12/15 02:18:24 tegge Exp $ */ #include "npx.h" +#include "opt_diagnostic.h" #include "opt_user_ldt.h" #include "opt_vm86.h" diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index fd39500..abb61ed 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.285 1998/01/30 10:26:20 dyson Exp $ + * $Id: machdep.c,v 1.286 1998/02/03 21:27:46 bde Exp $ */ #include "apm.h" @@ -43,6 +43,7 @@ #include "opt_bounce.h" #include "opt_cpu.h" #include "opt_ddb.h" +#include "opt_diagnostic.h" #include "opt_maxmem.h" #include "opt_perfmon.h" #include "opt_smp.h" diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c index 777812f..c12a276 100644 --- a/sys/amd64/amd64/pmap.c +++ b/sys/amd64/amd64/pmap.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 - * $Id: pmap.c,v 1.179 1998/01/31 11:55:41 dyson Exp $ + * $Id: pmap.c,v 1.180 1998/02/03 22:09:01 bde Exp $ */ /* @@ -68,6 +68,7 @@ * and to when physical maps must be made correct. */ +#include "opt_diagnostic.h" #include "opt_disable_pse.h" #include diff --git a/sys/amd64/amd64/swtch.s b/sys/amd64/amd64/swtch.s index 552aac8..eb859e8 100644 --- a/sys/amd64/amd64/swtch.s +++ b/sys/amd64/amd64/swtch.s @@ -33,10 +33,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: swtch.s,v 1.65 1997/12/14 02:11:13 dyson Exp $ + * $Id: swtch.s,v 1.66 1997/12/15 02:18:24 tegge Exp $ */ #include "npx.h" +#include "opt_diagnostic.h" #include "opt_user_ldt.h" #include "opt_vm86.h" diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index a51c7ee..8d7bd9e 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.119 1997/12/06 04:11:01 sef Exp $ + * $Id: trap.c,v 1.120 1998/01/31 05:00:15 eivind Exp $ */ /* @@ -44,6 +44,7 @@ #include "opt_cpu.h" #include "opt_ddb.h" +#include "opt_diagnostic.h" #include "opt_ktrace.h" #include "opt_trap.h" #include "opt_vm86.h" diff --git a/sys/amd64/amd64/vm_machdep.c b/sys/amd64/amd64/vm_machdep.c index 5f0d7b3..be470d6 100644 --- a/sys/amd64/amd64/vm_machdep.c +++ b/sys/amd64/amd64/vm_machdep.c @@ -38,11 +38,12 @@ * * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ - * $Id: vm_machdep.c,v 1.96 1998/01/22 17:29:32 dyson Exp $ + * $Id: vm_machdep.c,v 1.97 1998/01/30 10:26:26 dyson Exp $ */ #include "npx.h" #include "opt_bounce.h" +#include "opt_diagnostic.h" #include "opt_user_ldt.h" #include "opt_vm86.h" diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index 3f9440d..f9a63bf 100644 --- a/sys/amd64/isa/isa.c +++ b/sys/amd64/isa/isa.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa.c,v 1.108 1997/11/30 09:44:28 jmg Exp $ + * $Id: isa.c,v 1.109 1998/01/31 03:29:00 eivind Exp $ */ /* @@ -47,6 +47,8 @@ * isa_dmastart() */ +#include "opt_diagnostic.h" + #include #include #include -- cgit v1.1