Skip to content

Commit

Permalink
When printing the map with the ddb 'show procvm' command, do not dump
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kostikbel committed May 10, 2014
1 parent 3d95614 commit 44bbc3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/vm/vm_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 44bbc3b

Please sign in to comment.