diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-06 19:53:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-06 19:53:22 +0000 |
commit | 1a05584a00bbab0c5d169a8d3af7b22cafbfd92e (patch) | |
tree | 5ddd0ec6d94f69ad3960926e58a87b6d82166c7a /sys/arch/mvmeppc | |
parent | ef75d88ca83504eb18013af4622826ef9b5ff28d (diff) |
Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.
(Look ma, I might have broken the tree)
Diffstat (limited to 'sys/arch/mvmeppc')
-rw-r--r-- | sys/arch/mvmeppc/ddb/db_memrw.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/dev/mem.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/dev/openpic.c | 3 | ||||
-rw-r--r-- | sys/arch/mvmeppc/dev/raven.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/isa/isa_machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/bus_dma.c | 3 | ||||
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/genassym.cf | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/machdep.c | 3 | ||||
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/ppc1_machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/pci/mpcpcibr.c | 4 | ||||
-rw-r--r-- | sys/arch/mvmeppc/pci/raven.c | 4 |
11 files changed, 19 insertions, 22 deletions
diff --git a/sys/arch/mvmeppc/ddb/db_memrw.c b/sys/arch/mvmeppc/ddb/db_memrw.c index 57286301d8f..62f7d37cb10 100644 --- a/sys/arch/mvmeppc/ddb/db_memrw.c +++ b/sys/arch/mvmeppc/ddb/db_memrw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_memrw.c,v 1.1 2001/06/26 21:57:39 smurph Exp $ */ +/* $OpenBSD: db_memrw.c,v 1.2 2001/11/06 19:53:15 miod Exp $ */ /* $NetBSD: db_memrw.c,v 1.1 1996/02/22 23:23:35 gwr Exp $ */ /* @@ -41,7 +41,7 @@ #include <sys/param.h> #include <sys/proc.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/db_machdep.h> diff --git a/sys/arch/mvmeppc/dev/mem.c b/sys/arch/mvmeppc/dev/mem.c index 60f11f0c53e..08402622c05 100644 --- a/sys/arch/mvmeppc/dev/mem.c +++ b/sys/arch/mvmeppc/dev/mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mem.c,v 1.3 2001/11/01 12:13:46 art Exp $ */ +/* $OpenBSD: mem.c,v 1.4 2001/11/06 19:53:15 miod Exp $ */ /* $NetBSD: mem.c,v 1.1 1996/09/30 16:34:50 ws Exp $ */ /* @@ -52,7 +52,7 @@ #include <sys/uio.h> #include <sys/malloc.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> /*ARGSUSED*/ int diff --git a/sys/arch/mvmeppc/dev/openpic.c b/sys/arch/mvmeppc/dev/openpic.c index 936b18215cd..b4597a53ff6 100644 --- a/sys/arch/mvmeppc/dev/openpic.c +++ b/sys/arch/mvmeppc/dev/openpic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openpic.c,v 1.4 2001/09/11 20:05:24 miod Exp $ */ +/* $OpenBSD: openpic.c,v 1.5 2001/11/06 19:53:15 miod Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -50,7 +50,6 @@ #include <sys/mbuf.h> #include <sys/socket.h> #include <sys/systm.h> -#include <vm/vm.h> #include <uvm/uvm.h> #include <machine/autoconf.h> diff --git a/sys/arch/mvmeppc/dev/raven.c b/sys/arch/mvmeppc/dev/raven.c index f198db8e83c..d6d16d81887 100644 --- a/sys/arch/mvmeppc/dev/raven.c +++ b/sys/arch/mvmeppc/dev/raven.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raven.c,v 1.1 2001/06/26 21:57:41 smurph Exp $ */ +/* $OpenBSD: raven.c,v 1.2 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 2001 Steve Murphree, Jr. @@ -42,7 +42,7 @@ #include <sys/malloc.h> #include <sys/device.h> #include <sys/proc.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/autoconf.h> diff --git a/sys/arch/mvmeppc/isa/isa_machdep.c b/sys/arch/mvmeppc/isa/isa_machdep.c index b3c8e52bbaf..7f42c67857b 100644 --- a/sys/arch/mvmeppc/isa/isa_machdep.c +++ b/sys/arch/mvmeppc/isa/isa_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa_machdep.c,v 1.2 2001/07/06 05:14:30 smurph Exp $ */ +/* $OpenBSD: isa_machdep.c,v 1.3 2001/11/06 19:53:15 miod Exp $ */ /* $NetBSD: isa_machdep.c,v 1.22 1997/06/12 23:57:32 thorpej Exp $ */ #define ISA_DMA_STATS @@ -124,7 +124,7 @@ #include <sys/malloc.h> #include <sys/proc.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/bus.h> diff --git a/sys/arch/mvmeppc/mvmeppc/bus_dma.c b/sys/arch/mvmeppc/mvmeppc/bus_dma.c index eef88567b78..6f38316459c 100644 --- a/sys/arch/mvmeppc/mvmeppc/bus_dma.c +++ b/sys/arch/mvmeppc/mvmeppc/bus_dma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bus_dma.c,v 1.6 2001/11/05 17:25:58 art Exp $ */ +/* $OpenBSD: bus_dma.c,v 1.7 2001/11/06 19:53:15 miod Exp $ */ /* $NetBSD: bus_dma.c,v 1.2 2001/06/10 02:31:25 briggs Exp $ */ /*- @@ -51,7 +51,6 @@ #include <sys/mbuf.h> #include <sys/mount.h> -#include <vm/vm.h> #include <uvm/uvm.h> #include <uvm/uvm_page.h> diff --git a/sys/arch/mvmeppc/mvmeppc/genassym.cf b/sys/arch/mvmeppc/mvmeppc/genassym.cf index 9f649b1acf2..9d3aa02c871 100644 --- a/sys/arch/mvmeppc/mvmeppc/genassym.cf +++ b/sys/arch/mvmeppc/mvmeppc/genassym.cf @@ -1,4 +1,4 @@ -# $OpenBSD: genassym.cf,v 1.3 2001/09/16 14:28:04 miod Exp $ +# $OpenBSD: genassym.cf,v 1.4 2001/11/06 19:53:15 miod Exp $ # # Copyright (c) 1982, 1990 The Regents of the University of California. # All rights reserved. @@ -37,7 +37,7 @@ include <sys/param.h> include <sys/time.h> include <sys/proc.h> -include <vm/vm.h> +include <uvm/uvm_extern.h> include <machine/pcb.h> include <machine/pmap.h> diff --git a/sys/arch/mvmeppc/mvmeppc/machdep.c b/sys/arch/mvmeppc/mvmeppc/machdep.c index 8d0fc44de01..6c96354353f 100644 --- a/sys/arch/mvmeppc/mvmeppc/machdep.c +++ b/sys/arch/mvmeppc/mvmeppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.10 2001/09/19 20:50:57 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.11 2001/11/06 19:53:15 miod Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -51,7 +51,6 @@ #include <sys/systm.h> #include <sys/user.h> -#include <vm/vm.h> #include <uvm/uvm_extern.h> #ifdef SYSVSHM diff --git a/sys/arch/mvmeppc/mvmeppc/ppc1_machdep.c b/sys/arch/mvmeppc/mvmeppc/ppc1_machdep.c index 87b6265dbe4..6ebc0816507 100644 --- a/sys/arch/mvmeppc/mvmeppc/ppc1_machdep.c +++ b/sys/arch/mvmeppc/mvmeppc/ppc1_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ppc1_machdep.c,v 1.2 2001/09/11 20:05:24 miod Exp $ */ +/* $OpenBSD: ppc1_machdep.c,v 1.3 2001/11/06 19:53:15 miod Exp $ */ /* $NetBSD: ofw_machdep.c,v 1.1 1996/09/30 16:34:50 ws Exp $ */ /* @@ -43,7 +43,7 @@ #include <sys/stat.h> #include <sys/systm.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/powerpc.h> #include <machine/autoconf.h> diff --git a/sys/arch/mvmeppc/pci/mpcpcibr.c b/sys/arch/mvmeppc/pci/mpcpcibr.c index 98df356420e..63bbb46a26c 100644 --- a/sys/arch/mvmeppc/pci/mpcpcibr.c +++ b/sys/arch/mvmeppc/pci/mpcpcibr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpcpcibr.c,v 1.5 2001/09/21 02:11:58 miod Exp $ */ +/* $OpenBSD: mpcpcibr.c,v 1.6 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 2001 Steve Murphree, Jr. @@ -43,7 +43,7 @@ #include <sys/malloc.h> #include <sys/device.h> #include <sys/proc.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/autoconf.h> #include <machine/bat.h> diff --git a/sys/arch/mvmeppc/pci/raven.c b/sys/arch/mvmeppc/pci/raven.c index bfd52589686..5df8ca8e3aa 100644 --- a/sys/arch/mvmeppc/pci/raven.c +++ b/sys/arch/mvmeppc/pci/raven.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raven.c,v 1.4 2001/09/21 02:11:58 miod Exp $ */ +/* $OpenBSD: raven.c,v 1.5 2001/11/06 19:53:15 miod Exp $ */ /* * Copyright (c) 2001 Steve Murphree, Jr. @@ -43,7 +43,7 @@ #include <sys/malloc.h> #include <sys/device.h> #include <sys/proc.h> -#include <vm/vm.h> +#include <uvm/uvm_extern.h> #include <machine/autoconf.h> #include <machine/bat.h> |