Changeset 36400 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Mar 24, 2011 1:14:26 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70754
- Location:
- trunk/src/VBox/HostDrivers/VBoxPci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/VBoxPci.c
r36340 r36400 83 83 84 84 DECLINLINE(void) vboxPciDevUnlock(PVBOXRAWPCIINS pThis) 85 { 86 RTSemFastMutexRelease(pThis->hFastMtx); 87 } 88 89 DECLINLINE(int) vboxPciVmLock(PVBOXRAWPCIDRVVM pThis) 90 { 91 int rc = RTSemFastMutexRequest(pThis->hFastMtx); 92 AssertRC(rc); 93 return rc; 94 } 95 96 DECLINLINE(void) vboxPciVmUnlock(PVBOXRAWPCIDRVVM pThis) 85 97 { 86 98 RTSemFastMutexRelease(pThis->hFastMtx); … … 380 392 381 393 rc = vboxPciOsDevPowerStateChange(pThis, aState); 382 394 383 395 vboxPciDevUnlock(pThis); 384 396 -
trunk/src/VBox/HostDrivers/VBoxPci/VBoxPciInternal.h
r36343 r36400 100 100 #ifdef RT_OS_LINUX 101 101 # ifdef VBOX_WITH_IOMMU 102 struct iommu_domain* iommu_domain;102 struct iommu_domain* pIommuDomain; 103 103 # endif 104 104 #endif 105 int32_t fFlags; 105 106 } VBOXRAWPCIDRVVM; 106 107
Note:
See TracChangeset
for help on using the changeset viewer.