Changeset 90185 in vbox
- Timestamp:
- Jul 14, 2021 3:05:44 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145704
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuAmd.cpp
r90110 r90185 3522 3522 3523 3523 /* Raise an I/O page fault for out-of-bounds acccess. */ 3524 LogFunc(("Out-of-bounds device table entry. idDevice=%#x offDte=%u cbDevTabSeg=%u -> IOPF\n", idDevice, offDte, cbDevTabSeg)); 3524 3525 EVT_IO_PAGE_FAULT_T EvtIoPageFault; 3525 3526 iommuAmdIoPageFaultEventInit(idDevice, 0 /* idDomain */, 0 /* uIova */, false /* fPresent */, false /* fRsvdNotZero */, … … 3696 3697 else 3697 3698 { 3698 LogFunc(("Page table entry not present (idDevice=%#x)-> IOPF\n", idDevice));3699 LogFunc(("Page table entry not present. idDevice=%#x uIova=%#RX64 -> IOPF\n", idDevice)); 3699 3700 EVT_IO_PAGE_FAULT_T EvtIoPageFault; 3700 3701 iommuAmdIoPageFaultEventInit(idDevice, pDte->n.u16DomainId, uIova, false /* fPresent */, false /* fRsvdNotZero */, … … 3743 3744 else 3744 3745 { 3745 LogFunc(("Page table entry access denied (idDevice=%#x fPerm=%#x fPtePerm=%#x)-> IOPF\n", idDevice, fPerm, fPtePerm));3746 LogFunc(("Page table entry access denied. idDevice=%#x fPerm=%#x fPtePerm=%#x -> IOPF\n", idDevice, fPerm, fPtePerm)); 3746 3747 EVT_IO_PAGE_FAULT_T EvtIoPageFault; 3747 3748 iommuAmdIoPageFaultEventInit(idDevice, pDte->n.u16DomainId, uIova, true /* fPresent */, false /* fRsvdNotZero */, … … 3782 3783 } 3783 3784 3784 LogFunc(("Page size invalid cShift=%u -> IOPF\n", cShift));3785 LogFunc(("Page size invalid. idDevice=%#x cShift=%u -> IOPF\n", idDevice, cShift)); 3785 3786 EVT_IO_PAGE_FAULT_T EvtIoPageFault; 3786 3787 iommuAmdIoPageFaultEventInit(idDevice, pDte->n.u16DomainId, uIova, true /* fPresent */, false /* fRsvdNotZero */,
Note:
See TracChangeset
for help on using the changeset viewer.