diff options
author | phk <phk@FreeBSD.org> | 1999-08-08 18:43:05 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-08-08 18:43:05 +0000 |
commit | e938d317d57f5bdbcd03330bb1290da29802187d (patch) | |
tree | 3c9ed3dde7ffaca65d359ae0e230b6e3e4e6f8ca /sys/vm | |
parent | 909603ec05eff128d9bdd1107a650a817c460e20 (diff) | |
download | FreeBSD-src-e938d317d57f5bdbcd03330bb1290da29802187d.zip FreeBSD-src-e938d317d57f5bdbcd03330bb1290da29802187d.tar.gz |
Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,
a few lines into <sys/vnode.h>.
Add a few fields to struct specinfo, paving the way for the fun part.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_mmap.c | 4 | ||||
-rw-r--r-- | sys/vm/vm_swap.c | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c index e077a59..fe9bf90 100644 --- a/sys/vm/vm_mmap.c +++ b/sys/vm/vm_mmap.c @@ -38,7 +38,7 @@ * from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$ * * @(#)vm_mmap.c 8.4 (Berkeley) 1/12/94 - * $Id: vm_mmap.c,v 1.99 1999/05/17 00:53:56 alc Exp $ + * $Id: vm_mmap.c,v 1.100 1999/06/05 18:21:53 alc Exp $ */ /* @@ -61,8 +61,6 @@ #include <sys/stat.h> #include <sys/vmmeter.h> -#include <miscfs/specfs/specdev.h> - #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/vm_prot.h> diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c index 9b9f405..39f9cc4 100644 --- a/sys/vm/vm_swap.c +++ b/sys/vm/vm_swap.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_swap.c 8.5 (Berkeley) 2/17/94 - * $Id: vm_swap.c,v 1.78 1999/07/17 19:59:55 phk Exp $ + * $Id: vm_swap.c,v 1.79 1999/07/20 21:29:11 green Exp $ */ #include "opt_devfs.h" @@ -41,7 +41,6 @@ #include <sys/systm.h> #include <sys/sysproto.h> #include <sys/buf.h> -#include <sys/conf.h> #ifdef DEVFS #include <sys/devfsext.h> #endif @@ -53,12 +52,11 @@ #include <sys/blist.h> #include <sys/kernel.h> #include <sys/lock.h> +#include <sys/conf.h> #include <vm/vm.h> #include <vm/vm_extern.h> #include <vm/swap_pager.h> -#include <miscfs/specfs/specdev.h> - /* * "sw" is a fake device implemented * in vm_swap.c and used only internally to get to swstrategy. |