Changeset 63564 in vbox for trunk/src/VBox/HostDrivers/VBoxPci/linux
- Timestamp:
- Aug 16, 2016 2:05:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110219
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c
r62490 r63564 221 221 if (RT_LIKELY(pData->pIommuDomain)) 222 222 { 223 /** @todo :KVM checks IOMMU_CAP_CACHE_COHERENCY and sets223 /** @todo KVM checks IOMMU_CAP_CACHE_COHERENCY and sets 224 224 * flag IOMMU_CACHE later used when mapping physical 225 225 * addresses, which could improve performance. … … 413 413 return VERR_ACCESS_DENIED; 414 414 } 415 /** @todo :RTStrCopy not exported. */415 /** @todo RTStrCopy not exported. */ 416 416 strncpy(pIns->szPrevDriver, currentDriver, sizeof(pIns->szPrevDriver)); 417 417 } … … 1024 1024 vbpci_printk(KERN_DEBUG, pIns->pPciDev, "PCIRAW_POWER_SUSPEND\n"); 1025 1025 rc = VINF_SUCCESS; 1026 /// @todo :what do we do here?1026 /// @todo what do we do here? 1027 1027 break; 1028 1028 case PCIRAW_POWER_RESUME: 1029 1029 vbpci_printk(KERN_DEBUG, pIns->pPciDev, "PCIRAW_POWER_RESUME\n"); 1030 1030 rc = VINF_SUCCESS; 1031 /// @todo :what do we do here?1031 /// @todo what do we do here? 1032 1032 break; 1033 1033 default: … … 1061 1061 1062 1062 flags = IOMMU_READ | IOMMU_WRITE; 1063 /* @todo:flags |= IOMMU_CACHE; */1063 /** @todo flags |= IOMMU_CACHE; */ 1064 1064 1065 1065 r = iommu_map(domain, GuestStart, HostStart, get_order(cMemSize), flags);
Note:
See TracChangeset
for help on using the changeset viewer.