Changeset 24358 in vbox
- Timestamp:
- Nov 4, 2009 9:54:42 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 54381
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFileFailsafe.cpp
r24222 r24358 156 156 pAioMgr->pEndpointsHead = pEndpointNew; 157 157 158 pAioMgr->cEndpoints++; 159 158 160 /* 159 161 * Process the task list the first time. There might be pending requests … … 181 183 if (pNext) 182 184 pNext->AioMgr.pEndpointPrev = pPrev; 185 186 pAioMgr->cEndpoints--; 183 187 break; 184 188 } -
trunk/src/VBox/VMM/PDMAsyncCompletionFileNormal.cpp
r24355 r24358 742 742 while (pEndpoint) 743 743 { 744 if (!pEndpoint->pFlushReq && (pEndpoint->enmState == PDMASYNCCOMPLETIONENDPOINTFILESTATE_ACTIVE)) 744 if (!pEndpoint->pFlushReq 745 && (pEndpoint->enmState == PDMASYNCCOMPLETIONENDPOINTFILESTATE_ACTIVE) 746 && !pEndpoint->AioMgr.fMoving) 745 747 { 746 748 rc = pdmacFileAioMgrNormalQueueReqs(pAioMgr, pEndpoint);
Note:
See TracChangeset
for help on using the changeset viewer.