Print curpmap in "show pcpu" command.

Approved by:	kib (mentor)
This commit is contained in:
Svatopluk Kraus 2016-01-07 12:31:49 +00:00
parent a72d531f35
commit 514ba65500

View File

@ -152,6 +152,10 @@ int db_frame(struct db_variable *vp, db_expr_t *valp, int rw)
void
db_show_mdpcpu(struct pcpu *pc)
{
#if __ARM_ARCH >= 6
db_printf("curpmap = %p\n", pc->pc_curpmap);
#endif
}
int
db_validate_address(vm_offset_t addr)