Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Dec 2008 16:56:13 +0000 (UTC)
From:      Robert Noland <rnoland@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r186374 - head/sys/vm
Message-ID:  <200812211656.mBLGuDqF037454@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rnoland
Date: Sun Dec 21 16:56:13 2008
New Revision: 186374
URL: http://svn.freebsd.org/changeset/base/186374

Log:
  Fix printing of KASSERT message missed in r163604.
  
  Approved by:	kib

Modified:
  head/sys/vm/vm_object.c

Modified: head/sys/vm/vm_object.c
==============================================================================
--- head/sys/vm/vm_object.c	Sun Dec 21 14:04:10 2008	(r186373)
+++ head/sys/vm/vm_object.c	Sun Dec 21 16:56:13 2008	(r186374)
@@ -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++;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812211656.mBLGuDqF037454>