Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jun 2005 20:17:49 GMT
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 79106 for review
Message-ID:  <200506282017.j5SKHnLc000683@repoman.freebsd.org>

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

Change 79106 by peter@peter_daintree on 2005/06/28 20:17:41

	aargh, there is no reason to have KDB_STOP_NMI in opt_global.h

Affected files ...

.. //depot/projects/hammer/sys/amd64/amd64/mp_machdep.c#99 edit
.. //depot/projects/hammer/sys/amd64/amd64/trap.c#67 edit
.. //depot/projects/hammer/sys/conf/options.amd64#36 edit
.. //depot/projects/hammer/sys/conf/options.i386#37 edit
.. //depot/projects/hammer/sys/conf/options.pc98#33 edit
.. //depot/projects/hammer/sys/i386/i386/mp_machdep.c#46 edit
.. //depot/projects/hammer/sys/i386/i386/trap.c#36 edit
.. //depot/projects/hammer/sys/kern/subr_kdb.c#11 edit

Differences ...

==== //depot/projects/hammer/sys/amd64/amd64/mp_machdep.c#99 (text+ko) ====

@@ -28,6 +28,7 @@
 __FBSDID("$FreeBSD: src/sys/amd64/amd64/mp_machdep.c,v 1.259 2005/06/09 18:23:54 ups Exp $");
 
 #include "opt_cpu.h"
+#include "opt_kdb.h"
 #include "opt_kstack_pages.h"
 #include "opt_mp_watchdog.h"
 #include "opt_sched.h"

==== //depot/projects/hammer/sys/amd64/amd64/trap.c#67 (text+ko) ====

@@ -48,6 +48,7 @@
 #include "opt_cpu.h"
 #include "opt_hwpmc_hooks.h"
 #include "opt_isa.h"
+#include "opt_kdb.h"
 #include "opt_ktrace.h"
 
 #include <sys/param.h>

==== //depot/projects/hammer/sys/conf/options.amd64#36 (text+ko) ====

@@ -57,4 +57,4 @@
 DEV_ATPIC		opt_atpic.h
 
 # Debugging
-KDB_STOP_NMI		opt_global.h
+KDB_STOP_NMI		opt_kdb.h

==== //depot/projects/hammer/sys/conf/options.i386#37 (text+ko) ====

@@ -162,5 +162,5 @@
 ASR_COMPAT		opt_asr.h
 
 # Debugging
-KDB_STOP_NMI		opt_global.h
+KDB_STOP_NMI		opt_kdb.h
 NPX_DEBUG		opt_npx.h

==== //depot/projects/hammer/sys/conf/options.pc98#33 (text+ko) ====

@@ -104,5 +104,5 @@
 DEV_NPX			opt_npx.h
 
 # Debugging
-KDB_STOP_NMI		opt_global.h
+KDB_STOP_NMI		opt_kdb.h
 NPX_DEBUG		opt_npx.h

==== //depot/projects/hammer/sys/i386/i386/mp_machdep.c#46 (text+ko) ====

@@ -28,6 +28,7 @@
 
 #include "opt_apic.h"
 #include "opt_cpu.h"
+#include "opt_kdb.h"
 #include "opt_kstack_pages.h"
 #include "opt_mp_watchdog.h"
 #include "opt_sched.h"

==== //depot/projects/hammer/sys/i386/i386/trap.c#36 (text+ko) ====

@@ -48,6 +48,7 @@
 #include "opt_cpu.h"
 #include "opt_hwpmc_hooks.h"
 #include "opt_isa.h"
+#include "opt_kdb.h"
 #include "opt_ktrace.h"
 #include "opt_npx.h"
 #include "opt_trap.h"

==== //depot/projects/hammer/sys/kern/subr_kdb.c#11 (text+ko) ====

@@ -27,6 +27,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD: src/sys/kern/subr_kdb.c,v 1.11 2005/04/30 20:00:59 dwhite Exp $");
 
+#include "opt_kdb.h"
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kdb.h>



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