summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authorrnoland <rnoland@FreeBSD.org>2008-12-21 16:56:13 +0000
committerrnoland <rnoland@FreeBSD.org>2008-12-21 16:56:13 +0000
commit63e9bb0efa27c0ce3aad11403d5145b46448135a (patch)
tree6d41a9bd6b754ee6985b7e17ad198c4d60b0c67c /sys/vm
parent1d28962c2db5a0b06b4add1cbf0744edaa45f4a3 (diff)
downloadFreeBSD-src-63e9bb0efa27c0ce3aad11403d5145b46448135a.zip
FreeBSD-src-63e9bb0efa27c0ce3aad11403d5145b46448135a.tar.gz
Fix printing of KASSERT message missed in r163604.
Approved by: kib
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 159f535..c7ca318 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -672,7 +672,7 @@ vm_object_terminate(vm_object_t object)
while ((p = TAILQ_FIRST(&object->memq)) != NULL) {
KASSERT(!p->busy && (p->oflags & VPO_BUSY) == 0,
("vm_object_terminate: freeing busy page %p "
- "p->busy = %d, p->flags %x\n", p, p->busy, p->flags));
+ "p->busy = %d, p->oflags %x\n", p, p->busy, p->oflags));
if (p->wire_count == 0) {
vm_page_free(p);
cnt.v_pfree++;
OpenPOWER on IntegriCloud