Searched refs:holes_list (Results 1 – 4 of 4) sorted by relevance
167 if (hole_entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_delete_hole()168 if (hole_entry->vme_next == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_delete_hole()169 map->holes_list = NULL; in vm_map_delete_hole()174 l_next = (vm_map_entry_t) map->holes_list->next; in vm_map_delete_hole()175 l_prev = (vm_map_entry_t) VML_PREV(map->holes_list); in vm_map_delete_hole()176 map->holes_list = (struct vm_map_links*) l_next; in vm_map_delete_hole()209 if (map->holes_list == NULL) { in check_map_sanity()213 hole_entry = CAST_DOWN(vm_map_entry_t, map->holes_list); in check_map_sanity()223 if (hole_entry == CAST_DOWN(vm_map_entry_t, map->holes_list)) { in check_map_sanity()251 if (hole_entry == CAST_DOWN(vm_map_entry_t, map->holes_list)) { in check_map_sanity()[all …]
334 entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_store_find_space_backwards()342 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_backwards()391 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_backwards()454 entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_store_find_space_forward()462 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_forward()527 if (entry == CAST_TO_VM_MAP_ENTRY(map->holes_list)) { in vm_map_store_find_space_forward()
434 #define holes_list f_s._holes macro
1537 head_entry = hole_entry = CAST_TO_VM_MAP_ENTRY(map->holes_list); in vm_map_disable_hole_optimization()1553 map->holes_list = NULL; in vm_map_disable_hole_optimization()1801 result->holes_list = result->hole_hint = hole_entry; in vm_map_create_options()1836 struct vm_map_links *hole = map->holes_list; in vm_map_adjust_offsets()21863 if (map->holes_list->prev->vme_end == old_max_offset) { in vm_map_set_max_addr()21867 map->holes_list->prev->vme_end = map->max_offset; in vm_map_set_max_addr()21878 new_hole->prev = map->holes_list->prev; in vm_map_set_max_addr()21879 new_hole->next = (struct vm_map_entry *)map->holes_list; in vm_map_set_max_addr()21880 map->holes_list->prev->vme_next = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()21881 map->holes_list->prev = (struct vm_map_entry *)new_hole; in vm_map_set_max_addr()[all …]