Untangled the vm.h include file spaghetti.

This commit is contained in:
David Greenman 1995-12-07 12:48:31 +00:00
parent 40b0c0d936
commit efeaf95a41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12662
163 changed files with 742 additions and 241 deletions

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_disasm.c,v 1.10 1995/10/29 15:29:48 phk Exp $
* $Id: db_disasm.c,v 1.11 1995/10/30 17:13:25 bde Exp $
*/
/*
@ -32,6 +32,8 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_access.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_interface.c,v 1.14 1995/05/30 07:59:22 rgrimes Exp $
* $Id: db_interface.c,v 1.15 1995/11/18 06:49:35 bde Exp $
*/
/*
@ -40,10 +40,11 @@
#include <machine/cons.h> /* XXX: import cons_unavail */
#include <ddb/ddb.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <ddb/ddb.h>
#include <setjmp.h>
int db_active = 0;

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)genassym.c 5.11 (Berkeley) 5/10/91
* $Id: genassym.c,v 1.28 1995/08/17 11:29:55 davidg Exp $
* $Id: genassym.c,v 1.29 1995/12/03 18:35:17 bde Exp $
*/
#include <stdio.h>
@ -57,7 +57,12 @@
#include <machine/reg.h>
#include <machine/bootinfo.h>
#include <sys/syscall.h>
#include <sys/vmmeter.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/user.h>
#include <net/if.h>
#include <netinet/in.h>

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.153 1995/11/29 19:57:01 wollman Exp $
* $Id: machdep.c,v 1.154 1995/12/04 16:47:40 phk Exp $
*/
#include "npx.h"
@ -47,7 +47,6 @@
#include <sys/signalvar.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/buf.h>
#include <sys/reboot.h>
#include <sys/conf.h>
@ -62,6 +61,7 @@
#include <sys/tty.h>
#include <sys/sysctl.h>
#include <sys/devconf.h>
#include <sys/vmmeter.h>
#ifdef SYSVSHM
#include <sys/shm.h>
@ -76,10 +76,17 @@
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/vm_kern.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
#include <vm/vm_pager.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <sys/exec.h>
#include <sys/vnode.h>

View File

@ -38,7 +38,7 @@
*
* from: Utah $Hdr: mem.c 1.13 89/10/08$
* from: @(#)mem.c 7.2 (Berkeley) 5/9/91
* $Id: mem.c,v 1.20 1995/11/29 10:47:18 julian Exp $
* $Id: mem.c,v 1.21 1995/11/29 14:39:26 julian Exp $
*/
/*
@ -62,6 +62,7 @@
#include <vm/lock.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#include <vm/vm_extern.h>
#ifdef JREMOD
#include <sys/kernel.h>

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.65 1995/11/20 12:10:01 phk Exp $
* $Id: pmap.c,v 1.66 1995/12/03 18:35:28 bde Exp $
*/
/*
@ -89,13 +89,20 @@
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/user.h>
#include <sys/msgbuf.h>
#include <sys/queue.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>
#include <vm/vm_extern.h>
#include <machine/pcb.h>
#include <machine/cputypes.h>
#include <machine/md_var.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
* $Id$
* $Id: sys_machdep.c,v 1.11 1995/11/12 07:10:47 bde Exp $
*
*/
@ -39,6 +39,15 @@
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <machine/cpu.h>

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.61 1995/10/09 04:36:01 bde Exp $
* $Id: trap.c,v 1.62 1995/10/28 15:38:32 phk Exp $
*/
/*
@ -45,20 +45,27 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/acct.h>
#include <sys/kernel.h>
#include <sys/syscall.h>
#include <sys/sysent.h>
#include <sys/queue.h>
#include <sys/vmmeter.h>
#ifdef KTRACE
#include <sys/ktrace.h>
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_kern.h>
#include <vm/vm_map.h>
#include <vm/vm_page.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <machine/cpu.h>
#include <machine/md_var.h>

View File

@ -38,7 +38,7 @@
*
* 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.44 1995/11/18 06:54:11 bde Exp $
* $Id: vm_machdep.c,v 1.45 1995/11/20 12:10:09 phk Exp $
*/
#include "npx.h"
@ -48,15 +48,22 @@
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/vnode.h>
#include <sys/user.h>
#include <sys/vmmeter.h>
#include <machine/clock.h>
#include <machine/cpu.h>
#include <machine/md_var.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <i386/isa/isa.h>

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.56 1995/11/20 12:41:44 phk Exp $
* $Id: isa.c,v 1.57 1995/11/20 13:24:18 bde Exp $
*/
/*
@ -61,6 +61,8 @@
#include <sys/rlist.h>
#include <machine/segments.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <machine/spl.h>
#include <machine/cpu.h>
#include <i386/isa/isa_device.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_access.c,v 1.8 1995/11/24 14:13:29 bde Exp $
* $Id: db_access.c,v 1.9 1995/11/29 10:25:03 phk Exp $
*/
/*
@ -33,6 +33,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_access.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_aout.c,v 1.12 1995/11/24 14:13:30 bde Exp $
* $Id: db_aout.c,v 1.13 1995/11/29 10:25:06 phk Exp $
*/
/*
@ -37,6 +37,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <machine/bootinfo.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_break.c,v 1.7 1995/11/24 14:13:31 bde Exp $
* $Id: db_break.c,v 1.8 1995/11/29 10:25:09 phk Exp $
*/
/*
@ -36,6 +36,8 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_break.h,v 1.4 1995/11/24 13:52:57 bde Exp $
* $Id: db_break.h,v 1.5 1995/11/29 10:25:11 phk Exp $
*/
/*
@ -33,7 +33,6 @@
#ifndef _DDB_DB_BREAK_H_
#define _DDB_DB_BREAK_H_
#include <vm/vm_map.h>
#include <machine/db_machdep.h>
/*

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_command.c,v 1.15 1995/11/24 14:13:32 bde Exp $
* $Id: db_command.c,v 1.16 1995/11/29 10:25:14 phk Exp $
*/
/*
@ -37,6 +37,9 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#include <ddb/ddb.h>
#include <ddb/db_command.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_examine.c,v 1.9 1995/11/24 14:13:33 bde Exp $
* $Id: db_examine.c,v 1.10 1995/11/29 10:25:17 phk Exp $
*/
/*
@ -33,6 +33,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_expr.c,v 1.6 1995/11/24 14:13:34 bde Exp $
* $Id: db_expr.c,v 1.7 1995/11/29 10:25:18 phk Exp $
*/
/*
@ -33,6 +33,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>
#include <ddb/db_access.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_input.c,v 1.8 1995/11/24 14:13:36 bde Exp $
* $Id: db_input.c,v 1.9 1995/11/29 10:25:21 phk Exp $
*/
/*
@ -34,6 +34,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_output.h>
#include <machine/cons.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_lex.c,v 1.7 1995/11/24 14:13:37 bde Exp $
* $Id: db_lex.c,v 1.8 1995/11/29 10:25:23 phk Exp $
*/
/*
@ -35,6 +35,7 @@
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_output.c,v 1.12 1995/11/24 14:13:38 bde Exp $
* $Id: db_output.c,v 1.13 1995/11/29 10:25:29 phk Exp $
*/
/*
@ -37,6 +37,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <vm/vm_param.h>
#include <machine/stdarg.h>
#include <ddb/ddb.h>
#include <ddb/db_output.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_print.c,v 1.7 1995/05/30 07:57:06 rgrimes Exp $
* $Id: db_print.c,v 1.8 1995/11/24 14:13:39 bde Exp $
*/
/*
@ -37,6 +37,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>

View File

@ -30,11 +30,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: db_ps.c,v 1.7 1995/08/20 05:25:11 davidg Exp $
* $Id: db_ps.c,v 1.8 1995/08/27 02:40:39 bde Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <machine/cons.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_run.c,v 1.6 1995/11/24 14:13:40 bde Exp $
* $Id: db_run.c,v 1.7 1995/11/29 10:25:31 phk Exp $
*/
/*
@ -37,6 +37,8 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_sym.c,v 1.10 1995/11/24 14:13:41 bde Exp $
* $Id: db_sym.c,v 1.11 1995/11/29 10:25:35 phk Exp $
*/
/*
@ -33,6 +33,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_sym.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_trap.c,v 1.6 1994/10/02 19:36:21 phk Exp $
* $Id: db_trap.c,v 1.7 1995/05/30 07:57:14 rgrimes Exp $
*/
/*
@ -37,6 +37,8 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_command.h>
#include <ddb/db_break.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_variables.c,v 1.8 1995/11/24 14:13:41 bde Exp $
* $Id: db_variables.c,v 1.9 1995/11/29 10:25:41 phk Exp $
*/
/*
@ -34,6 +34,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_watch.c,v 1.7 1995/11/24 14:13:42 bde Exp $
* $Id: db_watch.c,v 1.8 1995/11/29 10:25:44 phk Exp $
*/
/*
@ -34,9 +34,14 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/lock.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <ddb/ddb.h>
#include <vm/vm_map.h>
#include <ddb/db_lex.h>
#include <ddb/db_watch.h>
#include <ddb/db_access.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_watch.h,v 1.5 1995/11/24 13:53:03 bde Exp $
* $Id: db_watch.h,v 1.6 1995/11/29 10:25:47 phk Exp $
*/
/*
@ -34,7 +34,6 @@
#ifndef _DDB_DB_WATCH_H_
#define _DDB_DB_WATCH_H_
#include <vm/vm_map.h>
#include <machine/db_machdep.h>
/*

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_write_cmd.c,v 1.4 1994/08/13 03:49:26 wollman Exp $
* $Id: db_write_cmd.c,v 1.5 1995/05/30 07:57:23 rgrimes Exp $
*/
/*
@ -34,6 +34,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>

View File

@ -27,7 +27,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: ddb.h,v 1.7 1995/11/24 13:53:05 bde Exp $
* $Id: ddb.h,v 1.8 1995/11/29 10:25:50 phk Exp $
*/
/*
@ -38,7 +38,6 @@
#define _DDB_DDB_H_
#include <machine/db_machdep.h> /* type definitions */
#include <vm/vm.h>
typedef void db_cmdfcn_t __P((db_expr_t addr, boolean_t have_addr,
db_expr_t count, char *modif));

View File

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_de.c,v 1.37 1995/11/17 12:11:22 davidg Exp $
* $Id: if_de.c,v 1.38 1995/11/29 11:19:02 asami Exp $
*
*/
@ -82,8 +82,9 @@
#endif
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <vm/vm_kern.h>
#if defined(__FreeBSD__)
#include <pci.h>

View File

@ -1,5 +1,5 @@
/*-
* dgb.c $Id: dgb.c,v 1.7 1995/11/29 14:39:06 julian Exp $
* dgb.c $Id: dgb.c,v 1.8 1995/12/06 23:52:08 bde Exp $
*
* Digiboard driver.
*
@ -44,6 +44,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa.h>
#include <i386/isa/isa_device.h>

View File

@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_fxp.c,v 1.3 1995/12/05 02:01:51 davidg Exp $
* $Id: if_fxp.c,v 1.4 1995/12/05 11:49:49 davidg Exp $
*/
/*
@ -76,7 +76,7 @@
#include <vm/vm.h> /* for vtophys */
#include <vm/vm_param.h> /* for vtophys */
#include <machine/pmap.h> /* for vtophys */
#include <vm/pmap.h> /* for vtophys */
#include <machine/clock.h> /* for DELAY */
#include <pci/pcivar.h>

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: pci.c,v 1.34 1995/11/21 13:59:56 bde Exp $
** $Id: pci.c,v 1.35 1995/12/06 15:52:23 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@ -59,8 +59,8 @@
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <machine/pmap.h>
#include <sys/devconf.h>
#include <i386/isa/isa_device.h> /* XXX inthand2_t */

View File

@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
* $Id: si.c,v 1.20 1995/12/04 17:33:45 peter Exp $
* $Id: si.c,v 1.21 1995/12/06 23:50:27 bde Exp $
*/
#ifndef lint
@ -57,6 +57,8 @@ static char si_copyright1[] = "@(#) (C) Specialix International, 1990,1992",
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/icu.h>
#include <i386/isa/isa.h>

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.132 1995/11/30 03:29:31 ache Exp $
* $Id: syscons.c,v 1.133 1995/12/06 23:50:36 bde Exp $
*/
#include "sc.h"
@ -56,6 +56,8 @@
#include <machine/random.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa.h>
#include <i386/isa/isa_device.h>

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_denode.c,v 1.13 1995/08/02 12:59:48 dfr Exp $ */
/* $Id: msdosfs_denode.c,v 1.14 1995/12/03 16:41:53 bde Exp $ */
/* $NetBSD: msdosfs_denode.c,v 1.9 1994/08/21 18:44:00 ws Exp $ */
/*-
@ -59,6 +59,8 @@
#include <sys/kernel.h> /* defines "time" */
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#include <msdosfs/bpb.h>
#include <msdosfs/msdosfsmount.h>

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_vnops.c,v 1.28 1995/11/13 18:47:40 bde Exp $ */
/* $Id: msdosfs_vnops.c,v 1.29 1995/12/03 16:42:02 bde Exp $ */
/* $NetBSD: msdosfs_vnops.c,v 1.20 1994/08/21 18:44:13 ws Exp $ */
/*-
@ -65,6 +65,8 @@
#include <sys/signalvar.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#include <msdosfs/bpb.h>
#include <msdosfs/direntry.h>

View File

@ -36,7 +36,7 @@
*
* @(#)procfs_ctl.c 8.3 (Berkeley) 1/21/94
*
* $Id: procfs_ctl.c,v 1.6 1995/07/16 10:12:50 bde Exp $
* $Id: procfs_ctl.c,v 1.7 1995/12/03 14:54:34 bde Exp $
*/
#include <sys/param.h>
@ -53,6 +53,8 @@
#include <sys/signalvar.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#include <miscfs/procfs/procfs.h>

View File

@ -37,7 +37,7 @@
*
* @(#)procfs_mem.c 8.4 (Berkeley) 1/21/94
*
* $Id: procfs_mem.c,v 1.10 1995/10/23 04:28:59 dyson Exp $
* $Id: procfs_mem.c,v 1.11 1995/12/03 14:54:35 bde Exp $
*/
/*
@ -53,8 +53,15 @@
#include <sys/vnode.h>
#include <miscfs/procfs/procfs.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_extern.h>
static int procfs_rwmem __P((struct proc *p, struct uio *uio));

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.6 (Berkeley) 4/9/94
* $Id: spec_vnops.c,v 1.19 1995/11/29 12:38:49 julian Exp $
* $Id: spec_vnops.c,v 1.20 1995/12/05 21:51:45 bde Exp $
*/
#include <sys/param.h>
@ -48,8 +48,12 @@
#include <sys/ioctl.h>
#include <sys/file.h>
#include <sys/disklabel.h>
#include <sys/vmmeter.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_pager.h>
#include <vm/vnode_pager.h>

View File

@ -1,5 +1,5 @@
/*-
* dgb.c $Id: dgb.c,v 1.7 1995/11/29 14:39:06 julian Exp $
* dgb.c $Id: dgb.c,v 1.8 1995/12/06 23:52:08 bde Exp $
*
* Digiboard driver.
*
@ -44,6 +44,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa.h>
#include <i386/isa/isa_device.h>

View File

@ -13,7 +13,7 @@
*
* Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
*
* $Id: apm.c,v 1.17 1995/11/29 10:47:13 julian Exp $
* $Id: apm.c,v 1.18 1995/11/29 14:39:17 julian Exp $
*/
#include "apm.h"
@ -43,6 +43,8 @@
#include <machine/segments.h>
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <sys/syslog.h>
#include "apm_setup.h"
#endif /* __FreeBSD__ */

View File

@ -13,7 +13,7 @@
*
* Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
*
* $Id: apm.c,v 1.17 1995/11/29 10:47:13 julian Exp $
* $Id: apm.c,v 1.18 1995/11/29 14:39:17 julian Exp $
*/
#include "apm.h"
@ -43,6 +43,8 @@
#include <machine/segments.h>
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <sys/syslog.h>
#include "apm_setup.h"
#endif /* __FreeBSD__ */

View File

@ -14,7 +14,7 @@
*
* commenced: Sun Sep 27 18:14:01 PDT 1992
*
* $Id: aha1742.c,v 1.41 1995/11/29 10:12:28 phk Exp $
* $Id: aha1742.c,v 1.42 1995/12/06 23:52:35 bde Exp $
*/
#include <sys/types.h>
@ -32,6 +32,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/eisa/eisaconf.h>
#else

View File

@ -42,7 +42,7 @@
* SUCH DAMAGE.
*
* from: @(#)conf.c 5.8 (Berkeley) 5/12/91
* $Id: conf.c,v 1.110 1995/12/05 20:33:57 bde Exp $
* $Id: conf.c,v 1.111 1995/12/06 22:31:54 bde Exp $
*/
#include <sys/param.h>
@ -55,6 +55,8 @@
#include <sys/conf.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#ifdef JREMOD

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_disasm.c,v 1.10 1995/10/29 15:29:48 phk Exp $
* $Id: db_disasm.c,v 1.11 1995/10/30 17:13:25 bde Exp $
*/
/*
@ -32,6 +32,8 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <ddb/ddb.h>
#include <ddb/db_access.h>

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_interface.c,v 1.14 1995/05/30 07:59:22 rgrimes Exp $
* $Id: db_interface.c,v 1.15 1995/11/18 06:49:35 bde Exp $
*/
/*
@ -40,10 +40,11 @@
#include <machine/cons.h> /* XXX: import cons_unavail */
#include <ddb/ddb.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <ddb/ddb.h>
#include <setjmp.h>
int db_active = 0;

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)genassym.c 5.11 (Berkeley) 5/10/91
* $Id: genassym.c,v 1.28 1995/08/17 11:29:55 davidg Exp $
* $Id: genassym.c,v 1.29 1995/12/03 18:35:17 bde Exp $
*/
#include <stdio.h>
@ -57,7 +57,12 @@
#include <machine/reg.h>
#include <machine/bootinfo.h>
#include <sys/syscall.h>
#include <sys/vmmeter.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/user.h>
#include <net/if.h>
#include <netinet/in.h>

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.153 1995/11/29 19:57:01 wollman Exp $
* $Id: machdep.c,v 1.154 1995/12/04 16:47:40 phk Exp $
*/
#include "npx.h"
@ -47,7 +47,6 @@
#include <sys/signalvar.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/buf.h>
#include <sys/reboot.h>
#include <sys/conf.h>
@ -62,6 +61,7 @@
#include <sys/tty.h>
#include <sys/sysctl.h>
#include <sys/devconf.h>
#include <sys/vmmeter.h>
#ifdef SYSVSHM
#include <sys/shm.h>
@ -76,10 +76,17 @@
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/vm_kern.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
#include <vm/vm_pager.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <sys/exec.h>
#include <sys/vnode.h>

View File

@ -6,7 +6,7 @@
* [expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj]
*
* from: 386BSD 0.1
* $Id: math_emulate.c,v 1.13 1995/06/14 05:06:51 bde Exp $
* $Id: math_emulate.c,v 1.14 1995/10/29 15:29:56 phk Exp $
*/
/*
@ -43,11 +43,18 @@
#include <machine/reg.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/acct.h>
#include <sys/kernel.h>
#include <sys/signal.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/user.h>
#define __ALIGNED_TEMP_REAL 1
#include "math_emu.h"

View File

@ -38,7 +38,7 @@
*
* from: Utah $Hdr: mem.c 1.13 89/10/08$
* from: @(#)mem.c 7.2 (Berkeley) 5/9/91
* $Id: mem.c,v 1.20 1995/11/29 10:47:18 julian Exp $
* $Id: mem.c,v 1.21 1995/11/29 14:39:26 julian Exp $
*/
/*
@ -62,6 +62,7 @@
#include <vm/lock.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#include <vm/vm_extern.h>
#ifdef JREMOD
#include <sys/kernel.h>

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.65 1995/11/20 12:10:01 phk Exp $
* $Id: pmap.c,v 1.66 1995/12/03 18:35:28 bde Exp $
*/
/*
@ -89,13 +89,20 @@
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/user.h>
#include <sys/msgbuf.h>
#include <sys/queue.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>
#include <vm/vm_extern.h>
#include <machine/pcb.h>
#include <machine/cputypes.h>
#include <machine/md_var.h>

View File

@ -37,7 +37,7 @@
* @(#)procfs_machdep.c 8.3 (Berkeley) 1/27/94
*
* From:
* $Id: procfs_machdep.c,v 1.3 1995/01/14 13:20:09 bde Exp $
* $Id: procfs_machdep.c,v 1.4 1995/03/16 18:11:29 bde Exp $
*/
/*
@ -72,7 +72,6 @@
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/ptrace.h>
#include <sys/user.h>
#include <sys/vnode.h>
#include <machine/psl.h>
#include <machine/reg.h>
@ -80,6 +79,15 @@
#include <machine/md_var.h>
#include <miscfs/procfs/procfs.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/user.h>
int
procfs_read_regs(p, regs)
struct proc *p;

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
* $Id$
* $Id: sys_machdep.c,v 1.11 1995/11/12 07:10:47 bde Exp $
*
*/
@ -39,6 +39,15 @@
#include <sys/systm.h>
#include <sys/sysproto.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <machine/cpu.h>

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.61 1995/10/09 04:36:01 bde Exp $
* $Id: trap.c,v 1.62 1995/10/28 15:38:32 phk Exp $
*/
/*
@ -45,20 +45,27 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/acct.h>
#include <sys/kernel.h>
#include <sys/syscall.h>
#include <sys/sysent.h>
#include <sys/queue.h>
#include <sys/vmmeter.h>
#ifdef KTRACE
#include <sys/ktrace.h>
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_kern.h>
#include <vm/vm_map.h>
#include <vm/vm_page.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <machine/cpu.h>
#include <machine/md_var.h>

View File

@ -38,7 +38,7 @@
*
* 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.44 1995/11/18 06:54:11 bde Exp $
* $Id: vm_machdep.c,v 1.45 1995/11/20 12:10:09 phk Exp $
*/
#include "npx.h"
@ -48,15 +48,22 @@
#include <sys/malloc.h>
#include <sys/buf.h>
#include <sys/vnode.h>
#include <sys/user.h>
#include <sys/vmmeter.h>
#include <machine/clock.h>
#include <machine/cpu.h>
#include <machine/md_var.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <i386/isa/isa.h>

View File

@ -27,12 +27,13 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: ibcs2_isc.c,v 1.4 1995/05/30 07:59:58 rgrimes Exp $
* $Id: ibcs2_isc.c,v 1.5 1995/10/10 07:58:52 swallace Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysent.h>
#include <sys/proc.h>
#include <machine/cpu.h>
#include <machine/psl.h>

View File

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id$
* $Id: ibcs2_other.c,v 1.2 1995/10/16 05:52:55 swallace Exp $
*/
/*
@ -30,6 +30,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/sysproto.h>
#include <sys/kernel.h>

View File

@ -41,6 +41,7 @@
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <machine/vmparam.h>
#include <sys/exec.h>
#include <sys/cdefs.h>

View File

@ -26,7 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: imgact_coff.c,v 1.9 1995/10/10 17:33:19 swallace Exp $
* $Id: imgact_coff.c,v 1.10 1995/11/06 12:52:14 davidg Exp $
*/
#include <sys/param.h>
@ -40,8 +40,15 @@
#include <sys/malloc.h>
#include <sys/mount.h>
#include <sys/sysent.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
#include <i386/ibcs2/coff.h>
#include <i386/ibcs2/ibcs2_util.h>

View File

@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: aha1542.c,v 1.50 1995/11/04 17:07:00 bde Exp $
* $Id: aha1542.c,v 1.51 1995/12/06 23:50:45 bde Exp $
*/
/*
@ -35,6 +35,8 @@
#include <machine/cpu.h> /* XXX for bootverbose: a funny place */
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa_device.h>
#endif /* KERNEL */

View File

@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: bt742a.c,v 1.44 1995/12/06 23:50:06 bde Exp $
* $Id: bt742a.c,v 1.45 1995/12/07 09:13:48 peter Exp $
*/
/*
@ -50,6 +50,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa_device.h>
#include <scsi/scsi_all.h>

View File

@ -30,6 +30,8 @@
# include <sys/socket.h>
# include <net/if.h>
# include <vm/vm.h>
# include <vm/vm_param.h>
# include <vm/pmap.h>
# ifndef __FreeBSD__
# include <machine/inline.h>
# endif

View File

@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: if_le.c,v 1.23 1995/11/04 17:07:33 bde Exp $
* $Id: if_le.c,v 1.24 1995/12/05 02:01:13 davidg Exp $
*/
/*
@ -82,6 +82,8 @@
#include <i386/isa/icu.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#if NBPFILTER > 0
#include <net/bpf.h>

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.56 1995/11/20 12:41:44 phk Exp $
* $Id: isa.c,v 1.57 1995/11/20 13:24:18 bde Exp $
*/
/*
@ -61,6 +61,8 @@
#include <sys/rlist.h>
#include <machine/segments.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <machine/spl.h>
#include <machine/cpu.h>
#include <i386/isa/isa_device.h>

View File

@ -46,7 +46,7 @@
* SUCH DAMAGE.
*
* from: unknown origin, 386BSD 0.1
* $Id: lpt.c,v 1.43 1995/12/02 20:33:40 phk Exp $
* $Id: lpt.c,v 1.44 1995/12/06 23:50:14 bde Exp $
*/
/*
@ -118,6 +118,8 @@
#include <machine/lpt.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa.h>
#include <i386/isa/isa_device.h>

View File

@ -169,6 +169,9 @@
#include <machine/clock.h>
#include <machine/md_var.h>
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#else /* PCVT_FREEBSD >= 200 */
#include "machine/pc/display.h"
#endif /* PCVT_FREEBSD >= 200 */

View File

@ -60,7 +60,7 @@
* that category, with the possible exception of scanners and
* some of the older MO drives.
*
* $Id: seagate.c,v 1.12 1995/11/04 17:07:44 bde Exp $
* $Id: seagate.c,v 1.13 1995/12/06 23:50:20 bde Exp $
*/
/*
@ -126,6 +126,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa_device.h>

View File

@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
* $Id: si.c,v 1.20 1995/12/04 17:33:45 peter Exp $
* $Id: si.c,v 1.21 1995/12/06 23:50:27 bde Exp $
*/
#ifndef lint
@ -57,6 +57,8 @@ static char si_copyright1[] = "@(#) (C) Specialix International, 1990,1992",
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/icu.h>
#include <i386/isa/isa.h>

View File

@ -32,6 +32,9 @@
#include <sys/buf.h>
#include <i386/isa/isa_device.h>
#include <machine/cpufunc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
/* These few lines are used by 386BSD (only??). */

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.132 1995/11/30 03:29:31 ache Exp $
* $Id: syscons.c,v 1.133 1995/12/06 23:50:36 bde Exp $
*/
#include "sc.h"
@ -56,6 +56,8 @@
#include <machine/random.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa.h>
#include <i386/isa/isa_device.h>

View File

@ -22,7 +22,7 @@
* today: Fri Jun 2 17:21:03 EST 1994
* added 24F support ++sg
*
* $Id: ultra14f.c,v 1.39 1995/11/14 09:53:17 phk Exp $
* $Id: ultra14f.c,v 1.40 1995/12/06 23:50:39 bde Exp $
*/
#include <sys/types.h>
@ -42,6 +42,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa_device.h>
#endif /*KERNEL */

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)wd.c 7.2 (Berkeley) 5/9/91
* $Id: wd.c,v 1.94 1995/11/29 10:48:01 julian Exp $
* $Id: wd.c,v 1.95 1995/11/29 14:40:08 julian Exp $
*/
/* TODO:
@ -88,6 +88,9 @@
#include <sys/syslog.h>
#include <sys/dkstat.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#ifdef ATAPI
#include <i386/isa/atapi.h>

View File

@ -68,6 +68,8 @@
#include <machine/cpu.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa_device.h>

View File

@ -24,7 +24,7 @@
*
* commenced: Sun Sep 27 18:14:01 PDT 1992
*
* $Id: aic7xxx.c,v 1.47 1995/11/07 07:01:05 gibbs Exp $
* $Id: aic7xxx.c,v 1.48 1995/12/06 23:51:37 bde Exp $
*/
/*
* TODO:
@ -45,6 +45,8 @@
#include <machine/clock.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/scsi/aic7xxx.h>
#include <i386/scsi/93cx6.h>

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.132 1995/11/30 03:29:31 ache Exp $
* $Id: syscons.c,v 1.133 1995/12/06 23:50:36 bde Exp $
*/
#include "sc.h"
@ -56,6 +56,8 @@
#include <machine/random.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <i386/isa/isa.h>
#include <i386/isa/isa_device.h>

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: imgact_aout.c,v 1.17 1995/11/06 12:52:29 davidg Exp $
* $Id: imgact_aout.c,v 1.18 1995/12/02 16:31:59 bde Exp $
*/
#include <sys/param.h>
@ -42,6 +42,12 @@
#include <sys/sysent.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
static int exec_aout_imgact __P((struct image_params *imgp));

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: imgact_gzip.c,v 1.15 1995/11/06 12:52:30 davidg Exp $
* $Id: imgact_gzip.c,v 1.16 1995/12/02 16:32:01 bde Exp $
*
* This module handles execution of a.out files which have been run through
* "gzip". This saves diskspace, but wastes cpu-cycles and VM.
@ -33,7 +33,13 @@
#include <sys/inflate.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
struct imgact_gzip {
struct image_params *ip;

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* @(#)init_main.c 8.9 (Berkeley) 1/21/94
* $Id: init_main.c,v 1.33 1995/12/02 17:10:29 bde Exp $
* $Id: init_main.c,v 1.34 1995/12/04 16:48:18 phk Exp $
*/
#include <sys/param.h>
@ -66,15 +66,21 @@
#include <sys/reboot.h>
#include <sys/sem.h>
#include <sys/shm.h>
#include <sys/user.h>
#include <sys/sysproto.h>
#include <sys/vmmeter.h>
#include <ufs/ufs/quota.h>
#include <machine/cpu.h>
#include <vm/vm.h>
#include <vm/vm_pageout.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
extern struct linker_set sysinit_set; /* XXX */

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.21 1995/12/04 16:48:20 phk Exp $
* $Id: kern_clock.c,v 1.22 1995/12/06 13:27:37 phk Exp $
*/
/* Portions of this software are covered by the following: */
@ -66,6 +66,11 @@
#include <sys/signalvar.h>
#include <sys/timex.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_descrip.c 8.6 (Berkeley) 4/19/94
* $Id: kern_descrip.c,v 1.18 1995/12/04 16:48:24 phk Exp $
* $Id: kern_descrip.c,v 1.19 1995/12/05 21:51:28 bde Exp $
*/
#include <sys/param.h>
@ -59,6 +59,8 @@
#include <sys/resourcevar.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#ifdef JREMOD
#include <sys/conf.h>

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: kern_exec.c,v 1.26 1995/11/12 06:42:53 bde Exp $
* $Id: kern_exec.c,v 1.27 1995/11/13 10:45:22 davidg Exp $
*/
#include <sys/param.h>
@ -49,7 +49,13 @@
#include <sys/shm.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
#include <machine/reg.h>

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_exit.c 8.7 (Berkeley) 2/12/94
* $Id: kern_exit.c,v 1.19 1995/10/23 19:44:38 swallace Exp $
* $Id: kern_exit.c,v 1.20 1995/11/11 05:49:22 bde Exp $
*/
#include <sys/param.h>
@ -68,6 +68,11 @@
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
static int wait1 __P((struct proc *, struct wait_args *, int [], int));

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_fork.c 8.6 (Berkeley) 4/8/94
* $Id: kern_fork.c,v 1.13 1995/10/08 00:06:05 swallace Exp $
* $Id: kern_fork.c,v 1.14 1995/11/12 06:42:54 bde Exp $
*/
#include <sys/param.h>
@ -53,6 +53,8 @@
#include <sys/ktrace.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
static int fork1(struct proc *, int, int *);

View File

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: kern_lkm.c,v 1.21 1995/11/29 14:40:34 julian Exp $
* $Id: kern_lkm.c,v 1.22 1995/11/29 17:45:59 wollman Exp $
*/
#include <sys/param.h>
@ -53,6 +53,7 @@
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
#ifdef JREMOD
#ifdef DEVFS

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)kern_malloc.c 8.3 (Berkeley) 1/4/94
* $Id: kern_malloc.c,v 1.14 1995/09/09 18:10:03 davidg Exp $
* $Id: kern_malloc.c,v 1.15 1995/12/02 17:10:34 bde Exp $
*/
#include <sys/param.h>
@ -39,9 +39,12 @@
#include <sys/proc.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/vmmeter.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
static void kmeminit __P((void *));
SYSINIT(kmem, SI_SUB_KMEM, SI_ORDER_FIRST, kmeminit, NULL)

View File

@ -16,7 +16,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
* $Id: kern_physio.c,v 1.13 1995/11/28 02:40:38 peter Exp $
* $Id: kern_physio.c,v 1.14 1995/12/02 18:58:48 bde Exp $
*/
#include <sys/param.h>
@ -25,6 +25,8 @@
#include <sys/conf.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
static void physwakeup __P((struct buf *bp));

View File

@ -31,14 +31,13 @@
* SUCH DAMAGE.
*
* @(#)kern_proc.c 8.4 (Berkeley) 1/4/94
* $Id: kern_proc.c,v 1.11 1995/11/14 09:16:27 phk Exp $
* $Id: kern_proc.c,v 1.12 1995/12/02 18:58:49 bde Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/sysctl.h>
#include <sys/user.h>
#include <sys/proc.h>
#include <sys/buf.h>
#include <sys/acct.h>
@ -51,6 +50,13 @@
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <sys/signalvar.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/user.h>
struct prochd qs[NQS]; /* as good a place as any... */
struct prochd rtqs[NQS]; /* Space for REALTIME queues too */

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_resource.c 8.5 (Berkeley) 1/21/94
* $Id: kern_resource.c,v 1.15 1995/11/11 01:48:17 bde Exp $
* $Id: kern_resource.c,v 1.16 1995/11/12 06:42:59 bde Exp $
*/
#include <sys/param.h>
@ -49,6 +49,11 @@
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
int donice __P((struct proc *, struct proc *, int));
int dosetrlimit __P((struct proc *, u_int, struct rlimit *));

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_sig.c 8.7 (Berkeley) 4/18/94
* $Id: kern_sig.c,v 1.13 1995/11/12 06:43:00 bde Exp $
* $Id: kern_sig.c,v 1.14 1995/11/18 10:01:38 bde Exp $
*/
#define SIGPROP /* include signal properties table */
@ -62,6 +62,11 @@
#include <machine/cpu.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/user.h> /* for coredump */
extern int killpg1 __P((struct proc *cp, int signum, int pgid, int all));

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_synch.c 8.6 (Berkeley) 1/21/94
* $Id: kern_synch.c,v 1.14 1995/12/02 17:10:35 bde Exp $
* $Id: kern_synch.c,v 1.15 1995/12/02 18:58:40 bde Exp $
*/
#include <sys/param.h>
@ -47,7 +47,10 @@
#include <sys/signalvar.h>
#include <sys/resourcevar.h>
#include <sys/signalvar.h>
#include <sys/vmmeter.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
#ifdef KTRACE
#include <sys/ktrace.h>
#endif

View File

@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
* $Id: kern_sysctl.c,v 1.54 1995/12/05 21:51:33 bde Exp $
* $Id: kern_sysctl.c,v 1.55 1995/12/06 13:27:38 phk Exp $
*/
#include <sys/param.h>
@ -49,8 +49,11 @@
#include <sys/conf.h>
#include <sys/sysctl.h>
#include <sys/malloc.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_extern.h>
/*
* Locking and stats

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.21 1995/12/04 16:48:20 phk Exp $
* $Id: kern_clock.c,v 1.22 1995/12/06 13:27:37 phk Exp $
*/
/* Portions of this software are covered by the following: */
@ -66,6 +66,11 @@
#include <sys/signalvar.h>
#include <sys/timex.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.21 1995/12/04 16:48:20 phk Exp $
* $Id: kern_clock.c,v 1.22 1995/12/06 13:27:37 phk Exp $
*/
/* Portions of this software are covered by the following: */
@ -66,6 +66,11 @@
#include <sys/signalvar.h>
#include <sys/timex.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>

View File

@ -54,7 +54,7 @@
* functioning of this software, nor does the author assume any responsibility
* for damages incurred with its use.
*
* $Id: subr_rlist.c,v 1.11 1995/10/21 08:38:13 davidg Exp $
* $Id: subr_rlist.c,v 1.12 1995/12/02 18:58:53 bde Exp $
*/
#include <sys/param.h>
@ -63,7 +63,9 @@
#include <sys/rlist.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
/*
* Resource lists.

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)trap.c 7.4 (Berkeley) 5/13/91
* $Id: trap.c,v 1.61 1995/10/09 04:36:01 bde Exp $
* $Id: trap.c,v 1.62 1995/10/28 15:38:32 phk Exp $
*/
/*
@ -45,20 +45,27 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/acct.h>
#include <sys/kernel.h>
#include <sys/syscall.h>
#include <sys/sysent.h>
#include <sys/queue.h>
#include <sys/vmmeter.h>
#ifdef KTRACE
#include <sys/ktrace.h>
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_kern.h>
#include <vm/vm_map.h>
#include <vm/vm_page.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <machine/cpu.h>
#include <machine/md_var.h>

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: sys_process.c,v 1.15 1995/11/12 06:43:06 bde Exp $
* $Id: sys_process.c,v 1.16 1995/11/14 09:05:34 phk Exp $
*/
#include <sys/param.h>
@ -38,12 +38,20 @@
#include <sys/vnode.h>
#include <sys/ptrace.h>
#include <sys/errno.h>
#include <sys/queue.h>
#include <machine/reg.h>
#include <machine/psl.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
#include <sys/user.h>

View File

@ -1,4 +1,4 @@
/* $Id: sysv_shm.c,v 1.11 1995/11/30 07:58:50 julian Exp $ */
/* $Id: sysv_shm.c,v 1.12 1995/12/04 02:26:53 jkh Exp $ */
/* $NetBSD: sysv_shm.c,v 1.23 1994/07/04 23:25:12 glass Exp $ */
/*
@ -43,8 +43,13 @@
#include <sys/sysent.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <vm/vm_extern.h>
struct shmat_args;
extern int shmat __P((struct proc *p, struct shmat_args *uap, int *retval));

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)tty.c 8.8 (Berkeley) 1/21/94
* $Id: tty.c,v 1.70 1995/09/10 11:48:13 bde Exp $
* $Id: tty.c,v 1.71 1995/10/31 19:27:50 bde Exp $
*/
/*-
@ -91,6 +91,11 @@
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/lock.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
static int proc_compare __P((struct proc *p1, struct proc *p2));
static int ttnread __P((struct tty *tp));

Some files were not shown because too many files have changed in this diff Show More