Changeset 87477 in vbox for trunk/include/VBox
- Timestamp:
- Jan 29, 2021 11:43:09 AM (4 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r87439 r87477 3053 3053 /** Command hardware failure. */ 3054 3054 #define VERR_IOMMU_CMD_HW_ERROR (-7213) 3055 /** IOMMU device is not present. */ 3056 #define VERR_IOMMU_NOT_PRESENT (-7214) 3055 3057 /** @} */ 3056 3058 -
trunk/include/VBox/vmm/pdmdev.h
r87371 r87477 1320 1320 * @returns VBox status code. 1321 1321 * @param pDevIns The IOMMU device instance. 1322 * @param uDev IdThe device identifier (bus, device, function).1322 * @param uDeviceId The device identifier (bus, device, function). 1323 1323 * @param pMsiIn The source MSI. 1324 1324 * @param pMsiOut Where to store the remapped MSI. … … 1326 1326 * @thread Any. 1327 1327 */ 1328 DECLR0CALLBACKMEMBER(int, pfnMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDev Id, PCMSIMSG pMsiIn, PMSIMSG pMsiOut));1328 DECLR0CALLBACKMEMBER(int, pfnMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDeviceId, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)); 1329 1329 1330 1330 /** Just a safety precaution. */ … … 1390 1390 * @returns VBox status code. 1391 1391 * @param pDevIns The IOMMU device instance. 1392 * @param uDev IdThe device identifier (bus, device, function).1392 * @param uDeviceId The device identifier (bus, device, function). 1393 1393 * @param pMsiIn The source MSI. 1394 1394 * @param pMsiOut Where to store the remapped MSI. … … 1396 1396 * @thread Any. 1397 1397 */ 1398 DECLRCCALLBACKMEMBER(int, pfnMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDev Id, PCMSIMSG pMsiIn, PMSIMSG pMsiOut));1398 DECLRCCALLBACKMEMBER(int, pfnMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDeviceId, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)); 1399 1399 1400 1400 /** Just a safety precaution. */ … … 1460 1460 * @returns VBox status code. 1461 1461 * @param pDevIns The IOMMU device instance. 1462 * @param uDev IdThe device identifier (bus, device, function).1462 * @param uDeviceId The device identifier (bus, device, function). 1463 1463 * @param pMsiIn The source MSI. 1464 1464 * @param pMsiOut Where to store the remapped MSI. … … 1466 1466 * @thread Any. 1467 1467 */ 1468 DECLR3CALLBACKMEMBER(int, pfnMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDev Id, PCMSIMSG pMsiIn, PMSIMSG pMsiOut));1468 DECLR3CALLBACKMEMBER(int, pfnMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDeviceId, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)); 1469 1469 1470 1470 /** Just a safety precaution. */ … … 1834 1834 * @returns status code. 1835 1835 * @param pDevIns Device instance of the IOAPIC. 1836 * @param uDev Id The device ID (bus, device, function) for the source MSI.1836 * @param uDeviceId The device identifier (bus, device, function). 1837 1837 * @param pMsiIn The source MSI. 1838 1838 * @param pMsiOut Where to store the remapped MSI. … … 1840 1840 * @sa iommuAmdDeviceMsiRemap(). 1841 1841 */ 1842 DECLCALLBACKMEMBER(int, pfnIommuMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDev It, PCMSIMSG pMsiIn, PMSIMSG pMsiOut));1842 DECLCALLBACKMEMBER(int, pfnIommuMsiRemap,(PPDMDEVINS pDevIns, uint16_t uDeviceId, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)); 1843 1843 1844 1844 /** Just a safety precaution. */
Note:
See TracChangeset
for help on using the changeset viewer.