Changeset 46732 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 22, 2013 7:25:08 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86655
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r46511 r46732 37 37 * Header Files * 38 38 *******************************************************************************/ 39 //#define DEBUG40 39 #define LOG_GROUP LOG_GROUP_DEV_AHCI 41 40 #include <VBox/vmm/pdmdev.h> … … 5310 5309 * 5311 5310 * @returns VBox status code. 5311 * @param pDevIns The device instance. 5312 5312 * @param pAhciReq The request state. 5313 5313 * @param cbTransfer Amount of bytes to allocate. … … 5333 5333 } 5334 5334 5335 /** 5336 * Frees the I/O memory of the given request and updates the guest buffer if necessary. 5337 * 5338 * @returns nothing. 5339 * @param pDevIns The device instance. 5340 * @param pAhciReq The request state. 5341 * @param fCopyToGuest Flag whether to update the guest buffer if necessary. 5342 * Nothing is copied if false even if the request was a read. 5343 */ 5335 5344 static void ahciIoBufFree(PPDMDEVINS pDevIns, PAHCIREQ pAhciReq, 5336 5345 bool fCopyToGuest) … … 7446 7455 static DECLCALLBACK(int) ahciR3Attach(PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags) 7447 7456 { 7448 PAHCI p Ahci= PDMINS_2_DATA(pDevIns, PAHCI);7449 PAHCIPort pAhciPort = &p Ahci->ahciPort[iLUN];7457 PAHCI pThis = PDMINS_2_DATA(pDevIns, PAHCI); 7458 PAHCIPort pAhciPort = &pThis->ahciPort[iLUN]; 7450 7459 int rc; 7451 7460 … … 7453 7462 7454 7463 /* the usual paranoia */ 7455 AssertMsg(iLUN < p Ahci->cPortsImpl, ("iLUN=%u", iLUN));7464 AssertMsg(iLUN < pThis->cPortsImpl, ("iLUN=%u", iLUN)); 7456 7465 AssertRelease(!pAhciPort->pDrvBase); 7457 7466 AssertRelease(!pAhciPort->pDrvBlock); … … 7484 7493 else 7485 7494 pAhciPort->fAsyncInterface = false; 7495 7496 rc = SUPSemEventCreate(pThis->pSupDrvSession, &pAhciPort->hEvtProcess); 7497 if (RT_FAILURE(rc)) 7498 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, 7499 N_("AHCI: Failed to create SUP event semaphore")); 7486 7500 7487 7501 /* Create the async IO thread. */ … … 7967 7981 } 7968 7982 7983 rc = SUPSemEventCreate(pThis->pSupDrvSession, &pAhciPort->hEvtProcess); 7984 if (RT_FAILURE(rc)) 7985 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, 7986 N_("AHCI: Failed to create SUP event semaphore")); 7987 7969 7988 rc = PDMDevHlpThreadCreate(pDevIns, &pAhciPort->pAsyncIOThread, pAhciPort, ahciAsyncIOLoop, 7970 7989 ahciAsyncIOLoopWakeUp, 0, RTTHREADTYPE_IO, szName); … … 7972 7991 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, 7973 7992 N_("AHCI: Failed to create worker thread %s"), szName); 7974 7975 rc = SUPSemEventCreate(pThis->pSupDrvSession, &pAhciPort->hEvtProcess);7976 if (RT_FAILURE(rc))7977 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS,7978 N_("AHCI: Failed to create SUP event semaphore"));7979 7993 } 7980 7994 else if (rc == VERR_PDM_NO_ATTACHED_DRIVER)
Note:
See TracChangeset
for help on using the changeset viewer.