Changeset 83850 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Apr 20, 2020 11:35:14 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137379
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInternal.h
r83265 r83850 640 640 641 641 /** 642 * Ring-0 PDM IOMMU instance data. 643 */ 644 typedef struct PDMIOMMUR0 645 { 646 /** IOMMU index. */ 647 uint32_t idxIommu; 648 uint32_t uPadding0; /**< Alignment padding.*/ 649 650 /** Pointer to IOMMU device instance. */ 651 PPDMDEVINSR0 pDevInsR0; 652 } PDMIOMMUR0; 653 /** Pointer to the ring-0 IOMMU data. */ 654 typedef PDMIOMMUR0 *PPDMIOMMUR0; 655 656 657 /** 642 658 * PDM registered PIC device. 643 659 */ … … 789 805 /** Pointer to the ring-0 PCI bus data. */ 790 806 typedef PDMPCIBUSR0 *PPDMPCIBUSR0; 807 791 808 792 809 #ifdef IN_RING3 … … 1354 1371 /** PCI Buses, ring-0 data. */ 1355 1372 PDMPCIBUSR0 aPciBuses[PDM_PCI_BUSSES_MAX]; 1373 /** IOMMUs, ring-0 data. */ 1374 PDMIOMMUR0 aIommus[PDM_IOMMUS_MAX]; 1356 1375 /** Number of valid ring-0 device instances (apDevInstances). */ 1357 1376 uint32_t cDevInstances;
Note:
See TracChangeset
for help on using the changeset viewer.