Changeset 87848 in vbox
- Timestamp:
- Feb 23, 2021 1:15:38 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuAmd.cpp
r87842 r87848 5283 5283 pHlp->pfnPrintf(pHlp, " Size = %#x (%u bytes)\n", DevTabBar.n.u9Size, 5284 5284 IOMMU_GET_DEV_TAB_LEN(&DevTabBar)); 5285 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", DevTabBar.n.u40Base << X86_PAGE_4K_SHIFT); 5285 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5286 DevTabBar.n.u40Base << X86_PAGE_4K_SHIFT); 5286 5287 } 5287 5288 } … … 5295 5296 if (fVerbose) 5296 5297 { 5297 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", CmdBufBar.n.u40Base << X86_PAGE_4K_SHIFT); 5298 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5299 CmdBufBar.n.u40Base << X86_PAGE_4K_SHIFT); 5298 5300 pHlp->pfnPrintf(pHlp, " Length = %u (%u entries, %u bytes)\n", uEncodedLen, 5299 5301 cEntries, cbBuffer); … … 5309 5311 if (fVerbose) 5310 5312 { 5311 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", EvtLogBar.n.u40Base << X86_PAGE_4K_SHIFT); 5313 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5314 EvtLogBar.n.u40Base << X86_PAGE_4K_SHIFT); 5312 5315 pHlp->pfnPrintf(pHlp, " Length = %u (%u entries, %u bytes)\n", uEncodedLen, 5313 5316 cEntries, cbBuffer); … … 5434 5437 if (fVerbose) 5435 5438 { 5436 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", PprLogBar.n.u40Base << X86_PAGE_4K_SHIFT); 5439 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5440 PprLogBar.n.u40Base << X86_PAGE_4K_SHIFT); 5437 5441 pHlp->pfnPrintf(pHlp, " Length = %u (%u entries, %u bytes)\n", uEncodedLen, 5438 5442 cEntries, cbBuffer); … … 5470 5474 if (fVerbose) 5471 5475 { 5472 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", GALogBar.n.u40Base << X86_PAGE_4K_SHIFT); 5476 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5477 GALogBar.n.u40Base << X86_PAGE_4K_SHIFT); 5473 5478 pHlp->pfnPrintf(pHlp, " Length = %u (%u entries, %u bytes)\n", uEncodedLen, 5474 5479 cEntries, cbBuffer); … … 5491 5496 if (fVerbose) 5492 5497 { 5493 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", PprLogBBar.n.u40Base << X86_PAGE_4K_SHIFT); 5498 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5499 PprLogBBar.n.u40Base << X86_PAGE_4K_SHIFT); 5494 5500 pHlp->pfnPrintf(pHlp, " Length = %u (%u entries, %u bytes)\n", uEncodedLen, 5495 5501 cEntries, cbBuffer); … … 5505 5511 if (fVerbose) 5506 5512 { 5507 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", EvtLogBBar.n.u40Base << X86_PAGE_4K_SHIFT); 5513 pHlp->pfnPrintf(pHlp, " Base address = %#RX64\n", 5514 EvtLogBBar.n.u40Base << X86_PAGE_4K_SHIFT); 5508 5515 pHlp->pfnPrintf(pHlp, " Length = %u (%u entries, %u bytes)\n", uEncodedLen, 5509 5516 cEntries, cbBuffer);
Note:
See TracChangeset
for help on using the changeset viewer.