Searched refs:holes_list (Results 1 – 4 of 4) sorted by relevance
182 if (hole_entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_delete_hole()183 if (hole_entry->vme_next == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_delete_hole()184 map->holes_list = NULL; in vm_map_delete_hole()189 l_next = (vm_map_entry_t) map->holes_list->next; in vm_map_delete_hole()190 l_prev = (vm_map_entry_t) map->holes_list->prev; in vm_map_delete_hole()191 map->holes_list = (struct vm_map_links*) l_next; in vm_map_delete_hole()224 if (map->holes_list == NULL) { in check_map_sanity()228 hole_entry = CAST_DOWN(vm_map_entry_t, map->holes_list); in check_map_sanity()238 if (hole_entry == CAST_DOWN(vm_map_entry_t, map->holes_list)) { in check_map_sanity()266 if (hole_entry == CAST_DOWN(vm_map_entry_t, map->holes_list)) { in check_map_sanity()[all …]
291 entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_store_find_space_backwards()299 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_backwards()348 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_backwards()406 entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_store_find_space_forward()414 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_forward()479 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_forward()
1272 head_entry = hole_entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_disable_hole_optimization()1288 map->holes_list = NULL; in vm_map_disable_hole_optimization()1492 result->holes_list = result->hole_hint = hole_entry; in vm_map_create_options()1526 struct vm_map_links *hole = map->holes_list; in vm_map_adjust_offsets()19667 if (map->holes_list->prev->vme_end == old_max_offset) { in vm_map_set_max_addr()19671 map->holes_list->prev->vme_end = map->max_offset; in vm_map_set_max_addr()19680 new_hole->prev = map->holes_list->prev; in vm_map_set_max_addr()19681 new_hole->next = (struct vm_map_entry *)map->holes_list; in vm_map_set_max_addr()19682 map->holes_list->prev->links.next = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()19683 map->holes_list->prev = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()[all …]
596 #define holes_list f_s._holes macro