Changeset 28881 in vbox for trunk/src/VBox
- Timestamp:
- Apr 28, 2010 8:54:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r28800 r28881 4887 4887 pAhciPortTaskState->uATARegError = 0; 4888 4888 pAhciPortTaskState->uATARegStatus = ATA_STAT_READY | ATA_STAT_SEEK; 4889 } 4890 4891 /* Write updated command header into memory of the guest. */4892 PDMDevHlpPhysWrite(pAhciPort->CTX_SUFF(pDevIns), pAhciPortTaskState->GCPhysCmdHdrAddr,4893 &pAhciPortTaskState->cmdHdr, sizeof(CmdHdr));4889 4890 /* Write updated command header into memory of the guest. */ 4891 PDMDevHlpPhysWrite(pAhciPort->CTX_SUFF(pDevIns), pAhciPortTaskState->GCPhysCmdHdrAddr, 4892 &pAhciPortTaskState->cmdHdr, sizeof(CmdHdr)); 4893 } 4894 4894 4895 4895 if (pAhciPortTaskState->enmTxDir == AHCITXDIR_READ) … … 4918 4918 #endif 4919 4919 4920 if (!cOutstandingTasks )4920 if (!cOutstandingTasks || RT_FAILURE(rcReq)) 4921 4921 ahciSendSDBFis(pAhciPort, 0, pAhciPortTaskState, true); 4922 4922 }
Note:
See TracChangeset
for help on using the changeset viewer.