summaryrefslogtreecommitdiff
path: root/vm/vm_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r--vm/vm_map.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c
index 193f1fc2..58ff2cda 100644
--- a/vm/vm_map.c
+++ b/vm/vm_map.c
@@ -559,8 +559,6 @@ static void
vm_map_link(struct vm_map *map, struct vm_map_entry *entry,
struct vm_map_entry *prev, struct vm_map_entry *next)
{
- assert((prev == NULL) || (next == NULL));
-
if ((prev == NULL) && (next == NULL))
list_insert_tail(&map->entry_list, &entry->list_node);
else if (prev == NULL)