summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/machdep.c3
-rw-r--r--sys/amd64/amd64/sys_machdep.c3
-rw-r--r--sys/amd64/amd64/trap.c7
-rw-r--r--sys/i386/i386/machdep.c3
-rw-r--r--sys/i386/i386/sys_machdep.c3
-rw-r--r--sys/i386/i386/trap.c7
-rw-r--r--sys/i386/i386/vm86.c5
-rw-r--r--sys/kern/subr_trap.c7
8 files changed, 29 insertions, 9 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index 9a0d107..01600cf 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.266 1997/09/25 15:49:37 davidg Exp $
+ * $Id: machdep.c,v 1.267 1997/10/10 09:44:02 peter Exp $
*/
#include "apm.h"
@@ -106,6 +106,7 @@
#include <machine/cons.h>
#include <machine/bootinfo.h>
#include <machine/md_var.h>
+#include <machine/pcb_ext.h> /* pcb.h included via sys/user.h */
#ifdef SMP
#include <machine/smp.h>
#endif
diff --git a/sys/amd64/amd64/sys_machdep.c b/sys/amd64/amd64/sys_machdep.c
index 006f74c..e6daefd 100644
--- a/sys/amd64/amd64/sys_machdep.c
+++ b/sys/amd64/amd64/sys_machdep.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
- * $Id: sys_machdep.c,v 1.25 1997/09/01 01:12:51 bde Exp $
+ * $Id: sys_machdep.c,v 1.26 1997/10/10 09:44:08 peter Exp $
*
*/
@@ -52,6 +52,7 @@
#include <sys/user.h>
#include <machine/cpu.h>
+#include <machine/pcb_ext.h> /* pcb.h included by sys/user.h */
#include <machine/sysarch.h>
#include <vm/vm_kern.h> /* for kernel_map */
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c
index 8260c8a..ec74808 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.111 1997/09/21 21:38:05 gibbs Exp $
+ * $Id: trap.c,v 1.112 1997/10/10 09:44:09 peter Exp $
*/
/*
@@ -75,12 +75,17 @@
#include <machine/psl.h>
#include <machine/../isa/intr_machdep.h>
#include <machine/smp.h>
+#include <machine/tss.h>
#ifdef POWERFAIL_NMI
#include <sys/syslog.h>
#include <machine/clock.h>
#endif
+#ifdef VM86
+#include <machine/vm86.h>
+#endif
+
#include "isa.h"
#include "npx.h"
diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c
index 9a0d107..01600cf 100644
--- a/sys/i386/i386/machdep.c
+++ b/sys/i386/i386/machdep.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
- * $Id: machdep.c,v 1.266 1997/09/25 15:49:37 davidg Exp $
+ * $Id: machdep.c,v 1.267 1997/10/10 09:44:02 peter Exp $
*/
#include "apm.h"
@@ -106,6 +106,7 @@
#include <machine/cons.h>
#include <machine/bootinfo.h>
#include <machine/md_var.h>
+#include <machine/pcb_ext.h> /* pcb.h included via sys/user.h */
#ifdef SMP
#include <machine/smp.h>
#endif
diff --git a/sys/i386/i386/sys_machdep.c b/sys/i386/i386/sys_machdep.c
index 006f74c..e6daefd 100644
--- a/sys/i386/i386/sys_machdep.c
+++ b/sys/i386/i386/sys_machdep.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
- * $Id: sys_machdep.c,v 1.25 1997/09/01 01:12:51 bde Exp $
+ * $Id: sys_machdep.c,v 1.26 1997/10/10 09:44:08 peter Exp $
*
*/
@@ -52,6 +52,7 @@
#include <sys/user.h>
#include <machine/cpu.h>
+#include <machine/pcb_ext.h> /* pcb.h included by sys/user.h */
#include <machine/sysarch.h>
#include <vm/vm_kern.h> /* for kernel_map */
diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c
index 8260c8a..ec74808 100644
--- a/sys/i386/i386/trap.c
+++ b/sys/i386/i386/trap.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
- * $Id: trap.c,v 1.111 1997/09/21 21:38:05 gibbs Exp $
+ * $Id: trap.c,v 1.112 1997/10/10 09:44:09 peter Exp $
*/
/*
@@ -75,12 +75,17 @@
#include <machine/psl.h>
#include <machine/../isa/intr_machdep.h>
#include <machine/smp.h>
+#include <machine/tss.h>
#ifdef POWERFAIL_NMI
#include <sys/syslog.h>
#include <machine/clock.h>
#endif
+#ifdef VM86
+#include <machine/vm86.h>
+#endif
+
#include "isa.h"
#include "npx.h"
diff --git a/sys/i386/i386/vm86.c b/sys/i386/i386/vm86.c
index 2030843..c8deb46 100644
--- a/sys/i386/i386/vm86.c
+++ b/sys/i386/i386/vm86.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: vm86.c,v 1.2 1997/08/28 14:36:55 jlemon Exp $
+ * $Id: vm86.c,v 1.3 1997/09/01 01:12:53 bde Exp $
*/
#include <sys/param.h>
@@ -39,8 +39,9 @@
#include <sys/user.h>
-#include <machine/psl.h>
#include <machine/md_var.h>
+#include <machine/pcb_ext.h> /* pcb.h included via sys/user.h */
+#include <machine/psl.h>
#include <machine/specialreg.h>
extern int i386_extend_pcb __P((struct proc *));
diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c
index 8260c8a..ec74808 100644
--- a/sys/kern/subr_trap.c
+++ b/sys/kern/subr_trap.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
- * $Id: trap.c,v 1.111 1997/09/21 21:38:05 gibbs Exp $
+ * $Id: trap.c,v 1.112 1997/10/10 09:44:09 peter Exp $
*/
/*
@@ -75,12 +75,17 @@
#include <machine/psl.h>
#include <machine/../isa/intr_machdep.h>
#include <machine/smp.h>
+#include <machine/tss.h>
#ifdef POWERFAIL_NMI
#include <sys/syslog.h>
#include <machine/clock.h>
#endif
+#ifdef VM86
+#include <machine/vm86.h>
+#endif
+
#include "isa.h"
#include "npx.h"
OpenPOWER on IntegriCloud