Home | History | Annotate | Download | only in uvm

Lines Matching refs:oldent

2602 	struct vm_map_entry *oldent, *last;
2610 if (!uvm_map_lookup_entry(map, start, &oldent)) {
2618 if (end < oldent->end) {
2619 UVM_MAP_CLIP_END(map, oldent, end);
2621 if (oldent->start != start || oldent->end != end ||
2622 oldent->object.uvm_obj != NULL || oldent->aref.ar_amap != NULL) {
2677 if (map->first_free == oldent)
2680 last->next = oldent->next;
2684 uvm_rb_remove(map, oldent);
2686 newents->prev = oldent->prev;
2703 clear_hints(map, oldent);
2704 uvm_map_entry_unlink(map, oldent);
2714 *oldentryp = oldent;