diff options
Diffstat (limited to 'sys/vm/vm_object.c')
| -rw-r--r-- | sys/vm/vm_object.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index e6977901359ea..ebb3c033b7c62 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -621,11 +621,9 @@ vm_object_terminate(vm_object_t object) ("vm_object_terminate: freeing busy page %p " "p->busy = %d, p->flags %x\n", p, p->busy, p->flags)); if (p->wire_count == 0) { - vm_page_busy(p); vm_page_free(p); cnt.v_pfree++; } else { - vm_page_busy(p); vm_page_remove(p); } } @@ -1803,7 +1801,6 @@ again: if (p->valid & p->dirty) continue; } - vm_page_busy(p); pmap_remove_all(p); vm_page_free(p); } |
