svn commit: r251150 - head/sys/vm

Konstantin Belousov kib at FreeBSD.org
Thu May 30 19:53:31 UTC 2013


Author: kib
Date: Thu May 30 19:53:31 2013
New Revision: 251150
URL: http://svnweb.freebsd.org/changeset/base/251150

Log:
  Remove the capitalization in the assertion message.  Print the address
  of the object to get useful information from optimizated kernels dump.

Modified:
  head/sys/vm/vm_object.c

Modified: head/sys/vm/vm_object.c
==============================================================================
--- head/sys/vm/vm_object.c	Thu May 30 19:51:33 2013	(r251149)
+++ head/sys/vm/vm_object.c	Thu May 30 19:53:31 2013	(r251150)
@@ -557,7 +557,7 @@ vm_object_deallocate(vm_object_t object)
 			    (object->type == OBJT_DEFAULT ||
 			     object->type == OBJT_SWAP)) {
 				KASSERT((object->flags & OBJ_TMPFS) == 0,
-				    ("Shadowed tmpfs v_object"));
+				    ("shadowed tmpfs v_object %p", object));
 				vm_object_t robject;
 
 				robject = LIST_FIRST(&object->shadow_head);


More information about the svn-src-head mailing list