summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2014-09-14 14:17:28 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2014-09-14 14:17:28 +0000
commitf86fd20f7920e0ce9eed94dbfa81ade1020f9bd4 (patch)
treed3e9a139df0f7b8cbe6c9989bc352cfa506c55d7 /sys/arch
parenta0c7f6a85405e690b4fe4f037a7dcb011f423de8 (diff)
remove uneeded proc.h includes
ok mpi@ kspillner@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/bios.c3
-rw-r--r--sys/arch/amd64/amd64/cpu.c4
-rw-r--r--sys/arch/amd64/amd64/db_disasm.c3
-rw-r--r--sys/arch/amd64/amd64/db_interface.c3
-rw-r--r--sys/arch/amd64/amd64/db_memrw.c3
-rw-r--r--sys/arch/amd64/amd64/dkcsum.c3
-rw-r--r--sys/arch/amd64/amd64/est.c3
-rw-r--r--sys/arch/amd64/amd64/gdt.c3
-rw-r--r--sys/arch/amd64/amd64/i8259.c3
-rw-r--r--sys/arch/amd64/amd64/identcpu.c3
-rw-r--r--sys/arch/amd64/amd64/intr.c3
-rw-r--r--sys/arch/amd64/amd64/k1x-pstate.c3
-rw-r--r--sys/arch/amd64/amd64/lapic.c3
-rw-r--r--sys/arch/amd64/amd64/mem.c3
-rw-r--r--sys/arch/amd64/amd64/powernow-k8.c3
-rw-r--r--sys/arch/amd64/amd64/via.c3
-rw-r--r--sys/arch/i386/i386/apm.c3
-rw-r--r--sys/arch/i386/i386/bios.c3
-rw-r--r--sys/arch/i386/i386/cpu.c4
-rw-r--r--sys/arch/i386/i386/db_disasm.c3
-rw-r--r--sys/arch/i386/i386/db_interface.c3
-rw-r--r--sys/arch/i386/i386/db_memrw.c3
-rw-r--r--sys/arch/i386/i386/dkcsum.c3
-rw-r--r--sys/arch/i386/i386/esm.c3
-rw-r--r--sys/arch/i386/i386/est.c3
-rw-r--r--sys/arch/i386/i386/gdt.c3
-rw-r--r--sys/arch/i386/i386/k1x-pstate.c3
-rw-r--r--sys/arch/i386/i386/lapic.c3
-rw-r--r--sys/arch/i386/i386/longrun.c3
-rw-r--r--sys/arch/i386/i386/mem.c3
-rw-r--r--sys/arch/i386/i386/p4tcc.c3
-rw-r--r--sys/arch/i386/i386/powernow-k7.c3
-rw-r--r--sys/arch/i386/i386/powernow-k8.c3
-rw-r--r--sys/arch/i386/i386/powernow.c3
-rw-r--r--sys/arch/i386/i386/via.c3
-rw-r--r--sys/arch/i386/pci/ali1543.c3
-rw-r--r--sys/arch/i386/pci/elan520.c3
-rw-r--r--sys/arch/i386/pci/ichpcib.c3
-rw-r--r--sys/arch/i386/pci/piixpcib.c3
39 files changed, 41 insertions, 78 deletions
diff --git a/sys/arch/amd64/amd64/bios.c b/sys/arch/amd64/amd64/bios.c
index 54d41042bb9..659affed2c3 100644
--- a/sys/arch/amd64/amd64/bios.c
+++ b/sys/arch/amd64/amd64/bios.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bios.c,v 1.27 2014/07/13 12:11:01 jasper Exp $ */
+/* $OpenBSD: bios.c,v 1.28 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2006 Gordon Willem Klok <gklok@cogeco.ca>
*
@@ -23,7 +23,6 @@
#include <sys/malloc.h>
#include <uvm/uvm_extern.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/conf.h>
diff --git a/sys/arch/amd64/amd64/cpu.c b/sys/arch/amd64/amd64/cpu.c
index f3b04114f0f..14df6abd221 100644
--- a/sys/arch/amd64/amd64/cpu.c
+++ b/sys/arch/amd64/amd64/cpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.c,v 1.64 2014/07/10 11:56:56 mlarkin Exp $ */
+/* $OpenBSD: cpu.c,v 1.65 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: cpu.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */
/*-
@@ -68,7 +68,7 @@
#include "ioapic.h"
#include <sys/param.h>
-#include <sys/proc.h>
+#include <sys/timeout.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
diff --git a/sys/arch/amd64/amd64/db_disasm.c b/sys/arch/amd64/amd64/db_disasm.c
index 0957c4de058..0c3d1b2d985 100644
--- a/sys/arch/amd64/amd64/db_disasm.c
+++ b/sys/arch/amd64/amd64/db_disasm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_disasm.c,v 1.12 2014/03/11 04:11:14 guenther Exp $ */
+/* $OpenBSD: db_disasm.c,v 1.13 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: db_disasm.c,v 1.11 1996/05/03 19:41:58 christos Exp $ */
/*
@@ -33,7 +33,6 @@
* Instruction disassembler.
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <machine/db_machdep.h>
#include <ddb/db_access.h>
diff --git a/sys/arch/amd64/amd64/db_interface.c b/sys/arch/amd64/amd64/db_interface.c
index 4b277f23d80..a68c34b25aa 100644
--- a/sys/arch/amd64/amd64/db_interface.c
+++ b/sys/arch/amd64/amd64/db_interface.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_interface.c,v 1.17 2013/05/12 20:47:44 kettenis Exp $ */
+/* $OpenBSD: db_interface.c,v 1.18 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: db_interface.c,v 1.1 2003/04/26 18:39:27 fvdl Exp $ */
/*
@@ -34,7 +34,6 @@
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/systm.h>
diff --git a/sys/arch/amd64/amd64/db_memrw.c b/sys/arch/amd64/amd64/db_memrw.c
index cc2d199854f..866e7fa6e69 100644
--- a/sys/arch/amd64/amd64/db_memrw.c
+++ b/sys/arch/amd64/amd64/db_memrw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_memrw.c,v 1.5 2008/10/09 10:10:49 chl Exp $ */
+/* $OpenBSD: db_memrw.c,v 1.6 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: db_memrw.c,v 1.1 2003/04/26 18:39:27 fvdl Exp $ */
/*-
@@ -52,7 +52,6 @@
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <sys/systm.h>
#include <uvm/uvm_extern.h>
diff --git a/sys/arch/amd64/amd64/dkcsum.c b/sys/arch/amd64/amd64/dkcsum.c
index 44e6fff9984..913f8f18cc6 100644
--- a/sys/arch/amd64/amd64/dkcsum.c
+++ b/sys/arch/amd64/amd64/dkcsum.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dkcsum.c,v 1.20 2013/11/21 00:13:33 dlg Exp $ */
+/* $OpenBSD: dkcsum.c,v 1.21 2014/09/14 14:17:23 jsg Exp $ */
/*-
* Copyright (c) 1997 Niklas Hallqvist. All rights reserved.
@@ -35,7 +35,6 @@
#include <sys/device.h>
#include <sys/disklabel.h>
#include <sys/fcntl.h>
-#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/stat.h>
#include <sys/systm.h>
diff --git a/sys/arch/amd64/amd64/est.c b/sys/arch/amd64/amd64/est.c
index 86b465cc4d7..cea7696e189 100644
--- a/sys/arch/amd64/amd64/est.c
+++ b/sys/arch/amd64/amd64/est.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: est.c,v 1.33 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: est.c,v 1.34 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2003 Michael Eriksson.
* All rights reserved.
@@ -55,7 +55,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/malloc.h>
diff --git a/sys/arch/amd64/amd64/gdt.c b/sys/arch/amd64/amd64/gdt.c
index 94ae7c5ffc8..6f822cf69f1 100644
--- a/sys/arch/amd64/amd64/gdt.c
+++ b/sys/arch/amd64/amd64/gdt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gdt.c,v 1.19 2014/04/01 09:05:03 mpi Exp $ */
+/* $OpenBSD: gdt.c,v 1.20 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: gdt.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $ */
/*-
@@ -37,7 +37,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/mutex.h>
#include <uvm/uvm_extern.h>
diff --git a/sys/arch/amd64/amd64/i8259.c b/sys/arch/amd64/amd64/i8259.c
index 48e720a4c8b..47d62041690 100644
--- a/sys/arch/amd64/amd64/i8259.c
+++ b/sys/arch/amd64/amd64/i8259.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i8259.c,v 1.6 2009/11/22 21:41:37 pirofti Exp $ */
+/* $OpenBSD: i8259.c,v 1.7 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: i8259.c,v 1.2 2003/03/02 18:27:15 fvdl Exp $ */
/*
@@ -76,7 +76,6 @@
#include <sys/syslog.h>
#include <sys/device.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <dev/isa/isareg.h>
diff --git a/sys/arch/amd64/amd64/identcpu.c b/sys/arch/amd64/amd64/identcpu.c
index 3f8d5146b7f..f49c4601df6 100644
--- a/sys/arch/amd64/amd64/identcpu.c
+++ b/sys/arch/amd64/amd64/identcpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: identcpu.c,v 1.54 2014/07/13 12:11:01 jasper Exp $ */
+/* $OpenBSD: identcpu.c,v 1.55 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: identcpu.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $ */
/*
@@ -39,7 +39,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
#include <machine/cpufunc.h>
diff --git a/sys/arch/amd64/amd64/intr.c b/sys/arch/amd64/amd64/intr.c
index e68ea50262a..10ee22b1ee0 100644
--- a/sys/arch/amd64/amd64/intr.c
+++ b/sys/arch/amd64/amd64/intr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.c,v 1.37 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: intr.c,v 1.38 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: intr.c,v 1.3 2003/03/03 22:16:20 fvdl Exp $ */
/*
@@ -44,7 +44,6 @@
#include <sys/syslog.h>
#include <sys/device.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <sys/errno.h>
#include <machine/atomic.h>
diff --git a/sys/arch/amd64/amd64/k1x-pstate.c b/sys/arch/amd64/amd64/k1x-pstate.c
index 5dc66b1adcb..5df35b0b096 100644
--- a/sys/arch/amd64/amd64/k1x-pstate.c
+++ b/sys/arch/amd64/amd64/k1x-pstate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: k1x-pstate.c,v 1.6 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: k1x-pstate.c,v 1.7 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2011 Bryan Steele <brynet@gmail.com>
*
@@ -28,7 +28,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
diff --git a/sys/arch/amd64/amd64/lapic.c b/sys/arch/amd64/amd64/lapic.c
index d09e3fca2e8..1ab6f9bc877 100644
--- a/sys/arch/amd64/amd64/lapic.c
+++ b/sys/arch/amd64/amd64/lapic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lapic.c,v 1.31 2014/03/29 18:09:28 guenther Exp $ */
+/* $OpenBSD: lapic.c,v 1.32 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: lapic.c,v 1.2 2003/05/08 01:04:35 fvdl Exp $ */
/*-
@@ -33,7 +33,6 @@
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/device.h>
diff --git a/sys/arch/amd64/amd64/mem.c b/sys/arch/amd64/amd64/mem.c
index 80994991b5f..4816c659cc3 100644
--- a/sys/arch/amd64/amd64/mem.c
+++ b/sys/arch/amd64/amd64/mem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mem.c,v 1.17 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: mem.c,v 1.18 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
* Copyright (c) 1982, 1986, 1990, 1993
@@ -52,7 +52,6 @@
#include <sys/ioccom.h>
#include <sys/malloc.h>
#include <sys/memrange.h>
-#include <sys/proc.h>
#include <sys/fcntl.h>
#ifdef LKM
#include <sys/lkm.h>
diff --git a/sys/arch/amd64/amd64/powernow-k8.c b/sys/arch/amd64/amd64/powernow-k8.c
index a725e7a804a..284d9684963 100644
--- a/sys/arch/amd64/amd64/powernow-k8.c
+++ b/sys/arch/amd64/amd64/powernow-k8.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: powernow-k8.c,v 1.23 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: powernow-k8.c,v 1.24 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2004 Martin Végiard.
* Copyright (c) 2004-2005 Bruno Ducrot
@@ -30,7 +30,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <dev/isa/isareg.h>
diff --git a/sys/arch/amd64/amd64/via.c b/sys/arch/amd64/amd64/via.c
index 543f2b643df..d80f5cd6613 100644
--- a/sys/arch/amd64/amd64/via.c
+++ b/sys/arch/amd64/amd64/via.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: via.c,v 1.16 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: via.c,v 1.17 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -23,7 +23,6 @@
#include <sys/systm.h>
#include <sys/signalvar.h>
#include <sys/kernel.h>
-#include <sys/proc.h>
#include <sys/exec.h>
#include <sys/buf.h>
#include <sys/reboot.h>
diff --git a/sys/arch/i386/i386/apm.c b/sys/arch/i386/i386/apm.c
index 442e0f23edd..2981e7028d8 100644
--- a/sys/arch/i386/i386/apm.c
+++ b/sys/arch/i386/i386/apm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: apm.c,v 1.105 2014/03/31 12:11:42 mpi Exp $ */
+/* $OpenBSD: apm.c,v 1.106 2014/09/14 14:17:23 jsg Exp $ */
/*-
* Copyright (c) 1998-2001 Michael Shalayeff. All rights reserved.
@@ -42,7 +42,6 @@
#include <sys/kernel.h>
#include <sys/kthread.h>
#include <sys/rwlock.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/malloc.h>
#include <sys/device.h>
diff --git a/sys/arch/i386/i386/bios.c b/sys/arch/i386/i386/bios.c
index b4320c6128a..3baf3fa9791 100644
--- a/sys/arch/i386/i386/bios.c
+++ b/sys/arch/i386/i386/bios.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bios.c,v 1.104 2014/03/29 18:09:29 guenther Exp $ */
+/* $OpenBSD: bios.c,v 1.105 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 1997-2001 Michael Shalayeff
@@ -33,7 +33,6 @@
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/errno.h>
-#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/reboot.h>
#include <sys/extent.h>
diff --git a/sys/arch/i386/i386/cpu.c b/sys/arch/i386/i386/cpu.c
index ec0ea71aeb3..8d94de66447 100644
--- a/sys/arch/i386/i386/cpu.c
+++ b/sys/arch/i386/i386/cpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.c,v 1.55 2014/03/29 18:09:29 guenther Exp $ */
+/* $OpenBSD: cpu.c,v 1.56 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: cpu.c,v 1.1.2.7 2000/06/26 02:04:05 sommerfeld Exp $ */
/*-
@@ -68,7 +68,7 @@
#include "ioapic.h"
#include <sys/param.h>
-#include <sys/proc.h>
+#include <sys/timeout.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
diff --git a/sys/arch/i386/i386/db_disasm.c b/sys/arch/i386/i386/db_disasm.c
index 2a7a8b2a9ad..05b52631ab4 100644
--- a/sys/arch/i386/i386/db_disasm.c
+++ b/sys/arch/i386/i386/db_disasm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_disasm.c,v 1.17 2014/03/11 04:11:14 guenther Exp $ */
+/* $OpenBSD: db_disasm.c,v 1.18 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: db_disasm.c,v 1.11 1996/05/03 19:41:58 christos Exp $ */
/*
@@ -33,7 +33,6 @@
* Instruction disassembler.
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <machine/db_machdep.h>
#include <ddb/db_access.h>
diff --git a/sys/arch/i386/i386/db_interface.c b/sys/arch/i386/i386/db_interface.c
index e6db8b7ed30..13cd5be101d 100644
--- a/sys/arch/i386/i386/db_interface.c
+++ b/sys/arch/i386/i386/db_interface.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_interface.c,v 1.30 2014/03/29 18:09:29 guenther Exp $ */
+/* $OpenBSD: db_interface.c,v 1.31 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: db_interface.c,v 1.22 1996/05/03 19:42:00 christos Exp $ */
/*
@@ -33,7 +33,6 @@
* Interface to new debugger.
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/systm.h>
#include <sys/mutex.h>
diff --git a/sys/arch/i386/i386/db_memrw.c b/sys/arch/i386/i386/db_memrw.c
index 49102f2305f..025ea3861d5 100644
--- a/sys/arch/i386/i386/db_memrw.c
+++ b/sys/arch/i386/i386/db_memrw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_memrw.c,v 1.13 2011/04/23 22:16:13 deraadt Exp $ */
+/* $OpenBSD: db_memrw.c,v 1.14 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: db_memrw.c,v 1.6 1999/04/12 20:38:19 pk Exp $ */
/*
@@ -35,7 +35,6 @@
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <sys/systm.h>
#include <uvm/uvm_extern.h>
diff --git a/sys/arch/i386/i386/dkcsum.c b/sys/arch/i386/i386/dkcsum.c
index 20ed865be53..423eb9e6943 100644
--- a/sys/arch/i386/i386/dkcsum.c
+++ b/sys/arch/i386/i386/dkcsum.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dkcsum.c,v 1.31 2013/11/21 00:13:33 dlg Exp $ */
+/* $OpenBSD: dkcsum.c,v 1.32 2014/09/14 14:17:23 jsg Exp $ */
/*-
* Copyright (c) 1997 Niklas Hallqvist. All rights reserved.
@@ -35,7 +35,6 @@
#include <sys/device.h>
#include <sys/disklabel.h>
#include <sys/fcntl.h>
-#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/stat.h>
#include <sys/systm.h>
diff --git a/sys/arch/i386/i386/esm.c b/sys/arch/i386/i386/esm.c
index 5ca135acd25..54f9f6dd8e1 100644
--- a/sys/arch/i386/i386/esm.c
+++ b/sys/arch/i386/i386/esm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: esm.c,v 1.55 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: esm.c,v 1.56 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org>
@@ -23,7 +23,6 @@
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/timeout.h>
-#include <sys/proc.h>
#include <sys/queue.h>
#include <sys/sensors.h>
diff --git a/sys/arch/i386/i386/est.c b/sys/arch/i386/i386/est.c
index 3e738556bfa..927be477185 100644
--- a/sys/arch/i386/i386/est.c
+++ b/sys/arch/i386/i386/est.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: est.c,v 1.43 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: est.c,v 1.44 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2003 Michael Eriksson.
* All rights reserved.
@@ -55,7 +55,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/malloc.h>
diff --git a/sys/arch/i386/i386/gdt.c b/sys/arch/i386/i386/gdt.c
index a053b0e3bff..36738fd40f8 100644
--- a/sys/arch/i386/i386/gdt.c
+++ b/sys/arch/i386/i386/gdt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gdt.c,v 1.32 2014/04/01 09:05:03 mpi Exp $ */
+/* $OpenBSD: gdt.c,v 1.33 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: gdt.c,v 1.28 2002/12/14 09:38:50 junyoung Exp $ */
/*-
@@ -49,7 +49,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/lock.h>
#include <sys/mutex.h>
diff --git a/sys/arch/i386/i386/k1x-pstate.c b/sys/arch/i386/i386/k1x-pstate.c
index 15761d62f32..f50618a7ee5 100644
--- a/sys/arch/i386/i386/k1x-pstate.c
+++ b/sys/arch/i386/i386/k1x-pstate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: k1x-pstate.c,v 1.6 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: k1x-pstate.c,v 1.7 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2011 Bryan Steele <brynet@gmail.com>
*
@@ -28,7 +28,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
diff --git a/sys/arch/i386/i386/lapic.c b/sys/arch/i386/i386/lapic.c
index 81a94c7dff6..d175d6b22ac 100644
--- a/sys/arch/i386/i386/lapic.c
+++ b/sys/arch/i386/i386/lapic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lapic.c,v 1.35 2014/03/29 18:09:29 guenther Exp $ */
+/* $OpenBSD: lapic.c,v 1.36 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: lapic.c,v 1.1.2.8 2000/02/23 06:10:50 sommerfeld Exp $ */
/*-
@@ -33,7 +33,6 @@
*/
#include <sys/param.h>
-#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/device.h>
diff --git a/sys/arch/i386/i386/longrun.c b/sys/arch/i386/i386/longrun.c
index 5f775e93aa0..ecf298958c7 100644
--- a/sys/arch/i386/i386/longrun.c
+++ b/sys/arch/i386/i386/longrun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: longrun.c,v 1.15 2010/04/20 22:05:41 tedu Exp $ */
+/* $OpenBSD: longrun.c,v 1.16 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2003 Ted Unangst
* Copyright (c) 2001 Tamotsu Hattori
@@ -31,7 +31,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/timeout.h>
diff --git a/sys/arch/i386/i386/mem.c b/sys/arch/i386/i386/mem.c
index 92acaf355bb..93cfd9fd458 100644
--- a/sys/arch/i386/i386/mem.c
+++ b/sys/arch/i386/i386/mem.c
@@ -1,5 +1,5 @@
/* $NetBSD: mem.c,v 1.31 1996/05/03 19:42:19 christos Exp $ */
-/* $OpenBSD: mem.c,v 1.39 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: mem.c,v 1.40 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
* Copyright (c) 1982, 1986, 1990, 1993
@@ -47,7 +47,6 @@
#include <sys/ioccom.h>
#include <sys/malloc.h>
#include <sys/memrange.h>
-#include <sys/proc.h>
#include <sys/fcntl.h>
#include <machine/cpu.h>
diff --git a/sys/arch/i386/i386/p4tcc.c b/sys/arch/i386/i386/p4tcc.c
index 7b983134e41..b9f7a84bb94 100644
--- a/sys/arch/i386/i386/p4tcc.c
+++ b/sys/arch/i386/i386/p4tcc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: p4tcc.c,v 1.18 2014/07/08 13:06:58 deraadt Exp $ */
+/* $OpenBSD: p4tcc.c,v 1.19 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2003 Ted Unangst
* All rights reserved.
@@ -38,7 +38,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
diff --git a/sys/arch/i386/i386/powernow-k7.c b/sys/arch/i386/i386/powernow-k7.c
index 3a5fac5b7f7..8e6c6b1d270 100644
--- a/sys/arch/i386/i386/powernow-k7.c
+++ b/sys/arch/i386/i386/powernow-k7.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: powernow-k7.c,v 1.35 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: powernow-k7.c,v 1.36 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2004 Martin Végiard.
@@ -32,7 +32,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
diff --git a/sys/arch/i386/i386/powernow-k8.c b/sys/arch/i386/i386/powernow-k8.c
index 80f6061a5e4..5e6008d6482 100644
--- a/sys/arch/i386/i386/powernow-k8.c
+++ b/sys/arch/i386/i386/powernow-k8.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: powernow-k8.c,v 1.27 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: powernow-k8.c,v 1.28 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2004 Martin Végiard.
@@ -31,7 +31,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <dev/isa/isareg.h>
diff --git a/sys/arch/i386/i386/powernow.c b/sys/arch/i386/i386/powernow.c
index 7ef3bd51369..df70dd1ed2f 100644
--- a/sys/arch/i386/i386/powernow.c
+++ b/sys/arch/i386/i386/powernow.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: powernow.c,v 1.5 2014/07/08 13:06:58 deraadt Exp $ */
+/* $OpenBSD: powernow.c,v 1.6 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2004 Ted Unangst
* All rights reserved.
@@ -23,7 +23,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
diff --git a/sys/arch/i386/i386/via.c b/sys/arch/i386/i386/via.c
index 82d44216281..f7a6194fe71 100644
--- a/sys/arch/i386/i386/via.c
+++ b/sys/arch/i386/i386/via.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: via.c,v 1.32 2014/07/12 18:44:41 tedu Exp $ */
+/* $OpenBSD: via.c,v 1.33 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -23,7 +23,6 @@
#include <sys/systm.h>
#include <sys/signalvar.h>
#include <sys/kernel.h>
-#include <sys/proc.h>
#include <sys/exec.h>
#include <sys/buf.h>
#include <sys/reboot.h>
diff --git a/sys/arch/i386/pci/ali1543.c b/sys/arch/i386/pci/ali1543.c
index 821ab25836e..298e07eed9d 100644
--- a/sys/arch/i386/pci/ali1543.c
+++ b/sys/arch/i386/pci/ali1543.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ali1543.c,v 1.3 2008/06/27 06:03:08 ray Exp $ */
+/* $OpenBSD: ali1543.c,v 1.4 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: ali1543.c,v 1.2 2001/09/13 14:00:52 tshiozak Exp $ */
/*
@@ -92,7 +92,6 @@
#include <sys/errno.h>
#include <sys/device.h>
#include <sys/malloc.h>
-#include <sys/proc.h>
#include <machine/intr.h>
#include <machine/bus.h>
diff --git a/sys/arch/i386/pci/elan520.c b/sys/arch/i386/pci/elan520.c
index d6fb6bd5c5e..bf077dd7c43 100644
--- a/sys/arch/i386/pci/elan520.c
+++ b/sys/arch/i386/pci/elan520.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: elan520.c,v 1.19 2014/06/29 01:01:20 deraadt Exp $ */
+/* $OpenBSD: elan520.c,v 1.20 2014/09/14 14:17:23 jsg Exp $ */
/* $NetBSD: elan520.c,v 1.4 2002/10/02 05:47:15 thorpej Exp $ */
/*-
@@ -40,7 +40,6 @@
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/gpio.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/timetc.h>
diff --git a/sys/arch/i386/pci/ichpcib.c b/sys/arch/i386/pci/ichpcib.c
index eb1afd62779..6abf1627de2 100644
--- a/sys/arch/i386/pci/ichpcib.c
+++ b/sys/arch/i386/pci/ichpcib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ichpcib.c,v 1.27 2013/05/30 16:15:01 deraadt Exp $ */
+/* $OpenBSD: ichpcib.c,v 1.28 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
*
@@ -25,7 +25,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/timetc.h>
diff --git a/sys/arch/i386/pci/piixpcib.c b/sys/arch/i386/pci/piixpcib.c
index 37bfb011623..a33e4b1fc66 100644
--- a/sys/arch/i386/pci/piixpcib.c
+++ b/sys/arch/i386/pci/piixpcib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: piixpcib.c,v 1.10 2014/07/08 17:19:24 deraadt Exp $ */
+/* $OpenBSD: piixpcib.c,v 1.11 2014/09/14 14:17:23 jsg Exp $ */
/*
* Copyright (c) 2007 Stefan Sperling <stsp@stsp.in-berlin.de>
@@ -55,7 +55,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
-#include <sys/proc.h>
#include <sys/sysctl.h>
#include <uvm/uvm_extern.h>