Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 May 2014 16:36:13 +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: r265825 - head/sys/vm
Message-ID:  <201405101636.s4AGaD4S005705@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sat May 10 16:36:13 2014
New Revision: 265825
URL: http://svnweb.freebsd.org/changeset/base/265825

Log:
  When printing the map with the ddb 'show procvm' command, do not dump
  page queues for the backing objects.  The queues are huge and clutter
  the display, when mostly the map entries and its backing storage is
  interesting.
  
  The page queues can be seen with ddb 'show object' command.
  
  Reviewed by:	alc
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/vm/vm_map.c

Modified: head/sys/vm/vm_map.c
==============================================================================
--- head/sys/vm/vm_map.c	Sat May 10 16:30:48 2014	(r265824)
+++ head/sys/vm/vm_map.c	Sat May 10 16:36:13 2014	(r265825)
@@ -4154,7 +4154,7 @@ vm_map_print(vm_map_t map)
 				db_indent += 2;
 				vm_object_print((db_expr_t)(intptr_t)
 						entry->object.vm_object,
-						1, 0, (char *)0);
+						0, 0, (char *)0);
 				db_indent -= 2;
 			}
 		}



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