summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-07-10 02:00:56 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-07-10 22:08:18 +0200
commitef0ae1b884891af08626e8e52d62fdb02ec23ee1 (patch)
treec8719c4a290d29edb32977354397af5f423c3d43
parent78262cab3a92e09f63f5853d77db87620eac2543 (diff)
vm: drop debugging remnants
* vm/vm_object.c (vm_object_terminate): Drop debugging remnants.
-rw-r--r--vm/vm_object.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/vm/vm_object.c b/vm/vm_object.c
index 8c6bbab..deac0c2 100644
--- a/vm/vm_object.c
+++ b/vm/vm_object.c
@@ -588,10 +588,6 @@ void vm_object_terminate(
VM_PAGE_CHECK(p);
- if (p->busy && !p->absent)
- panic("vm_object_terminate.2 0x%x 0x%x",
- object, p);
-
VM_PAGE_FREE(p);
}
} else while (!queue_empty(&object->memq)) {
@@ -599,9 +595,6 @@ void vm_object_terminate(
VM_PAGE_CHECK(p);
- if (p->busy && !p->absent)
- panic("vm_object_terminate.3 0x%x 0x%x", object, p);
-
vm_page_lock_queues();
VM_PAGE_QUEUES_REMOVE(p);
vm_page_unlock_queues();
@@ -619,9 +612,6 @@ void vm_object_terminate(
goto free_page;
}
- if (p->fictitious)
- panic("vm_object_terminate.4 0x%x 0x%x", object, p);
-
if (!p->dirty)
p->dirty = pmap_is_modified(p->phys_addr);