Print upper 32 bits in devmap table entries

If the devmap entry uses the upper 32 bits they wouldn't be printed in
devmap_dump_table(). This fixes that.

Submitted by:   Nicholas O'Brien <nickisobrien_gmail.com>
Sponsored by:   Axiado
This commit is contained in:
Philip Paeps 2019-12-20 03:40:53 +00:00
parent 6386edbb5a
commit 1b6dd6d772
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=355925

View File

@ -73,7 +73,7 @@ devmap_dump_table(int (*prfunc)(const char *, ...))
prfunc("Static device mappings:\n");
for (pd = devmap_table; pd->pd_size != 0; ++pd) {
prfunc(" 0x%08x - 0x%08x mapped at VA 0x%08x\n",
prfunc(" 0x%08jx - 0x%08jx mapped at VA 0x%08jx\n",
pd->pd_pa, pd->pd_pa + pd->pd_size - 1, pd->pd_va);
}
}