From owner-svn-src-all@FreeBSD.ORG Thu May 30 19:53:31 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B50F7449; Thu, 30 May 2013 19:53:31 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id A7BD91AA; Thu, 30 May 2013 19:53:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4UJrVoo031124; Thu, 30 May 2013 19:53:31 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4UJrVf5031123; Thu, 30 May 2013 19:53:31 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201305301953.r4UJrVf5031123@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 30 May 2013 19:53:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251150 - head/sys/vm X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 May 2013 19:53:31 -0000 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);