Changeset 29441 in vbox
- Timestamp:
- May 13, 2010 9:01:10 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r29239 r29441 5406 5406 ahciSendD2HFis(pAhciPort, pAhciPortTaskState, pAhciPortTaskState->cmdFis, true); 5407 5407 pAhciPort->aCachedTasks[pNotifierItem->iTask] = pAhciPortTaskState; 5408 #ifdef RT_STRICT 5409 fXchg = ASMAtomicCmpXchgBool(&pAhciPortTaskState->fActive, false, true); 5410 AssertMsg(fXchg, ("Task is not active\n")); 5411 #endif 5408 5412 return true; 5409 5413 } … … 5412 5416 ahciFinishStorageDeviceReset(pAhciPort, pAhciPortTaskState); 5413 5417 pAhciPort->aCachedTasks[pNotifierItem->iTask] = pAhciPortTaskState; 5418 #ifdef RT_STRICT 5419 fXchg = ASMAtomicCmpXchgBool(&pAhciPortTaskState->fActive, false, true); 5420 AssertMsg(fXchg, ("Task is not active\n")); 5421 #endif 5414 5422 return true; 5415 5423 }
Note:
See TracChangeset
for help on using the changeset viewer.