In r288122, we changed vm_page_unwire() so that it returns a Boolean
indicating whether the page's wire count transitioned to zero. Use that return value in zbuf_page_free() rather than checking the wire count. MFC after: 1 week
This commit is contained in:
parent
2582d7a969
commit
e9bfbb02c5
@ -114,8 +114,7 @@ zbuf_page_free(vm_page_t pp)
|
||||
{
|
||||
|
||||
vm_page_lock(pp);
|
||||
vm_page_unwire(pp, PQ_INACTIVE);
|
||||
if (pp->wire_count == 0 && pp->object == NULL)
|
||||
if (vm_page_unwire(pp, PQ_INACTIVE) && pp->object == NULL)
|
||||
vm_page_free(pp);
|
||||
vm_page_unlock(pp);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user