- Timestamp:
- Sep 18, 2009 10:31:42 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 52563
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r23066 r23149 3662 3662 rc = VMR3ReqCallWait(PDMDevHlpGetVM(pDevIns), VMCPUID_ANY, 3663 3663 (PFNRT)pAhciPort->pDrvMount->pfnUnmount, 2, pAhciPort->pDrvMount, false); 3664 Assert ReleaseRC(rc);3664 Assert(RT_SUCCESS(rc) || (rc == VERR_PDM_MEDIA_LOCKED)); 3665 3665 } 3666 3666 break; -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r23012 r23149 2893 2893 rc = VMR3ReqCallWait(PDMDevHlpGetVM(pDevIns), VMCPUID_ANY, 2894 2894 (PFNRT)s->pDrvMount->pfnUnmount, 2, s->pDrvMount, false); 2895 Assert ReleaseRC(rc);2895 Assert(RT_SUCCESS(rc) || (rc == VERR_PDM_MEDIA_LOCKED)); 2896 2896 { 2897 2897 STAM_PROFILE_START(&pCtl->StatLockWait, a);
Note:
See TracChangeset
for help on using the changeset viewer.