Changeset 88842 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- May 3, 2021 4:50:40 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144176
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuIntel.cpp
r88841 r88842 1328 1328 { 1329 1329 /* At present, we only care about the low 32-bits, high 32-bits are data. */ 1330 Assert(offReg == VTD_MMIO_OFF_IQA_REG); 1330 Assert(offReg == VTD_MMIO_OFF_IQA_REG); NOREF(offReg); 1331 1331 1332 1332 /** @todo What happens if IQA_REG is written when dmarInvQueueCanProcessRequests … … 1877 1877 PCDMAR pThis = PDMDEVINS_2_DATA(pDevIns, PDMAR); 1878 1878 PCDMARR3 pThisR3 = PDMDEVINS_2_DATA_CC(pDevIns, PCDMARR3); 1879 PCPDMPCIDEV pPciDev = pDevIns->apPciDevs[0];1880 PDMPCIDEV_ASSERT_VALID(pDevIns, pPciDev);1881 1882 1879 bool const fVerbose = RTStrCmp(pszArgs, "verbose") == 0; 1883 1880 1884 1881 /* 1885 * We lock the device to get a consistent register state , butit is1886 * ASSUMED pHlp->pfnPrintf is expensive, so we copy the registers into1887 * temporaries and release the lock ASAP.1882 * We lock the device to get a consistent register state as it is 1883 * ASSUMED pHlp->pfnPrintf is expensive, so we copy the registers (the 1884 * ones we care about here) into temporaries and release the lock ASAP. 1888 1885 * 1889 1886 * Order of register being read and outputted is in accordance with the
Note:
See TracChangeset
for help on using the changeset viewer.