remove/move more mach vm header files:

<vm/pglist.h> -> <uvm/uvm_pglist.h>
	<vm/vm_inherit.h> -> <uvm/uvm_inherit.h>
	<vm/vm_kern.h> -> into <uvm/uvm_extern.h>
	<vm/vm_object.h> -> nothing
	<vm/vm_pager.h> -> into <uvm/uvm_pager.h>

also includes a bunch of <vm/vm_page.h> include removals (due to redudancy
with <vm/vm.h>), and a scattering of other similar headers.
This commit is contained in:
mrg 2000-06-26 14:20:25 +00:00
parent b04531906a
commit 2f159a1bac
264 changed files with 471 additions and 846 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.234 2000/06/25 13:49:36 mrg Exp $
# $NetBSD: mi,v 1.235 2000/06/26 14:20:25 mrg Exp $
./sys comp-sysutil-root
./usr/bin/addr2line comp-miscutil-bin
./usr/bin/ar comp-util-bin
@ -1111,6 +1111,7 @@
./usr/include/uvm/uvm_fault.h comp-c-include
./usr/include/uvm/uvm_fault_i.h comp-c-include
./usr/include/uvm/uvm_glue.h comp-c-include
./usr/include/uvm/uvm_inherit.h comp-c-include
./usr/include/uvm/uvm_km.h comp-c-include
./usr/include/uvm/uvm_loan.h comp-c-include
./usr/include/uvm/uvm_map.h comp-c-include
@ -1121,22 +1122,18 @@
./usr/include/uvm/uvm_pager.h comp-c-include
./usr/include/uvm/uvm_pager_i.h comp-c-include
./usr/include/uvm/uvm_pdaemon.h comp-c-include
./usr/include/uvm/uvm_pglist.h comp-c-include
./usr/include/uvm/uvm_prot.h comp-c-include
./usr/include/uvm/uvm_stat.h comp-c-include
./usr/include/uvm/uvm_swap.h comp-c-include
./usr/include/uvm/uvm_vnode.h comp-c-include
./usr/include/varargs.h comp-c-include
./usr/include/vis.h comp-c-include
./usr/include/vm/pglist.h comp-c-include
./usr/include/vm/pmap.h comp-c-include
./usr/include/vm/vm.h comp-c-include
./usr/include/vm/vm_extern.h comp-c-include
./usr/include/vm/vm_inherit.h comp-c-include
./usr/include/vm/vm_kern.h comp-c-include
./usr/include/vm/vm_map.h comp-c-include
./usr/include/vm/vm_object.h comp-c-include
./usr/include/vm/vm_page.h comp-c-include
./usr/include/vm/vm_pager.h comp-c-include
./usr/include/vm/vm_param.h comp-c-include
./usr/include/wchar.h comp-c-include
./usr/include/zconf.h comp-c-include

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ade.c,v 1.4 1999/12/04 21:19:52 ragge Exp $ */
/* $NetBSD: if_ade.c,v 1.5 2000/06/26 14:20:26 mrg Exp $ */
/*
* NOTE: this version of if_de was modified for bounce buffers prior
@ -130,8 +130,6 @@
#endif
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_kern.h>
#if defined(__FreeBSD__)
#include <vm/pmap.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.214 2000/06/09 01:40:13 cgd Exp $ */
/* $NetBSD: machdep.c,v 1.215 2000/06/26 14:20:27 mrg Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@ -73,7 +73,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.214 2000/06/09 01:40:13 cgd Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.215 2000/06/26 14:20:27 mrg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -104,8 +104,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.214 2000/06/09 01:40:13 cgd Exp $");
#include <sys/mount.h>
#include <sys/syscallargs.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <dev/cons.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.135 2000/06/05 21:47:15 thorpej Exp $ */
/* $NetBSD: pmap.c,v 1.136 2000/06/26 14:20:27 mrg Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@ -154,7 +154,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.135 2000/06/05 21:47:15 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.136 2000/06/26 14:20:27 mrg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -168,8 +168,6 @@ __KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.135 2000/06/05 21:47:15 thorpej Exp $");
#endif
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.57 2000/05/28 05:48:59 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.58 2000/06/26 14:20:28 mrg Exp $ */
/*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -29,7 +29,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.57 2000/05/28 05:48:59 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.58 2000/06/26 14:20:28 mrg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -42,7 +42,6 @@ __KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.57 2000/05/28 05:48:59 thorpej Exp
#include <sys/exec.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.37 2000/06/26 04:55:21 simonb Exp $ */
/* $NetBSD: bus_dma.c,v 1.38 2000/06/26 14:20:28 mrg Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -39,7 +39,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.37 2000/06/26 04:55:21 simonb Exp $");
__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.38 2000/06/26 14:20:28 mrg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -50,7 +50,6 @@ __KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.37 2000/06/26 04:55:21 simonb Exp $");
#include <sys/mbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.152 2000/06/05 23:44:56 jhawk Exp $ */
/* $NetBSD: machdep.c,v 1.153 2000/06/26 14:20:28 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -77,12 +77,6 @@
#include <net/netisr.h>
#define MAXMEM 64*1024 /* XXX - from cmap.h */
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.76 2000/04/03 15:07:07 aymeric Exp $ */
/* $NetBSD: pmap.c,v 1.77 2000/06/26 14:20:29 mrg Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -117,8 +117,6 @@
#include <sys/malloc.h>
#include <vm/vm.h>
#include <sys/user.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.54 2000/05/28 05:49:00 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.55 2000/06/26 14:20:30 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -57,7 +57,6 @@
#include <vm/vm.h>
#include <sys/user.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: gayle_pcmcia.c,v 1.2 2000/02/21 18:27:50 aymeric Exp $ */
/* $NetBSD: gayle_pcmcia.c,v 1.3 2000/06/26 14:20:30 mrg Exp $ */
/* PCMCIA front-end driver for A1200's and A600's. */
@ -10,8 +10,9 @@
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm.h>
#include <dev/pcmcia/pcmciareg.h>
#include <dev/pcmcia/pcmciavar.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: grf.c,v 1.35 2000/06/26 04:55:23 simonb Exp $ */
/* $NetBSD: grf.c,v 1.36 2000/06/26 14:20:30 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -59,9 +59,7 @@
#include <sys/mman.h>
#include <sys/poll.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_pager.h>
#include <uvm/uvm_extern.h>
#include <machine/cpu.h>
#include <machine/fbio.h>
#include <amiga/amiga/color.h> /* DEBUG */

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbic.c,v 1.39 2000/03/23 06:33:12 thorpej Exp $ */
/* $NetBSD: sbic.c,v 1.40 2000/06/26 14:20:30 mrg Exp $ */
/*
* Copyright (c) 1994 Christian E. Hopps
@ -56,8 +56,7 @@
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>
#include <machine/pmap.h>
#include <machine/cpu.h>
#include <amiga/amiga/device.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sci.c,v 1.22 2000/01/18 19:33:32 thorpej Exp $ */
/* $NetBSD: sci.c,v 1.23 2000/06/26 14:20:31 mrg Exp $ */
/*
* Copyright (c) 1994 Michael L. Hitch
@ -53,8 +53,7 @@
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>
#include <machine/pmap.h>
#include <machine/cpu.h>
#include <amiga/amiga/device.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.3 2000/06/19 19:49:51 is Exp $ */
/* $NetBSD: machdep.c,v 1.4 2000/06/26 14:20:31 mrg Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -49,7 +49,8 @@
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/powerpc.h>
#include <machine/bat.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.3 2000/06/26 04:55:24 simonb Exp $ */
/* $NetBSD: bus_dma.c,v 1.4 2000/06/26 14:20:32 mrg Exp $ */
/* NetBSD: bus_dma.c,v 1.20 2000/01/10 03:24:36 simonb Exp */
/*-
@ -44,8 +44,8 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#define _ARC_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_space_sparse.c,v 1.1 2000/06/09 05:14:44 soda Exp $ */
/* $NetBSD: bus_space_sparse.c,v 1.2 2000/06/26 14:20:32 mrg Exp $ */
/* NetBSD: bus_machdep.c,v 1.1 2000/01/26 18:48:00 drochner Exp */
/*-
@ -51,8 +51,7 @@
#include <sys/extent.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>
#include <mips/cpuregs.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.39 2000/06/17 07:29:06 soda Exp $ */
/* $NetBSD: machdep.c,v 1.40 2000/06/26 14:20:32 mrg Exp $ */
/* $OpenBSD: machdep.c,v 1.36 1999/05/22 21:22:19 weingart Exp $ */
/*
@ -76,7 +76,6 @@
#include <ufs/mfs/mfs_extern.h>
#endif
#include <vm/vm_kern.h>
#include <ufs/mfs/mfs_extern.h> /* mfs_initminiroot() */
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: dma.c,v 1.15 2000/06/09 05:22:24 soda Exp $ */
/* $NetBSD: dma.c,v 1.16 2000/06/26 14:20:32 mrg Exp $ */
/* $OpenBSD: dma.c,v 1.5 1998/03/01 16:49:57 niklas Exp $ */
/*
@ -49,8 +49,8 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>
#include <mips/locore.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma_jazz.c,v 1.1 2000/06/09 05:22:22 soda Exp $ */
/* $NetBSD: bus_dma_jazz.c,v 1.2 2000/06/26 14:20:32 mrg Exp $ */
/*-
* Copyright (C) 2000 Shuichiro URATA. All rights reserved.
@ -32,7 +32,8 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#define _ARC_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: necpb.c,v 1.2 2000/06/17 07:25:57 soda Exp $ */
/* $NetBSD: necpb.c,v 1.3 2000/06/26 14:20:33 mrg Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -77,7 +77,8 @@
#include <sys/extent.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#define _ARC_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: except.c,v 1.7 2000/06/06 18:52:32 soren Exp $ */
/* $NetBSD: except.c,v 1.8 2000/06/26 14:20:33 mrg Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 Ben Harris
* All rights reserved.
@ -32,7 +32,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.7 2000/06/06 18:52:32 soren Exp $");
__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.8 2000/06/26 14:20:33 mrg Exp $");
#include "opt_cputypes.h"
#include "opt_ddb.h"
@ -45,7 +45,8 @@ __KERNEL_RCSID(0, "$NetBSD: except.c,v 1.7 2000/06/06 18:52:32 soren Exp $");
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/armreg.h>
#include <machine/machdep.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.2 2000/05/26 21:19:30 thorpej Exp $ */
/* $NetBSD: machdep.c,v 1.3 2000/06/26 14:20:33 mrg Exp $ */
/*-
* Copyright (c) 1998 Ben Harris
@ -33,14 +33,16 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.2 2000/05/26 21:19:30 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.3 2000/06/26 14:20:33 mrg Exp $");
#include <sys/buf.h>
#include <sys/mbuf.h>
#include <sys/reboot.h>
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/memcreg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.2 2000/05/13 17:56:32 bjh21 Exp $ */
/* $NetBSD: pmap.c,v 1.3 2000/06/26 14:20:33 mrg Exp $ */
/*-
* Copyright (c) 1997, 1998, 2000 Ben Harris
* All rights reserved.
@ -85,7 +85,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.2 2000/05/13 17:56:32 bjh21 Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.3 2000/06/26 14:20:33 mrg Exp $");
#include <sys/kernel.h> /* for cold */
#include <sys/malloc.h>
@ -94,8 +94,6 @@ __KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.2 2000/05/13 17:56:32 bjh21 Exp $");
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <vm/vm_kern.h>
#include <machine/machdep.h>
#include <machine/memcreg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbic.c,v 1.1 2000/05/09 21:56:03 bjh21 Exp $ */
/* $NetBSD: sbic.c,v 1.2 2000/06/26 14:20:33 mrg Exp $ */
/*
* Copyright (c) 1994 Christian E. Hopps
@ -57,8 +57,6 @@
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
/*#include <machine/pmap.h>
#include <machine/cpu.h>*/
#include <arm26/podulebus/podulebus.h>
@ -68,8 +66,6 @@
/* These are for bounce buffers */
/*#include <vm/pmap.h>*/
/* Since I can't find this in any other header files */
#define SCSI_PHASE(reg) (reg&0x07)

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.19 2000/06/26 04:55:27 simonb Exp $ */
/* $NetBSD: bus_dma.c,v 1.20 2000/06/26 14:20:34 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -52,8 +52,6 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: fault.c,v 1.43 1999/05/05 22:06:15 mycroft Exp $ */
/* $NetBSD: fault.c,v 1.44 2000/06/26 14:20:34 mrg Exp $ */
/*
* Copyright (c) 1994-1997 Mark Brinicombe.
@ -54,7 +54,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.79 2000/06/07 04:59:28 matt Exp $ */
/* $NetBSD: machdep.c,v 1.80 2000/06/26 14:20:34 mrg Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -68,8 +68,6 @@
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/signal.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.67 2000/03/26 20:42:25 kleink Exp $ */
/* $NetBSD: pmap.c,v 1.68 2000/06/26 14:20:34 mrg Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -105,8 +105,6 @@
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: stubs.c,v 1.28 2000/06/05 23:44:57 jhawk Exp $ */
/* $NetBSD: stubs.c,v 1.29 2000/06/26 14:20:34 mrg Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -47,8 +47,6 @@
#include <sys/conf.h>
#include <sys/msgbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <machine/cpu.h>
#include <machine/irqhandler.h>
#include <machine/bootconfig.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscall.c,v 1.28 2000/06/06 18:52:33 soren Exp $ */
/* $NetBSD: syscall.c,v 1.29 2000/06/26 14:20:34 mrg Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -56,7 +56,6 @@
#endif
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.50 2000/05/28 05:49:01 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.51 2000/06/26 14:20:34 mrg Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -58,7 +58,6 @@
#include <sys/syslog.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: md_hooks.c,v 1.14 1999/03/24 05:50:55 mrg Exp $ */
/* $NetBSD: md_hooks.c,v 1.15 2000/06/26 14:20:35 mrg Exp $ */
/*
* Copyright (c) 1995 Gordon W. Ross
@ -35,8 +35,6 @@
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ebsa285_machdep.c,v 1.12 2000/06/09 04:58:34 soda Exp $ */
/* $NetBSD: ebsa285_machdep.c,v 1.13 2000/06/26 14:20:35 mrg Exp $ */
/*
* Copyright (c) 1997,1998 Mark Brinicombe.
@ -58,8 +58,6 @@
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <vm/vm_kern.h>
#include <machine/bootconfig.h>
#include <machine/bus.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: footbridge_io.c,v 1.6 2000/06/24 09:42:47 mark Exp $ */
/* $NetBSD: footbridge_io.c,v 1.7 2000/06/26 14:20:35 mrg Exp $ */
/*
* Copyright (c) 1997 Causality Limited
@ -43,7 +43,6 @@
#include <machine/bus.h>
#include <arm32/footbridge/dc21285mem.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
/* Proto types for all the bus_space structure functions */

View File

@ -1,4 +1,4 @@
/* $NetBSD: footbridge_machdep.c,v 1.2 1999/03/24 05:50:56 mrg Exp $ */
/* $NetBSD: footbridge_machdep.c,v 1.3 2000/06/26 14:20:35 mrg Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe.
@ -37,8 +37,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>
#include <machine/pmap.h>
#include <machine/pte.h>
#include <arm32/footbridge/dc21285mem.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: armfpe_init.c,v 1.18 2000/05/26 21:19:32 thorpej Exp $ */
/* $NetBSD: armfpe_init.c,v 1.19 2000/06/26 14:20:35 mrg Exp $ */
/*
* Copyright (C) 1996 Mark Brinicombe
@ -48,8 +48,7 @@
#include <sys/malloc.h>
#include <sys/acct.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_param.h>
#include <uvm/uvm_extern.h>
#include <machine/cpu.h>
#include <machine/cpus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: iomd_dma.c,v 1.4 1999/07/08 18:05:25 thorpej Exp $ */
/* $NetBSD: iomd_dma.c,v 1.5 2000/06/26 14:20:35 mrg Exp $ */
/*
* Copyright (c) 1995 Scott Stevens
@ -42,7 +42,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/irqhandler.h>
#include <machine/pmap.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.c,v 1.22 2000/02/13 04:59:58 mark Exp $ */
/* $NetBSD: cpu.c,v 1.23 2000/06/26 14:20:36 mrg Exp $ */
/*
* Copyright (c) 1995 Mark Brinicombe.
@ -50,7 +50,6 @@
#include <sys/device.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/bootconfig.h>
#include <machine/io.h>
#include <machine/conf.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ofw.c,v 1.24 2000/06/06 20:17:36 matt Exp $ */
/* $NetBSD: ofw.c,v 1.25 2000/06/26 14:20:36 mrg Exp $ */
/*
* Copyright 1997
@ -46,7 +46,6 @@
#include <sys/reboot.h>
#include <sys/mbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <dev/cons.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ofwgencfg_machdep.c,v 1.11 2000/03/24 17:05:31 ws Exp $ */
/* $NetBSD: ofwgencfg_machdep.c,v 1.12 2000/06/26 14:20:36 mrg Exp $ */
/*
* Copyright 1997
@ -54,8 +54,6 @@
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <vm/vm_kern.h>
#include <machine/frame.h>
#include <machine/bootconfig.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: csc.c,v 1.6 1999/09/30 22:59:53 thorpej Exp $ */
/* $NetBSD: csc.c,v 1.7 2000/06/26 14:20:36 mrg Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -48,8 +48,6 @@
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <machine/pmap.h>
#include <machine/io.h>
#include <machine/irqhandler.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: esc.c,v 1.8 1999/09/30 22:59:53 thorpej Exp $ */
/* $NetBSD: esc.c,v 1.9 2000/06/26 14:20:37 mrg Exp $ */
/*
* Copyright (c) 1995 Scott Stevens
@ -63,8 +63,6 @@
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ptsc.c,v 1.23 1999/09/30 22:59:53 thorpej Exp $ */
/* $NetBSD: ptsc.c,v 1.24 2000/06/26 14:20:37 mrg Exp $ */
/*
* Copyright (c) 1995 Scott Stevens
@ -53,8 +53,6 @@
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <machine/pmap.h>
#include <machine/io.h>
#include <machine/irqhandler.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbic.c,v 1.15 2000/03/23 06:35:15 thorpej Exp $ */
/* $NetBSD: sbic.c,v 1.16 2000/06/26 14:20:37 mrg Exp $ */
/*
* Copyright (c) 1994 Christian E. Hopps
@ -58,8 +58,6 @@
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
/*#include <machine/pmap.h>
#include <machine/cpu.h>*/
#include <machine/io.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sfas.c,v 1.16 1999/10/24 22:19:47 mark Exp $ */
/* $NetBSD: sfas.c,v 1.17 2000/06/26 14:20:37 mrg Exp $ */
/*
* Copyright (c) 1995 Scott Stevens
@ -60,8 +60,6 @@
#include <dev/scsipi/scsiconf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rc7500_machdep.c,v 1.27 2000/03/24 17:05:31 ws Exp $ */
/* $NetBSD: rc7500_machdep.c,v 1.28 2000/06/26 14:20:37 mrg Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -63,8 +63,6 @@
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <vm/vm_kern.h>
#include <machine/signal.h>
#include <machine/frame.h>
#include <machine/bootconfig.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rpc_machdep.c,v 1.33 2000/03/24 17:05:32 ws Exp $ */
/* $NetBSD: rpc_machdep.c,v 1.34 2000/06/26 14:20:38 mrg Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -63,7 +63,6 @@
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <vm/vm_kern.h>
#include <uvm/uvm.h>
#include <machine/signal.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: shark_machdep.c,v 1.17 2000/06/07 04:59:30 matt Exp $ */
/* $NetBSD: shark_machdep.c,v 1.18 2000/06/26 14:20:38 mrg Exp $ */
/*
* Copyright 1997
@ -55,8 +55,6 @@
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>
#include <vm/vm_kern.h>
#include <machine/frame.h>
#include <machine/bootconfig.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: beep.c,v 1.17 1999/07/08 18:05:25 thorpej Exp $ */
/* $NetBSD: beep.c,v 1.18 2000/06/26 14:20:38 mrg Exp $ */
/*
* Copyright (c) 1995 Mark Brinicombe
@ -54,7 +54,6 @@
#include <sys/errno.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vidcconsole.c,v 1.23 2000/06/26 04:55:32 simonb Exp $ */
/* $NetBSD: vidcconsole.c,v 1.24 2000/06/26 14:20:39 mrg Exp $ */
/*
* Copyright (c) 1996 Mark Brinicombe
@ -59,7 +59,6 @@
#include <sys/syslog.h>
#include <sys/resourcevar.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: lmcaudio.c,v 1.25 2000/03/23 06:35:17 thorpej Exp $ */
/* $NetBSD: lmcaudio.c,v 1.26 2000/06/26 14:20:38 mrg Exp $ */
/*
* Copyright (c) 1996, Danny C Tsen.
@ -51,7 +51,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vidcaudio.c,v 1.31 1999/08/17 01:39:09 mark Exp $ */
/* $NetBSD: vidcaudio.c,v 1.32 2000/06/26 14:20:38 mrg Exp $ */
/*
* Copyright (c) 1995 Melvin Tang-Richardson
@ -47,7 +47,6 @@
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus.c,v 1.20 2000/06/26 04:55:33 simonb Exp $ */
/* $NetBSD: bus.c,v 1.21 2000/06/26 14:20:39 mrg Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -44,7 +44,6 @@
#include <sys/mbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/cpu.h>
#include <m68k/cacheops.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.95 2000/06/05 23:44:57 jhawk Exp $ */
/* $NetBSD: machdep.c,v 1.96 2000/06/26 14:20:39 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -73,7 +73,6 @@
#include <net/netisr.h>
#define MAXMEM 64*1024 /* XXX - from cmap.h */
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.55 2000/03/26 20:42:26 kleink Exp $ */
/* $NetBSD: pmap.c,v 1.56 2000/06/26 14:20:39 mrg Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -117,8 +117,6 @@
#include <sys/malloc.h>
#include <vm/vm.h>
#include <sys/user.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.32 2000/05/28 05:49:01 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.33 2000/06/26 14:20:39 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -56,7 +56,6 @@
#include <vm/vm.h>
#include <sys/user.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: grf.c,v 1.23 2000/06/26 04:55:34 simonb Exp $ */
/* $NetBSD: grf.c,v 1.24 2000/06/26 14:20:40 mrg Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman
@ -61,9 +61,6 @@
#include <sys/mman.h>
#include <sys/poll.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_pager.h>
#include <machine/cpu.h>
#include <atari/atari/device.h>
#include <atari/dev/grfioctl.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: grfabs_et.c,v 1.16 2000/04/11 07:08:45 leo Exp $ */
/* $NetBSD: grfabs_et.c,v 1.17 2000/06/26 14:20:40 mrg Exp $ */
/*
* Copyright (c) 1996 Leo Weppelman.
@ -51,7 +51,6 @@
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
/*
* For PCI probing...

View File

@ -1,4 +1,4 @@
/* $NetBSD: isa_machdep.c,v 1.17 2000/06/04 19:14:34 cgd Exp $ */
/* $NetBSD: isa_machdep.c,v 1.18 2000/06/26 14:20:40 mrg Exp $ */
/*
* Copyright (c) 1997 Leo Weppelman. All rights reserved.
@ -39,7 +39,6 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <dev/isa/isavar.h>
#include <dev/isa/isareg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_machdep.c,v 1.22 2000/06/04 19:14:35 cgd Exp $ */
/* $NetBSD: pci_machdep.c,v 1.23 2000/06/26 14:20:40 mrg Exp $ */
/*
* Copyright (c) 1996 Leo Weppelman. All rights reserved.
@ -40,7 +40,6 @@
#include <sys/malloc.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vme_machdep.c,v 1.7 2000/01/19 13:13:18 leo Exp $ */
/* $NetBSD: vme_machdep.c,v 1.8 2000/06/26 14:20:40 mrg Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -41,7 +41,6 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/bus.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.27 2000/06/26 04:55:36 simonb Exp $ */
/* $NetBSD: bus_dma.c,v 1.28 2000/06/26 14:20:41 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -60,8 +60,6 @@
#include <sys/syscallargs.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: extintr.c,v 1.11 1999/09/17 19:59:41 thorpej Exp $ */
/* $NetBSD: extintr.c,v 1.12 2000/06/26 14:20:41 mrg Exp $ */
/* $OpenBSD: isabus.c,v 1.1 1997/10/11 11:53:00 pefo Exp $ */
/*-
@ -45,7 +45,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/intr.h>
#include <machine/psl.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.53 2000/06/09 04:58:34 soda Exp $ */
/* $NetBSD: machdep.c,v 1.54 2000/06/26 14:20:41 mrg Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -58,7 +58,6 @@
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_machdep.c,v 1.5 2000/06/04 19:14:37 cgd Exp $ */
/* $NetBSD: pci_machdep.c,v 1.6 2000/06/26 14:20:41 mrg Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@ -50,7 +50,6 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/bus.h>
#include <machine/pio.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus.c,v 1.4 2000/06/26 04:55:38 simonb Exp $ */
/* $NetBSD: bus.c,v 1.5 2000/06/26 14:20:41 mrg Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -50,7 +50,6 @@
#include <machine/cpu.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.17 2000/06/14 16:40:58 soren Exp $ */
/* $NetBSD: machdep.c,v 1.18 2000/06/26 14:20:41 mrg Exp $ */
/*
* Copyright (c) 2000 Soren S. Jorvang. All rights reserved.
@ -49,7 +49,6 @@
#include <sys/syscallargs.h>
#include <sys/kcore.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_machdep.c,v 1.7 2000/06/04 19:14:41 cgd Exp $ */
/* $NetBSD: pci_machdep.c,v 1.8 2000/06/26 14:20:42 mrg Exp $ */
/*
* Copyright (c) 2000 Soren S. Jorvang. All rights reserved.
@ -33,7 +33,6 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#define _COBALT_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.15 2000/06/06 18:52:35 soren Exp $ */
/* $NetBSD: machdep.c,v 1.16 2000/06/26 14:20:42 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -108,8 +108,6 @@
#include <dev/cons.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.140 2000/06/05 23:44:58 jhawk Exp $ */
/* $NetBSD: machdep.c,v 1.141 2000/06/26 14:20:42 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -91,7 +91,6 @@
#define MAXMEM 64*1024 /* XXX - from cmap.h */
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.83 2000/03/26 20:42:27 kleink Exp $ */
/* $NetBSD: pmap.c,v 1.84 2000/06/26 14:20:42 mrg Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -144,8 +144,6 @@
#include <machine/pte.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.55 2000/05/28 05:49:01 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.56 2000/06/26 14:20:43 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -58,7 +58,6 @@
#include <machine/reg.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: plumohci.c,v 1.1 2000/03/25 15:08:26 uch Exp $ */
/* $NetBSD: plumohci.c,v 1.2 2000/06/26 14:20:43 mrg Exp $ */
/*-
* Copyright (c) 2000 UCHIYAMA Yasushi
@ -44,7 +44,6 @@
/* busdma */
#include <sys/mbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#define _HPCMIPS_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.2 2000/06/26 04:55:42 simonb Exp $ */
/* $NetBSD: bus_dma.c,v 1.3 2000/06/26 14:20:43 mrg Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -42,8 +42,8 @@
#include <sys/mbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#define _HPCMIPS_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_space.c,v 1.4 1999/12/02 18:41:56 uch Exp $ */
/* $NetBSD: bus_space.c,v 1.5 2000/06/26 14:20:43 mrg Exp $ */
/*
* Copyright (c) 1999, by UCHIYAMA Yasushi
@ -25,7 +25,7 @@
* SUCH DAMAGE.
*
*/
/* $NetBSD: bus_space.c,v 1.4 1999/12/02 18:41:56 uch Exp $ */
/* $NetBSD: bus_space.c,v 1.5 2000/06/26 14:20:43 mrg Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -71,8 +71,7 @@
#include <sys/extent.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>
#include <mips/cpuregs.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.26 2000/05/26 21:19:43 thorpej Exp $ */
/* $NetBSD: machdep.c,v 1.27 2000/06/26 14:20:43 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -43,7 +43,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.26 2000/05/26 21:19:43 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.27 2000/06/26 14:20:43 mrg Exp $");
/* from: Utah Hdr: machdep.c 1.63 91/04/24 */
#include "opt_vr41x1.h"
@ -73,7 +73,7 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.26 2000/05/26 21:19:43 thorpej Exp $")
#include <sys/kcore.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <sys/sysctl.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_machdep.c,v 1.2 2000/06/26 04:55:43 simonb Exp $ */
/* $NetBSD: bus_machdep.c,v 1.3 2000/06/26 14:20:44 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -44,7 +44,8 @@
#include <sys/extent.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#define _I386_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: gdt.c,v 1.20 1999/07/25 18:05:31 thorpej Exp $ */
/* $NetBSD: gdt.c,v 1.21 2000/06/26 14:20:44 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -43,7 +43,6 @@
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.389 2000/06/05 23:44:58 jhawk Exp $ */
/* $NetBSD: machdep.c,v 1.390 2000/06/26 14:20:44 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -118,7 +118,8 @@
#include <dev/cons.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <sys/sysctl.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.94 2000/06/15 13:35:27 mycroft Exp $ */
/* $NetBSD: pmap.c,v 1.95 2000/06/26 14:20:44 mrg Exp $ */
/*
*
@ -72,8 +72,6 @@
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rbus_machdep.c,v 1.7 2000/06/09 10:31:07 haya Exp $ */
/* $NetBSD: rbus_machdep.c,v 1.8 2000/06/26 14:20:45 mrg Exp $ */
/*
* Copyright (c) 1999
@ -38,8 +38,6 @@
#include <sys/extent.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_machdep.c,v 1.48 1999/05/12 19:28:29 thorpej Exp $ */
/* $NetBSD: sys_machdep.c,v 1.49 2000/06/26 14:20:45 mrg Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -94,7 +94,6 @@
#include <sys/syscallargs.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.89 2000/05/28 05:49:01 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.90 2000/06/26 14:20:45 mrg Exp $ */
/*-
* Copyright (c) 1995 Charles M. Hannum. All rights reserved.
@ -59,7 +59,6 @@
#include <sys/ptrace.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_machdep.c,v 1.36 2000/06/04 19:14:47 cgd Exp $ */
/* $NetBSD: pci_machdep.c,v 1.37 2000/06/26 14:20:45 mrg Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -88,7 +88,6 @@
#include <sys/lock.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#define _I386_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pnpbios.c,v 1.18 2000/05/28 21:46:05 jhawk Exp $ */
/* $NetBSD: pnpbios.c,v 1.19 2000/06/26 14:20:45 mrg Exp $ */
/*
* Copyright (c) 2000 Jason R. Thorpe. All rights reserved.
@ -48,7 +48,7 @@
#include <sys/kthread.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/isa_machdep.h>
#include <machine/segments.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.8 2000/06/05 23:45:03 jhawk Exp $ */
/* $NetBSD: machdep.c,v 1.9 2000/06/26 14:20:46 mrg Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.8 2000/06/05 23:45:03 jhawk Exp $");
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.9 2000/06/26 14:20:46 mrg Exp $");
#include "opt_ddb.h"
@ -70,9 +70,6 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.8 2000/06/05 23:45:03 jhawk Exp $");
#endif
#include <vm/vm.h>
#include <vm/vm_map.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.3 2000/03/26 20:42:28 kleink Exp $ */
/* $NetBSD: pmap.c,v 1.4 2000/06/26 14:20:46 mrg Exp $ */
/*-
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@ -139,8 +139,6 @@
#include <machine/pte.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,5 +1,5 @@
/* $NetBSD: vm_machdep.c,v 1.3 2000/05/28 05:49:02 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.3 2000/05/28 05:49:02 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.4 2000/06/26 14:20:46 mrg Exp $ */
/* $NetBSD: vm_machdep.c,v 1.4 2000/06/26 14:20:46 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -44,7 +44,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.3 2000/05/28 05:49:02 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.4 2000/06/26 14:20:46 mrg Exp $");
#include "opt_compat_hpux.h"
@ -59,7 +59,6 @@ __KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.3 2000/05/28 05:49:02 thorpej Exp $
#include <sys/exec.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: mappedcopy.c,v 1.10 2000/03/26 20:42:29 kleink Exp $ */
/* $NetBSD: mappedcopy.c,v 1.11 2000/06/26 14:20:46 mrg Exp $ */
/*
* XXX This doesn't work yet. Soon. --thorpej@netbsd.org
@ -51,7 +51,7 @@
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>
#include <machine/cpu.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_space.c,v 1.8 1999/12/12 08:18:49 scottr Exp $ */
/* $NetBSD: bus_space.c,v 1.9 2000/06/26 14:20:46 mrg Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@ -49,7 +49,6 @@
#include <machine/bus.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.252 2000/06/05 23:44:59 jhawk Exp $ */
/* $NetBSD: machdep.c,v 1.253 2000/06/26 14:20:46 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -124,7 +124,6 @@
#define MAXMEM 64*1024 /* XXX - from cmap.h */
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.65 2000/03/26 20:42:29 kleink Exp $ */
/* $NetBSD: pmap.c,v 1.66 2000/06/26 14:20:47 mrg Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -139,8 +139,6 @@
#include <machine/pte.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.46 2000/05/28 05:49:02 thorpej Exp $ */
/* $NetBSD: vm_machdep.c,v 1.47 2000/06/26 14:20:47 mrg Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -58,7 +58,6 @@
#include <machine/reg.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: nubus.c,v 1.47 1999/08/23 22:29:39 thorpej Exp $ */
/* $NetBSD: nubus.c,v 1.48 2000/06/26 14:20:47 mrg Exp $ */
/*
* Copyright (c) 1995, 1996 Allen Briggs. All rights reserved.
@ -36,8 +36,6 @@
#include <sys/conf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_map.h>
#include <machine/autoconf.h>
#include <machine/bus.h>
@ -47,8 +45,6 @@
#include <machine/pte.h>
#include <machine/viareg.h>
#include <vm/vm.h>
#include <mac68k/nubus/nubus.h>
#ifdef DEBUG

View File

@ -1,4 +1,4 @@
/* $NetBSD: bus_dma.c,v 1.14 2000/06/26 04:55:49 simonb Exp $ */
/* $NetBSD: bus_dma.c,v 1.15 2000/06/26 14:20:48 mrg Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -46,7 +46,6 @@
#include <sys/mbuf.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: extintr.c,v 1.12 2000/02/14 12:45:52 tsubai Exp $ */
/* $NetBSD: extintr.c,v 1.13 2000/06/26 14:20:48 mrg Exp $ */
/*-
* Copyright (c) 1995 Per Fogelstrom
@ -45,7 +45,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/autoconf.h>
#include <machine/intr.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.74 2000/06/09 10:54:48 tsubai Exp $ */
/* $NetBSD: machdep.c,v 1.75 2000/06/26 14:20:48 mrg Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -59,7 +59,6 @@
#include <sys/user.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rbus_machdep.c,v 1.4 2000/02/03 19:27:45 tsubai Exp $ */
/* $NetBSD: rbus_machdep.c,v 1.5 2000/06/26 14:20:48 mrg Exp $ */
/*
* Copyright (c) 1999
@ -32,8 +32,6 @@
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm_extern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_machdep.c,v 1.11 2000/06/04 19:14:49 cgd Exp $ */
/* $NetBSD: pci_machdep.c,v 1.12 2000/06/26 14:20:48 mrg Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@ -50,7 +50,6 @@
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#define _MACPPC_BUS_DMA_PRIVATE
#include <machine/bus.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.101 2000/06/26 03:05:04 nisimura Exp $ */
/* $NetBSD: pmap.c,v 1.102 2000/06/26 14:20:49 mrg Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -78,7 +78,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.101 2000/06/26 03:05:04 nisimura Exp $");
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.102 2000/06/26 14:20:49 mrg Exp $");
/*
* Manages physical address maps.
@ -120,8 +120,6 @@ __KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.101 2000/06/26 03:05:04 nisimura Exp $");
#endif
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <uvm/uvm.h>

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