Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 May 2013 19:53:31 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r251150 - head/sys/vm
Message-ID:  <201305301953.r4UJrVf5031123@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



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