svn commit: r349550 - head/sys/vm
Doug Moore
dougm at FreeBSD.org
Sun Jun 30 02:08:14 UTC 2019
Author: dougm
Date: Sun Jun 30 02:08:13 2019
New Revision: 349550
URL: https://svnweb.freebsd.org/changeset/base/349550
Log:
Remove a call to vm_map_simplify_entry from _vm_map_clip_start.
Recent changes to vm_map_protect have made it unnecessary.
Reviewed by: alc
Approved by: kib (mentor)
Tested by: pho
Differential Revision: https://reviews.freebsd.org/D20633
Modified:
head/sys/vm/vm_map.c
Modified: head/sys/vm/vm_map.c
==============================================================================
--- head/sys/vm/vm_map.c Sat Jun 29 18:41:40 2019 (r349549)
+++ head/sys/vm/vm_map.c Sun Jun 30 02:08:13 2019 (r349550)
@@ -2186,7 +2186,6 @@ _vm_map_clip_start(vm_map_t map, vm_map_entry_t entry,
VM_MAP_ASSERT_LOCKED(map);
KASSERT(entry->end > start && entry->start < start,
("_vm_map_clip_start: invalid clip of entry %p", entry));
- vm_map_simplify_entry(map, entry);
/*
* Create a backing object now, if none exists, so that more individual
More information about the svn-src-all
mailing list