Module Name: src
Committed By: tsutsui
Date: Mon Jan 17 14:36:34 UTC 2011
Modified Files:
src/sys/arch/atari/atari: trap.c
src/sys/arch/hp300/hp300: machdep.c
src/sys/arch/news68k/news68k: machdep.c
src/sys/arch/sun2/sun2: machdep.c trap.c
src/sys/arch/sun3/sun3: machdep.c trap.c
src/sys/arch/sun3/sun3x: machdep.c
Log Message:
Explicitly include <machine/pcb.h> for struct pcb.
To generate a diff of this commit:
cvs rdiff -u -r1.109 -r1.110 src/sys/arch/atari/atari/trap.c
cvs rdiff -u -r1.214 -r1.215 src/sys/arch/hp300/hp300/machdep.c
cvs rdiff -u -r1.87 -r1.88 src/sys/arch/news68k/news68k/machdep.c
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/sun2/sun2/machdep.c
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/sun2/sun2/trap.c
cvs rdiff -u -r1.198 -r1.199 src/sys/arch/sun3/sun3/machdep.c
cvs rdiff -u -r1.140 -r1.141 src/sys/arch/sun3/sun3/trap.c
cvs rdiff -u -r1.124 -r1.125 src/sys/arch/sun3/sun3x/machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/atari/atari/trap.c
diff -u src/sys/arch/atari/atari/trap.c:1.109 src/sys/arch/atari/atari/trap.c:1.110
--- src/sys/arch/atari/atari/trap.c:1.109 Mon Dec 20 00:25:30 2010
+++ src/sys/arch/atari/atari/trap.c Mon Jan 17 14:36:32 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.109 2010/12/20 00:25:30 matt Exp $ */
+/* $NetBSD: trap.c,v 1.110 2011/01/17 14:36:32 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.109 2010/12/20 00:25:30 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.110 2011/01/17 14:36:32 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_execfmt.h"
@@ -108,6 +108,7 @@
#include <machine/psl.h>
#include <machine/trap.h>
#include <machine/cpu.h>
+#include <machine/pcb.h>
#include <machine/reg.h>
#include <machine/pte.h>
#ifdef DDB
Index: src/sys/arch/hp300/hp300/machdep.c
diff -u src/sys/arch/hp300/hp300/machdep.c:1.214 src/sys/arch/hp300/hp300/machdep.c:1.215
--- src/sys/arch/hp300/hp300/machdep.c:1.214 Thu Jan 6 14:19:54 2011
+++ src/sys/arch/hp300/hp300/machdep.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.214 2011/01/06 14:19:54 tsutsui Exp $ */
+/* $NetBSD: machdep.c,v 1.215 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.214 2011/01/06 14:19:54 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.215 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_compat_netbsd.h"
@@ -126,6 +126,7 @@
#include <machine/cpu.h>
#include <machine/hp300spu.h>
#include <machine/reg.h>
+#include <machine/pcb.h>
#include <machine/psl.h>
#include <machine/pte.h>
Index: src/sys/arch/news68k/news68k/machdep.c
diff -u src/sys/arch/news68k/news68k/machdep.c:1.87 src/sys/arch/news68k/news68k/machdep.c:1.88
--- src/sys/arch/news68k/news68k/machdep.c:1.87 Mon Dec 20 00:25:40 2010
+++ src/sys/arch/news68k/news68k/machdep.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.87 2010/12/20 00:25:40 matt Exp $ */
+/* $NetBSD: machdep.c,v 1.88 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.87 2010/12/20 00:25:40 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.88 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_compat_netbsd.h"
@@ -115,6 +115,7 @@
#include <machine/autoconf.h>
#include <machine/cpu.h>
#include <machine/reg.h>
+#include <machine/pcb.h>
#include <machine/pte.h>
#include <machine/intr.h>
Index: src/sys/arch/sun2/sun2/machdep.c
diff -u src/sys/arch/sun2/sun2/machdep.c:1.65 src/sys/arch/sun2/sun2/machdep.c:1.66
--- src/sys/arch/sun2/sun2/machdep.c:1.65 Mon Feb 8 19:02:32 2010
+++ src/sys/arch/sun2/sun2/machdep.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.65 2010/02/08 19:02:32 joerg Exp $ */
+/* $NetBSD: machdep.c,v 1.66 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -153,7 +153,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.65 2010/02/08 19:02:32 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.66 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -199,6 +199,7 @@
#include <machine/idprom.h>
#include <machine/kcore.h>
#include <machine/reg.h>
+#include <machine/pcb.h>
#include <machine/psl.h>
#include <machine/pte.h>
#define _SUN68K_BUS_DMA_PRIVATE
Index: src/sys/arch/sun2/sun2/trap.c
diff -u src/sys/arch/sun2/sun2/trap.c:1.41 src/sys/arch/sun2/sun2/trap.c:1.42
--- src/sys/arch/sun2/sun2/trap.c:1.41 Mon Dec 20 00:25:44 2010
+++ src/sys/arch/sun2/sun2/trap.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.41 2010/12/20 00:25:44 matt Exp $ */
+/* $NetBSD: trap.c,v 1.42 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.41 2010/12/20 00:25:44 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.42 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_execfmt.h"
@@ -108,6 +108,7 @@
#include <machine/cpu.h>
#include <machine/endian.h>
+#include <machine/pcb.h>
#include <machine/psl.h>
#include <machine/trap.h>
#include <machine/reg.h>
Index: src/sys/arch/sun3/sun3/machdep.c
diff -u src/sys/arch/sun3/sun3/machdep.c:1.198 src/sys/arch/sun3/sun3/machdep.c:1.199
--- src/sys/arch/sun3/sun3/machdep.c:1.198 Fri Oct 15 15:55:53 2010
+++ src/sys/arch/sun3/sun3/machdep.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.198 2010/10/15 15:55:53 tsutsui Exp $ */
+/* $NetBSD: machdep.c,v 1.199 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.198 2010/10/15 15:55:53 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.199 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -122,6 +122,7 @@
#include <machine/idprom.h>
#include <machine/kcore.h>
#include <machine/reg.h>
+#include <machine/pcb.h>
#include <machine/psl.h>
#include <machine/pte.h>
Index: src/sys/arch/sun3/sun3/trap.c
diff -u src/sys/arch/sun3/sun3/trap.c:1.140 src/sys/arch/sun3/sun3/trap.c:1.141
--- src/sys/arch/sun3/sun3/trap.c:1.140 Mon Dec 20 00:25:45 2010
+++ src/sys/arch/sun3/sun3/trap.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.140 2010/12/20 00:25:45 matt Exp $ */
+/* $NetBSD: trap.c,v 1.141 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.140 2010/12/20 00:25:45 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.141 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_execfmt.h"
@@ -108,6 +108,7 @@
#include <machine/cpu.h>
#include <machine/endian.h>
+#include <machine/pcb.h>
#include <machine/psl.h>
#include <machine/trap.h>
#include <machine/reg.h>
Index: src/sys/arch/sun3/sun3x/machdep.c
diff -u src/sys/arch/sun3/sun3x/machdep.c:1.124 src/sys/arch/sun3/sun3x/machdep.c:1.125
--- src/sys/arch/sun3/sun3x/machdep.c:1.124 Fri Oct 15 15:55:53 2010
+++ src/sys/arch/sun3/sun3x/machdep.c Mon Jan 17 14:36:33 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.124 2010/10/15 15:55:53 tsutsui Exp $ */
+/* $NetBSD: machdep.c,v 1.125 2011/01/17 14:36:33 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -75,7 +75,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.124 2010/10/15 15:55:53 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.125 2011/01/17 14:36:33 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -119,6 +119,7 @@
#include <machine/idprom.h>
#include <machine/kcore.h>
#include <machine/reg.h>
+#include <machine/pcb.h>
#include <machine/psl.h>
#include <machine/pte.h>