Correct a couple of assertion messages in vm_page_reclaim_run().

MFC after:	3 days
This commit is contained in:
markj 2018-03-23 14:38:56 +00:00
parent 481ced23ce
commit d822789ca8

View File

@ -2473,7 +2473,7 @@ vm_page_reclaim_run(int req_class, int domain, u_long npages, vm_page_t m_run,
goto unlock;
}
KASSERT(m_new->wire_count == 0,
("page %p is wired", m));
("page %p is wired", m_new));
/*
* Replace "m" with the new page. For
@ -2485,7 +2485,7 @@ vm_page_reclaim_run(int req_class, int domain, u_long npages, vm_page_t m_run,
pmap_remove_all(m);
m_new->aflags = m->aflags;
KASSERT(m_new->oflags == VPO_UNMANAGED,
("page %p is managed", m));
("page %p is managed", m_new));
m_new->oflags = m->oflags & VPO_NOSYNC;
pmap_copy_page(m, m_new);
m_new->valid = m->valid;