Remove vm_page_frees from kmem_malloc that are performed

by vm_map_delete/vm_object_page_remove anyway.
This commit is contained in:
Alan Cox 1999-03-12 08:05:49 +00:00
parent beef8a367c
commit b73d0eb905
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44682

View File

@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: vm_kern.c,v 1.51 1999/01/21 08:29:10 dillon Exp $
* $Id: vm_kern.c,v 1.52 1999/01/21 09:38:20 dillon Exp $
*/
/*
@ -340,12 +340,6 @@ retry:
VM_WAIT;
goto retry;
}
while (i != 0) {
i -= PAGE_SIZE;
m = vm_page_lookup(kmem_object,
OFF_TO_IDX(offset + i));
vm_page_free(m);
}
vm_map_delete(map, addr, addr + size);
vm_map_unlock(map);
if (flags & M_ASLEEP) {