diff options
author | abial <abial@FreeBSD.org> | 1998-09-29 17:33:59 +0000 |
---|---|---|
committer | abial <abial@FreeBSD.org> | 1998-09-29 17:33:59 +0000 |
commit | 121218d0241b9dc377252808c1c7ef51e577ef5b (patch) | |
tree | 14c2450846108e177194b7f676f353d7e409f036 /sys/vm | |
parent | 347d8b5710b5b43e01594fd3663f29ecb05bc78c (diff) | |
download | FreeBSD-src-121218d0241b9dc377252808c1c7ef51e577ef5b.zip FreeBSD-src-121218d0241b9dc377252808c1c7ef51e577ef5b.tar.gz |
Make #define NO_SWAPPING a normal kernel config option.
Reviewed by: jkh
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_glue.c | 3 | ||||
-rw-r--r-- | sys/vm/vm_pageout.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index 0e78a8a..329f188 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -59,10 +59,11 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_glue.c,v 1.74 1998/02/09 06:11:24 eivind Exp $ + * $Id: vm_glue.c,v 1.75 1998/03/04 10:27:00 dufault Exp $ */ #include "opt_rlimit.h" +#include "opt_vm.h" #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index 441a436..a9e9cfb 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -65,13 +65,14 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.c,v 1.125 1998/08/24 08:39:38 dfr Exp $ + * $Id: vm_pageout.c,v 1.126 1998/09/04 08:06:57 dfr Exp $ */ /* * The proverbial page-out daemon. */ +#include "opt_vm.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> |