mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Eliminate a vm_page_free, busy panic, in kern_malloc.
This commit is contained in:
parent
712dc76e87
commit
99ea1af0a6
1 changed files with 2 additions and 1 deletions
|
|
@ -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.24 1996/05/10 19:28:54 wollman Exp $
|
||||
* $Id: vm_kern.c,v 1.25 1996/05/18 03:37:39 dyson Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
|
@ -347,6 +347,7 @@ retry:
|
|||
i -= PAGE_SIZE;
|
||||
m = vm_page_lookup(kmem_object,
|
||||
OFF_TO_IDX(offset + i));
|
||||
PAGE_WAKEUP(m);
|
||||
vm_page_free(m);
|
||||
}
|
||||
vm_map_delete(map, addr, addr + size);
|
||||
|
|
|
|||
Loading…
Reference in a new issue