Changeset 84170 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 6, 2020 4:50:36 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInternal.h
r83987 r84170 631 631 /** @copydoc PDMIOMMUREGR3::pfnMemRead */ 632 632 DECLR3CALLBACKMEMBER(int, pfnMemRead,(PPDMDEVINS pDevIns, uint16_t uDevId, uint64_t uDva, size_t cbRead, 633 PRTGCPHYS pGCPhys Out));633 PRTGCPHYS pGCPhysSpa)); 634 634 /** @copydoc PDMIOMMUREGR3::pfnMemWrite */ 635 635 DECLR3CALLBACKMEMBER(int, pfnMemWrite,(PPDMDEVINS pDevIns, uint16_t uDevId, uint64_t uDva, size_t cbWrite, 636 PRTGCPHYS pGCPhys Out));636 PRTGCPHYS pGCPhysSpa)); 637 637 } PDMIOMMU; 638 638 … … 651 651 /** @copydoc PDMIOMMUREGR0::pfnMemRead */ 652 652 DECLR0CALLBACKMEMBER(int, pfnMemRead,(PPDMDEVINS pDevIns, uint16_t uDevId, uint64_t uDva, size_t cbRead, 653 PRTGCPHYS pGCPhys Out));653 PRTGCPHYS pGCPhysSpa)); 654 654 /** @copydoc PDMIOMMUREGR3::pfnMemWrite */ 655 655 DECLR0CALLBACKMEMBER(int, pfnMemWrite,(PPDMDEVINS pDevIns, uint16_t uDevId, uint64_t uDva, size_t cbWrite, 656 PRTGCPHYS pGCPhys Out));656 PRTGCPHYS pGCPhysSpa)); 657 657 } PDMIOMMUR0; 658 658 /** Pointer to a ring-0 IOMMU data. */
Note:
See TracChangeset
for help on using the changeset viewer.