diff options
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/default_pager.c | 2 | ||||
-rw-r--r-- | sys/vm/default_pager.h | 2 | ||||
-rw-r--r-- | sys/vm/device_pager.c | 2 | ||||
-rw-r--r-- | sys/vm/pmap.h | 2 | ||||
-rw-r--r-- | sys/vm/swap_pager.c | 2 | ||||
-rw-r--r-- | sys/vm/swap_pager.h | 2 | ||||
-rw-r--r-- | sys/vm/vm.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_extern.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_fault.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_glue.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_inherit.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_init.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_kern.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_kern.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_map.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_map.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_meter.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_mmap.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_object.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_object.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_page.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_page.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_pageout.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_pageout.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_pager.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_pager.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_param.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_prot.h | 2 | ||||
-rw-r--r-- | sys/vm/vm_swap.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_unix.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_zone.c | 2 | ||||
-rw-r--r-- | sys/vm/vm_zone.h | 2 | ||||
-rw-r--r-- | sys/vm/vnode_pager.c | 2 | ||||
-rw-r--r-- | sys/vm/vnode_pager.h | 2 |
34 files changed, 34 insertions, 34 deletions
diff --git a/sys/vm/default_pager.c b/sys/vm/default_pager.c index a850260dd7d61..91115f4115ac4 100644 --- a/sys/vm/default_pager.c +++ b/sys/vm/default_pager.c @@ -36,7 +36,7 @@ * physically freed after having been cleaned and even then vm_page->swapblk * is maintained whenever a resident page also has swap backing store. * - * $Id: default_pager.c,v 1.18 1999/01/21 09:33:06 dillon Exp $ + * $FreeBSD$ */ #include <sys/param.h> diff --git a/sys/vm/default_pager.h b/sys/vm/default_pager.h index 58911450a5ef0..842969accd4c8 100644 --- a/sys/vm/default_pager.h +++ b/sys/vm/default_pager.h @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $FreeBSD$ */ #ifndef _DEFAULT_PAGER_H_ diff --git a/sys/vm/device_pager.c b/sys/vm/device_pager.c index 0652b277cab4e..d08c14bc5d051 100644 --- a/sys/vm/device_pager.c +++ b/sys/vm/device_pager.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)device_pager.c 8.1 (Berkeley) 6/11/93 - * $Id: device_pager.c,v 1.42 1999/05/13 04:02:07 luoqi Exp $ + * $FreeBSD$ */ #include <sys/param.h> diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h index 32d1846e15b68..194ac283b309a 100644 --- a/sys/vm/pmap.h +++ b/sys/vm/pmap.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: pmap.h,v 1.30 1999/04/23 20:29:57 dt Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c index 9ba1770569469..a3e603b1d70c7 100644 --- a/sys/vm/swap_pager.c +++ b/sys/vm/swap_pager.c @@ -64,7 +64,7 @@ * * @(#)swap_pager.c 8.9 (Berkeley) 3/21/94 * - * $Id: swap_pager.c,v 1.123 1999/08/17 05:56:00 alc Exp $ + * $FreeBSD$ */ #include <sys/param.h> diff --git a/sys/vm/swap_pager.h b/sys/vm/swap_pager.h index 50acaf115dc70..4557036b8a50c 100644 --- a/sys/vm/swap_pager.h +++ b/sys/vm/swap_pager.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)swap_pager.h 7.1 (Berkeley) 12/5/90 - * $Id: swap_pager.h,v 1.23 1999/01/21 08:29:10 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm.h b/sys/vm/vm.h index 19ea10e5eb785..1fd27452dd039 100644 --- a/sys/vm/vm.h +++ b/sys/vm/vm.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm.h 8.2 (Berkeley) 12/13/93 - * $Id$ + * $FreeBSD$ */ #ifndef VM_H diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h index 93c9c606afa65..c8b90ba723203 100644 --- a/sys/vm/vm_extern.h +++ b/sys/vm/vm_extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_extern.h 8.2 (Berkeley) 1/12/94 - * $Id: vm_extern.h,v 1.41 1999/04/13 19:17:15 peter Exp $ + * $FreeBSD$ */ #ifndef _VM_EXTERN_H_ diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c index dd53ad9c57b71..7431e53418df3 100644 --- a/sys/vm/vm_fault.c +++ b/sys/vm/vm_fault.c @@ -66,7 +66,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_fault.c,v 1.103 1999/07/20 05:46:56 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index a83d029a57153..e53079a43a0f3 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -59,7 +59,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_glue.c,v 1.87 1999/07/21 18:02:26 alc Exp $ + * $FreeBSD$ */ #include "opt_rlimit.h" diff --git a/sys/vm/vm_inherit.h b/sys/vm/vm_inherit.h index b3cfbd8126364..8d7b7f6df5010 100644 --- a/sys/vm/vm_inherit.h +++ b/sys/vm/vm_inherit.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 4eb8acce353f0..f7f1df84a1999 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_init.c,v 1.17 1998/02/04 22:33:45 eivind Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c index 6602ee57a7e0f..409c5f487fdeb 100644 --- a/sys/vm/vm_kern.c +++ b/sys/vm/vm_kern.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.c,v 1.57 1999/08/15 21:55:19 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_kern.h b/sys/vm/vm_kern.h index 0f470bd3c7c85..9be497653d807 100644 --- a/sys/vm/vm_kern.h +++ b/sys/vm/vm_kern.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_kern.h,v 1.18 1999/08/15 21:55:20 alc Exp $ + * $FreeBSD$ */ #ifndef _VM_VM_KERN_H_ diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index 6ea4395b3b83a..03633e99d95cc 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.c,v 1.175 1999/08/10 04:50:20 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index f12c042cd6e8c..c5fbee562cbca 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.h,v 1.47 1999/08/23 18:08:34 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c index 1f355d4e68288..4e7f0fb12c3d2 100644 --- a/sys/vm/vm_meter.c +++ b/sys/vm/vm_meter.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)vm_meter.c 8.4 (Berkeley) 1/4/94 - * $Id: vm_meter.c,v 1.30 1999/02/07 21:48:22 dillon Exp $ + * $FreeBSD$ */ #include <sys/param.h> diff --git a/sys/vm/vm_mmap.c b/sys/vm/vm_mmap.c index fe9bf90427b9c..9fb8458bc1a0a 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.100 1999/06/05 18:21:53 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index 7ff5175a73b91..0ed361db755e5 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.c,v 1.165 1999/08/15 21:55:20 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index 62e52e9ee2835..385ef70ca0df7 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.h,v 1.58 1999/07/16 05:11:37 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_page.c b/sys/vm/vm_page.c index c384580c0175b..f6db00ef98a0f 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.140 1999/08/17 18:09:01 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_page.h b/sys/vm/vm_page.h index 7a93d18b2d500..6ffb8676eebb6 100644 --- a/sys/vm/vm_page.h +++ b/sys/vm/vm_page.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_page.h,v 1.69 1999/08/17 04:02:33 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index 7ce3a3a7f7a82..bc8784cc587d5 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -65,7 +65,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.c,v 1.145 1999/08/17 00:07:35 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_pageout.h b/sys/vm/vm_pageout.h index 68c0561fc5e80..7af6b06ff0f18 100644 --- a/sys/vm/vm_pageout.h +++ b/sys/vm/vm_pageout.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.h,v 1.23 1998/01/22 17:30:43 dyson Exp $ + * $FreeBSD$ */ #ifndef _VM_VM_PAGEOUT_H_ diff --git a/sys/vm/vm_pager.c b/sys/vm/vm_pager.c index f4639e5b34218..70452ed04ebdd 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.50 1999/07/04 00:25:38 mckusick Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_pager.h b/sys/vm/vm_pager.h index aff14ab29aef9..d5df7c8f0ec7e 100644 --- a/sys/vm/vm_pager.h +++ b/sys/vm/vm_pager.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vm_pager.h 8.4 (Berkeley) 1/12/94 - * $Id: vm_pager.h,v 1.21 1999/03/14 09:20:00 julian Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index a3680c48c693e..66733cc4b1ca1 100644 --- a/sys/vm/vm_param.h +++ b/sys/vm/vm_param.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_param.h,v 1.10 1999/06/20 04:55:29 alc Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_prot.h b/sys/vm/vm_prot.h index cdddcea786a51..68e552e018adc 100644 --- a/sys/vm/vm_prot.h +++ b/sys/vm/vm_prot.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_prot.h,v 1.7 1997/02/22 09:48:38 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c index a2218cdbc4419..8a178bd895c83 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.83 1999/08/24 05:58:35 green Exp $ + * $FreeBSD$ */ #include "opt_swap.h" diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c index d095283888ba9..f81101b2e78a9 100644 --- a/sys/vm/vm_unix.c +++ b/sys/vm/vm_unix.c @@ -38,7 +38,7 @@ * from: Utah $Hdr: vm_unix.c 1.1 89/11/07$ * * @(#)vm_unix.c 8.1 (Berkeley) 6/11/93 - * $Id: vm_unix.c,v 1.20 1999/02/09 01:39:29 dillon Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vm_zone.c b/sys/vm/vm_zone.c index 0d684a74d3216..3befc9119c006 100644 --- a/sys/vm/vm_zone.c +++ b/sys/vm/vm_zone.c @@ -11,7 +11,7 @@ * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * - * $Id: vm_zone.c,v 1.25 1999/01/08 17:31:29 eivind Exp $ + * $FreeBSD$ */ #include <sys/param.h> diff --git a/sys/vm/vm_zone.h b/sys/vm/vm_zone.h index 8fe91d1e1aaf0..b8aa933b3c37a 100644 --- a/sys/vm/vm_zone.h +++ b/sys/vm/vm_zone.h @@ -11,7 +11,7 @@ * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * - * $Id: vm_zone.h,v 1.11 1999/01/08 17:31:30 eivind Exp $ + * $FreeBSD$ */ #ifndef _SYS_ZONE_H diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c index c44391c1ee975..367d3a39f3981 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.112 1999/07/01 19:53:43 peter Exp $ + * $FreeBSD$ */ /* diff --git a/sys/vm/vnode_pager.h b/sys/vm/vnode_pager.h index b833e635ff269..339851d21b656 100644 --- a/sys/vm/vnode_pager.h +++ b/sys/vm/vnode_pager.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vnode_pager.h 8.1 (Berkeley) 6/11/93 - * $Id: vnode_pager.h,v 1.11 1998/02/26 06:39:59 msmith Exp $ + * $FreeBSD$ */ #ifndef _VNODE_PAGER_ |