aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_map.c
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-02-01 08:49:30 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-02-01 08:49:30 +0000
commitb406c0f55cd1c3e246272562fde0b1df1f89e020 (patch)
tree73a447d21cd8e7c3522d42755041ce19e682599a /sys/vm/vm_map.c
parent06fd697d158b4322c92284a8e5974e02522872ae (diff)
Notes
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r--sys/vm/vm_map.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 7bf769617683..b656b5bd18f8 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.144 1999/01/28 00:57:57 dillon Exp $
+ * $Id: vm_map.c,v 1.145 1999/01/31 14:09:25 julian Exp $
*/
/*
@@ -909,8 +909,6 @@ vm_map_simplify_entry(map, entry)
if ( (prev->end == entry->start) &&
(prev->object.vm_object == entry->object.vm_object) &&
(!prev->object.vm_object ||
- (prev->object.vm_object->behavior == entry->object.vm_object->behavior)) &&
- (!prev->object.vm_object ||
(prev->offset + prevsize == entry->offset)) &&
(prev->eflags == entry->eflags) &&
(prev->protection == entry->protection) &&
@@ -935,8 +933,6 @@ vm_map_simplify_entry(map, entry)
esize = entry->end - entry->start;
if ((entry->end == next->start) &&
(next->object.vm_object == entry->object.vm_object) &&
- (!next->object.vm_object ||
- (next->object.vm_object->behavior == entry->object.vm_object->behavior)) &&
(!entry->object.vm_object ||
(entry->offset + esize == next->offset)) &&
(next->eflags == entry->eflags) &&