svn commit: r266302 - stable/10/sys/vm
Konstantin Belousov
kib at FreeBSD.org
Sat May 17 11:29:33 UTC 2014
Author: kib
Date: Sat May 17 11:29:32 2014
New Revision: 266302
URL: http://svnweb.freebsd.org/changeset/base/266302
Log:
MFC r265825:
When printing the map with the ddb 'show procvm' command, do not dump
page queues for the backing objects.
Modified:
stable/10/sys/vm/vm_map.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/vm/vm_map.c
==============================================================================
--- stable/10/sys/vm/vm_map.c Sat May 17 11:27:36 2014 (r266301)
+++ stable/10/sys/vm/vm_map.c Sat May 17 11:29:32 2014 (r266302)
@@ -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;
}
}
More information about the svn-src-stable
mailing list