summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>1999-08-15 21:55:20 +0000
committeralc <alc@FreeBSD.org>1999-08-15 21:55:20 +0000
commitd7ab53a49abe7a6364eb6732e2a1603685110f88 (patch)
tree996a2f1ea4348d94290259e7970350c4bb4e918e /sys/vm
parentc7316e27a3b4b516d65eba392bb9c5444605a079 (diff)
downloadFreeBSD-src-d7ab53a49abe7a6364eb6732e2a1603685110f88.zip
FreeBSD-src-d7ab53a49abe7a6364eb6732e2a1603685110f88.tar.gz
Remove the declarations for "vm_map_t u_map". It's been unused
since i386/i386/pmap rev 1.190. (The alpha never used it.)
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_kern.c3
-rw-r--r--sys/vm/vm_kern.h3
-rw-r--r--sys/vm/vm_object.c4
3 files changed, 3 insertions, 7 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index 794c835..e3838fc 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.55 1999/06/08 17:03:28 dt Exp $
+ * $Id: vm_kern.c,v 1.56 1999/07/01 19:53:40 peter Exp $
*/
/*
@@ -88,7 +88,6 @@ vm_map_t kernel_map=0;
vm_map_t kmem_map=0;
vm_map_t exec_map=0;
vm_map_t clean_map=0;
-vm_map_t u_map=0;
vm_map_t buffer_map=0;
vm_map_t mb_map=0;
int mb_map_full=0;
diff --git a/sys/vm/vm_kern.h b/sys/vm/vm_kern.h
index ec92eb6..dbc6da8 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.16 1997/10/10 18:18:46 phk Exp $
+ * $Id: vm_kern.h,v 1.17 1997/10/11 10:39:19 peter Exp $
*/
#ifndef _VM_VM_KERN_H_
@@ -77,7 +77,6 @@ extern vm_map_t io_map;
extern vm_map_t clean_map;
extern vm_map_t phys_map;
extern vm_map_t exec_map;
-extern vm_map_t u_map;
extern vm_offset_t kernel_vm_end;
/* XXX - elsewhere? */
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 389e392..22fec87 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.163 1999/08/12 06:33:56 alc Exp $
+ * $Id: vm_object.c,v 1.164 1999/08/12 08:22:57 alc Exp $
*/
/*
@@ -1610,8 +1610,6 @@ vm_object_in_map( object)
return 1;
if( _vm_object_in_map( mb_map, object, 0))
return 1;
- if( _vm_object_in_map( u_map, object, 0))
- return 1;
return 0;
}
OpenPOWER on IntegriCloud