mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
Fix function name in the panic message.
Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
8a28176add
commit
79d7993d98
1 changed files with 1 additions and 1 deletions
|
|
@ -428,7 +428,7 @@ vm_reserv_alloc_contig(vm_object_t object, vm_pindex_t pindex, u_long npages,
|
|||
msucc = TAILQ_FIRST(&object->memq);
|
||||
if (msucc != NULL) {
|
||||
KASSERT(msucc->pindex > pindex,
|
||||
("vm_reserv_alloc_page: pindex already allocated"));
|
||||
("vm_reserv_alloc_contig: pindex already allocated"));
|
||||
rv = vm_reserv_from_page(msucc);
|
||||
if (rv->object == object && vm_reserv_has_pindex(rv, pindex))
|
||||
goto found;
|
||||
|
|
|
|||
Loading…
Reference in a new issue