- Timestamp:
- Jan 28, 2013 3:31:18 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VD.cpp
r44415 r44430 2934 2934 rc = pDisk->pCache->Backend->pfnFlush(pDisk->pCache->pBackendData, pIoCtx); 2935 2935 if ( RT_SUCCESS(rc) 2936 || rc == VERR_VD_ASYNC_IO_IN_PROGRESS)2936 || rc != VERR_VD_ASYNC_IO_IN_PROGRESS) 2937 2937 vdIoCtxUnlockDisk(pDisk, pIoCtx, true /* fProcessBlockedReqs */); 2938 } 2939 else 2938 else 2939 rc = VINF_SUCCESS; 2940 } 2941 else if (rc == VERR_VD_ASYNC_IO_IN_PROGRESS) 2942 rc = VINF_SUCCESS; 2943 else /* Some other error. */ 2940 2944 vdIoCtxUnlockDisk(pDisk, pIoCtx, true /* fProcessBlockedReqs */); 2941 2945 }
Note:
See TracChangeset
for help on using the changeset viewer.