aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1998-02-04 22:34:03 +0000
committerEivind Eklund <eivind@FreeBSD.org>1998-02-04 22:34:03 +0000
commit47cfdb166d16af183216e459e4e48aff9d2beabf (patch)
tree93aceb4227ab2f9f24d54737e22b76e485ae9796 /sys/vm
parent4f36d4ac99675f748f0e5b7ca061c49573d3ecbd (diff)
Notes
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/default_pager.c4
-rw-r--r--sys/vm/device_pager.c4
-rw-r--r--sys/vm/swap_pager.c4
-rw-r--r--sys/vm/vm_fault.c4
-rw-r--r--sys/vm/vm_glue.c3
-rw-r--r--sys/vm/vm_init.c4
-rw-r--r--sys/vm/vm_kern.c4
-rw-r--r--sys/vm/vm_map.c4
-rw-r--r--sys/vm/vm_mmap.c3
-rw-r--r--sys/vm/vm_object.c4
-rw-r--r--sys/vm/vm_page.c4
-rw-r--r--sys/vm/vm_pageout.c4
-rw-r--r--sys/vm/vm_pager.c4
-rw-r--r--sys/vm/vm_zone.c4
-rw-r--r--sys/vm/vnode_pager.c4
15 files changed, 43 insertions, 15 deletions
diff --git a/sys/vm/default_pager.c b/sys/vm/default_pager.c
index ad54aabf55a3..4a1c4df7154c 100644
--- a/sys/vm/default_pager.c
+++ b/sys/vm/default_pager.c
@@ -28,9 +28,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: default_pager.c,v 1.12 1997/08/25 22:15:06 bde Exp $
+ * $Id: default_pager.c,v 1.13 1997/09/01 03:17:08 bde Exp $
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/vm/device_pager.c b/sys/vm/device_pager.c
index e274095ea0f8..8878b870278f 100644
--- a/sys/vm/device_pager.c
+++ b/sys/vm/device_pager.c
@@ -36,9 +36,11 @@
* SUCH DAMAGE.
*
* @(#)device_pager.c 8.1 (Berkeley) 6/11/93
- * $Id: device_pager.c,v 1.27 1997/09/01 03:17:12 bde Exp $
+ * $Id: device_pager.c,v 1.28 1998/01/31 11:56:25 dyson Exp $
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c
index 6f4d3fbf5a41..de978bda7c53 100644
--- a/sys/vm/swap_pager.c
+++ b/sys/vm/swap_pager.c
@@ -39,7 +39,7 @@
* from: Utah $Hdr: swap_pager.c 1.4 91/04/30$
*
* @(#)swap_pager.c 8.9 (Berkeley) 3/21/94
- * $Id: swap_pager.c,v 1.84 1998/02/01 02:00:20 dyson Exp $
+ * $Id: swap_pager.c,v 1.85 1998/02/03 00:50:36 dyson Exp $
*/
/*
@@ -49,6 +49,8 @@
* Deal with async writes in a better fashion
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index d00e23274547..1ab4797e297a 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -66,13 +66,15 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_fault.c,v 1.76 1998/01/22 17:30:33 dyson Exp $
+ * $Id: vm_fault.c,v 1.77 1998/01/31 11:56:32 dyson Exp $
*/
/*
* Page fault handling module.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index 1c0c05ac8a4a..9abb81b4c6ee 100644
--- a/sys/vm/vm_glue.c
+++ b/sys/vm/vm_glue.c
@@ -59,9 +59,10 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_glue.c,v 1.69 1997/12/11 02:10:55 dyson Exp $
+ * $Id: vm_glue.c,v 1.70 1998/01/22 17:30:34 dyson Exp $
*/
+#include "opt_diagnostic.h"
#include "opt_rlimit.h"
#include <sys/param.h>
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c
index b3fc58396aa9..a572cb0145de 100644
--- a/sys/vm/vm_init.c
+++ b/sys/vm/vm_init.c
@@ -61,13 +61,15 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_init.c,v 1.15 1997/02/22 09:48:20 peter Exp $
+ * $Id: vm_init.c,v 1.16 1997/08/02 14:33:26 bde Exp $
*/
/*
* Initialize the Virtual Memory subsystem.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index 0077ca274c5e..120a24593966 100644
--- a/sys/vm/vm_kern.c
+++ b/sys/vm/vm_kern.c
@@ -61,13 +61,15 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_kern.c,v 1.40 1998/01/22 17:30:35 dyson Exp $
+ * $Id: vm_kern.c,v 1.41 1998/01/31 11:56:35 dyson Exp $
*/
/*
* Kernel memory management.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 5fd8d30d5d8b..6109761a7dc6 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -61,13 +61,15 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_map.c,v 1.108 1998/01/22 17:30:37 dyson Exp $
+ * $Id: vm_map.c,v 1.109 1998/01/31 11:56:38 dyson Exp $
*/
/*
* Virtual memory mapping module.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c
index 3b5b2bd8419f..ad61a3f67aeb 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.70 1997/12/16 17:40:42 eivind Exp $
+ * $Id: vm_mmap.c,v 1.71 1997/12/31 02:35:29 alex Exp $
*/
/*
@@ -46,6 +46,7 @@
*/
#include "opt_compat.h"
+#include "opt_diagnostic.h"
#include "opt_rlimit.h"
#include <sys/param.h>
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index cd7dc0f05f76..dd3f27c2edad 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -61,13 +61,15 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_object.c,v 1.108 1998/01/22 17:30:39 dyson Exp $
+ * $Id: vm_object.c,v 1.109 1998/01/31 11:56:41 dyson Exp $
*/
/*
* Virtual memory object module.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h> /* for curproc, pageproc */
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index dea6b04f2680..23be21813efd 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)vm_page.c 7.4 (Berkeley) 5/7/91
- * $Id: vm_page.c,v 1.88 1998/01/31 11:56:47 dyson Exp $
+ * $Id: vm_page.c,v 1.89 1998/01/31 20:30:18 dyson Exp $
*/
/*
@@ -68,6 +68,8 @@
* Resident memory management module.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index 0ae68eaa8195..66e29889433c 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -65,13 +65,15 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pageout.c,v 1.109 1998/01/22 17:30:42 dyson Exp $
+ * $Id: vm_pageout.c,v 1.110 1998/01/31 11:56:49 dyson Exp $
*/
/*
* The proverbial page-out daemon.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c
index 35f491ba84a4..ff50b11a7ed1 100644
--- a/sys/vm/vm_pager.c
+++ b/sys/vm/vm_pager.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_pager.c,v 1.31 1997/12/29 00:25:06 dyson Exp $
+ * $Id: vm_pager.c,v 1.32 1998/01/24 02:01:46 dyson Exp $
*/
/*
@@ -69,6 +69,8 @@
* for builtin pagers.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
diff --git a/sys/vm/vm_zone.c b/sys/vm/vm_zone.c
index 0a79e69983a0..4245976ae944 100644
--- a/sys/vm/vm_zone.c
+++ b/sys/vm/vm_zone.c
@@ -11,9 +11,11 @@
* 2. Absolutely no warranty of function or purpose is made by the author
* John S. Dyson.
*
- * $Id: vm_zone.c,v 1.14 1997/12/22 11:48:13 dyson Exp $
+ * $Id: vm_zone.c,v 1.15 1998/01/22 17:30:44 dyson Exp $
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c
index 2c2ec01debc0..8f473c1ee175 100644
--- a/sys/vm/vnode_pager.c
+++ b/sys/vm/vnode_pager.c
@@ -38,7 +38,7 @@
* SUCH DAMAGE.
*
* from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91
- * $Id: vnode_pager.c,v 1.80 1998/01/17 09:17:02 dyson Exp $
+ * $Id: vnode_pager.c,v 1.81 1998/01/31 11:56:53 dyson Exp $
*/
/*
@@ -51,6 +51,8 @@
* greatly re-simplify the vnode_pager.
*/
+#include "opt_diagnostic.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>