summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-06-11 23:50:51 +0000
committerobrien <obrien@FreeBSD.org>2003-06-11 23:50:51 +0000
commitb0678d7a4429dd07b729a73ad0e24e2d62fec0fb (patch)
treef1371dbeb6939566fce7cf73cfd9787395f95f65 /sys/vm
parent0e1e089ce6d687b8fc5ac84eac4b2f200cc2e863 (diff)
downloadFreeBSD-src-b0678d7a4429dd07b729a73ad0e24e2d62fec0fb.zip
FreeBSD-src-b0678d7a4429dd07b729a73ad0e24e2d62fec0fb.tar.gz
Use __FBSDID().
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/default_pager.c5
-rw-r--r--sys/vm/device_pager.c4
-rw-r--r--sys/vm/phys_pager.c5
-rw-r--r--sys/vm/swap_pager.c5
-rw-r--r--sys/vm/uma_core.c7
-rw-r--r--sys/vm/uma_dbg.c5
-rw-r--r--sys/vm/vm_contig.c4
-rw-r--r--sys/vm/vm_fault.c6
-rw-r--r--sys/vm/vm_glue.c5
-rw-r--r--sys/vm/vm_init.c5
-rw-r--r--sys/vm/vm_kern.c5
-rw-r--r--sys/vm/vm_map.c5
-rw-r--r--sys/vm/vm_meter.c4
-rw-r--r--sys/vm/vm_mmap.c4
-rw-r--r--sys/vm/vm_object.c5
-rw-r--r--sys/vm/vm_page.c4
-rw-r--r--sys/vm/vm_pageout.c5
-rw-r--r--sys/vm/vm_pageq.c6
-rw-r--r--sys/vm/vm_pager.c5
-rw-r--r--sys/vm/vm_swap.c4
-rw-r--r--sys/vm/vm_unix.c4
-rw-r--r--sys/vm/vm_zeroidle.c4
-rw-r--r--sys/vm/vnode_pager.c4
23 files changed, 69 insertions, 41 deletions
diff --git a/sys/vm/default_pager.c b/sys/vm/default_pager.c
index 40b9581..b3e6e44 100644
--- a/sys/vm/default_pager.c
+++ b/sys/vm/default_pager.c
@@ -35,10 +35,11 @@
* vm_page->swapblk field. The object is only converted when the page is
* physically freed after having been cleaned and even then vm_page->swapblk
* is maintained whenever a resident page also has swap backing store.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>
diff --git a/sys/vm/device_pager.c b/sys/vm/device_pager.c
index e4d80c4..4503a0b 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
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
diff --git a/sys/vm/phys_pager.c b/sys/vm/phys_pager.c
index 67d1ad0..214315d 100644
--- a/sys/vm/phys_pager.c
+++ b/sys/vm/phys_pager.c
@@ -21,10 +21,11 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/linker_set.h>
diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c
index f859eee..4ddc7fe 100644
--- a/sys/vm/swap_pager.c
+++ b/sys/vm/swap_pager.c
@@ -63,10 +63,11 @@
* from: Utah $Hdr: swap_pager.c 1.4 91/04/30$
*
* @(#)swap_pager.c 8.9 (Berkeley) 3/21/94
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c
index a27794b..ac86b27 100644
--- a/sys/vm/uma_core.c
+++ b/sys/vm/uma_core.c
@@ -22,9 +22,6 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $FreeBSD$
- *
*/
/*
@@ -48,6 +45,9 @@
* - Investigate cache size adjustments
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* I should really use ktr.. */
/*
#define UMA_DEBUG 1
@@ -55,7 +55,6 @@
#define UMA_DEBUG_ALLOC_1 1
*/
-
#include "opt_param.h"
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/vm/uma_dbg.c b/sys/vm/uma_dbg.c
index ebdba40..b69cee0 100644
--- a/sys/vm/uma_dbg.c
+++ b/sys/vm/uma_dbg.c
@@ -22,9 +22,6 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $FreeBSD$
- *
*/
/*
@@ -32,6 +29,8 @@
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/vm/vm_contig.c b/sys/vm/vm_contig.c
index cf5ee09..bef7ecf 100644
--- a/sys/vm/vm_contig.c
+++ b/sys/vm/vm_contig.c
@@ -34,7 +34,6 @@
* SUCH DAMAGE.
*
* from: @(#)vm_page.c 7.4 (Berkeley) 5/7/91
- * $FreeBSD$
*/
/*
@@ -64,6 +63,9 @@
* rights to redistribute these changes.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index d8f2409..64925ba 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -65,13 +65,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
* Page fault handling module.
*/
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c
index 67b585e..741bd0d 100644
--- a/sys/vm/vm_glue.c
+++ b/sys/vm/vm_glue.c
@@ -58,10 +58,11 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_vm.h"
#include <sys/param.h>
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c
index 7f4f71d..eaeae85 100644
--- a/sys/vm/vm_init.c
+++ b/sys/vm/vm_init.c
@@ -60,14 +60,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
* Initialize the Virtual Memory subsystem.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/lock.h>
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index b82bfe0..5d3afd6 100644
--- a/sys/vm/vm_kern.c
+++ b/sys/vm/vm_kern.c
@@ -60,14 +60,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
* Kernel memory management.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h> /* for ticks and hz */
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 53b51b8..66b6023 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -60,14 +60,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
* Virtual memory mapping module.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/ktr.h>
diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c
index c988ca8..1638f3d 100644
--- a/sys/vm/vm_meter.c
+++ b/sys/vm/vm_meter.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)vm_meter.c 8.4 (Berkeley) 1/4/94
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c
index 1cb8a30..aeb8a16 100644
--- a/sys/vm/vm_mmap.c
+++ b/sys/vm/vm_mmap.c
@@ -38,13 +38,15 @@
* from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$
*
* @(#)vm_mmap.c 8.4 (Berkeley) 1/12/94
- * $FreeBSD$
*/
/*
* Mapped file (mmap) interface to VM
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_compat.h"
#include "opt_mac.h"
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 30d5bd2..141047c 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -60,14 +60,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
* Virtual memory object module.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>
diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c
index ff9a227..c64bdb0 100644
--- a/sys/vm/vm_page.c
+++ b/sys/vm/vm_page.c
@@ -34,7 +34,6 @@
* SUCH DAMAGE.
*
* from: @(#)vm_page.c 7.4 (Berkeley) 5/7/91
- * $FreeBSD$
*/
/*
@@ -101,6 +100,9 @@
* Resident memory management module.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c
index f55a180..5c4fa22 100644
--- a/sys/vm/vm_pageout.c
+++ b/sys/vm/vm_pageout.c
@@ -64,14 +64,15 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
* The proverbial page-out daemon.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_vm.h"
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/vm/vm_pageq.c b/sys/vm/vm_pageq.c
index 332e445..bca21fb 100644
--- a/sys/vm/vm_pageq.c
+++ b/sys/vm/vm_pageq.c
@@ -1,10 +1,11 @@
/*
* (c)Copyright 1998, Matthew Dillon. Terms for use and redistribution
* are covered by the BSD Copyright as found in /usr/src/COPYRIGHT.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/lock.h>
@@ -69,7 +70,6 @@ vm_pageq_requeue(vm_page_t m)
/*
* vm_pageq_enqueue:
- *
*/
void
vm_pageq_enqueue(int queue, vm_page_t m)
diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c
index 5747930..efdece2 100644
--- a/sys/vm/vm_pager.c
+++ b/sys/vm/vm_pager.c
@@ -60,8 +60,6 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
- *
- * $FreeBSD$
*/
/*
@@ -69,6 +67,9 @@
* for builtin pagers.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c
index 4d9e783..b80becc 100644
--- a/sys/vm/vm_swap.c
+++ b/sys/vm/vm_swap.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)vm_swap.c 8.5 (Berkeley) 2/17/94
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_mac.h"
#include "opt_swap.h"
#include "opt_vm.h"
diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c
index 90bfba2..b57958e 100644
--- a/sys/vm/vm_unix.c
+++ b/sys/vm/vm_unix.c
@@ -38,13 +38,15 @@
* from: Utah $Hdr: vm_unix.c 1.1 89/11/07$
*
* @(#)vm_unix.c 8.1 (Berkeley) 6/11/93
- * $FreeBSD$
*/
/*
* Traditional sbrk/grow interface to VM
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/lock.h>
#include <sys/mutex.h>
diff --git a/sys/vm/vm_zeroidle.c b/sys/vm/vm_zeroidle.c
index 75fa7a2..c709160 100644
--- a/sys/vm/vm_zeroidle.c
+++ b/sys/vm/vm_zeroidle.c
@@ -7,9 +7,11 @@
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#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 99bc3cf..a6869b0 100644
--- a/sys/vm/vnode_pager.c
+++ b/sys/vm/vnode_pager.c
@@ -38,7 +38,6 @@
* SUCH DAMAGE.
*
* from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91
- * $FreeBSD$
*/
/*
@@ -51,6 +50,9 @@
* greatly re-simplify the vnode_pager.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
OpenPOWER on IntegriCloud