aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/conf/options3
-rw-r--r--sys/vm/vm_glue.c3
-rw-r--r--sys/vm/vm_pageout.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/sys/conf/options b/sys/conf/options
index dd410effeac3..6360db0c5848 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -1,4 +1,4 @@
-# $Id: options,v 1.99 1998/09/18 00:46:38 mjacob Exp $
+# $Id: options,v 1.100 1998/09/25 17:34:47 peter Exp $
#
# On the handling of kernel options
#
@@ -248,6 +248,7 @@ ENABLE_VFS_IOOPT opt_global.h
VM_KMEM_SIZE opt_vm.h
VM_KMEM_SIZE_SCALE opt_vm.h
VM_KMEM_SIZE_MAX opt_vm.h
+NO_SWAPPING opt_vm.h
PQ_NOOPT opt_vmpage.h
PQ_NORMALCACHE opt_vmpage.h
PQ_MEDIUMCACHE opt_vmpage.h
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index 0e78a8a63acd..329f18896b64 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 441a43667c9a..a9e9cfbe1df5 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>