Now that vm_map_insert() sets MAP_ENTRY_GROWS_{DOWN,UP} on the stack entries
that it creates (r267645), we can place the check that blocks map entry coalescing on stack entries in vm_map_simplify_entry() where it properly belongs. Reviewed by: kib
This commit is contained in:
parent
b037ca43df
commit
eaaf9f7fce
@ -1292,11 +1292,11 @@ vm_map_insert(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
|
|||||||
map->size += new_entry->end - new_entry->start;
|
map->size += new_entry->end - new_entry->start;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* It may be possible to merge the new entry with the next and/or
|
* Try to coalesce the new entry with both the previous and next
|
||||||
* previous entries. However, due to MAP_STACK_* being a hack, a
|
* entries in the list. Previously, we only attempted to coalesce
|
||||||
* panic can result from merging such entries.
|
* with the previous entry when object is NULL. Here, we handle the
|
||||||
|
* other cases, which are less common.
|
||||||
*/
|
*/
|
||||||
if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0)
|
|
||||||
vm_map_simplify_entry(map, new_entry);
|
vm_map_simplify_entry(map, new_entry);
|
||||||
|
|
||||||
if (cow & (MAP_PREFAULT|MAP_PREFAULT_PARTIAL)) {
|
if (cow & (MAP_PREFAULT|MAP_PREFAULT_PARTIAL)) {
|
||||||
@ -1512,7 +1512,8 @@ vm_map_simplify_entry(vm_map_t map, vm_map_entry_t entry)
|
|||||||
vm_map_entry_t next, prev;
|
vm_map_entry_t next, prev;
|
||||||
vm_size_t prevsize, esize;
|
vm_size_t prevsize, esize;
|
||||||
|
|
||||||
if (entry->eflags & (MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_IS_SUB_MAP))
|
if ((entry->eflags & (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP |
|
||||||
|
MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_IS_SUB_MAP)) != 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
prev = entry->prev;
|
prev = entry->prev;
|
||||||
|
Loading…
Reference in New Issue
Block a user