VirtualBox

Changeset 46732 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Jun 22, 2013 7:25:08 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
86655
Message:

AHCI: Fix assertion during hotplug (event semaphore not created)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Storage/DevAHCI.cpp

    r46511 r46732  
    3737*   Header Files                                                               *
    3838*******************************************************************************/
    39 //#define DEBUG
    4039#define LOG_GROUP LOG_GROUP_DEV_AHCI
    4140#include <VBox/vmm/pdmdev.h>
     
    53105309 *
    53115310 * @returns VBox status code.
     5311 * @param   pDevIns     The device instance.
    53125312 * @param   pAhciReq    The request state.
    53135313 * @param   cbTransfer  Amount of bytes to allocate.
     
    53335333}
    53345334
     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 */
    53355344static void ahciIoBufFree(PPDMDEVINS pDevIns, PAHCIREQ pAhciReq,
    53365345                          bool fCopyToGuest)
     
    74467455static DECLCALLBACK(int)  ahciR3Attach(PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags)
    74477456{
    7448     PAHCI       pAhci = PDMINS_2_DATA(pDevIns, PAHCI);
    7449     PAHCIPort   pAhciPort = &pAhci->ahciPort[iLUN];
     7457    PAHCI       pThis = PDMINS_2_DATA(pDevIns, PAHCI);
     7458    PAHCIPort   pAhciPort = &pThis->ahciPort[iLUN];
    74507459    int         rc;
    74517460
     
    74537462
    74547463    /* the usual paranoia */
    7455     AssertMsg(iLUN < pAhci->cPortsImpl, ("iLUN=%u", iLUN));
     7464    AssertMsg(iLUN < pThis->cPortsImpl, ("iLUN=%u", iLUN));
    74567465    AssertRelease(!pAhciPort->pDrvBase);
    74577466    AssertRelease(!pAhciPort->pDrvBlock);
     
    74847493        else
    74857494            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"));
    74867500
    74877501        /* Create the async IO thread. */
     
    79677981            }
    79687982
     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
    79697988            rc = PDMDevHlpThreadCreate(pDevIns, &pAhciPort->pAsyncIOThread, pAhciPort, ahciAsyncIOLoop,
    79707989                                       ahciAsyncIOLoopWakeUp, 0, RTTHREADTYPE_IO, szName);
     
    79727991                return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS,
    79737992                                           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"));
    79797993        }
    79807994        else if (rc == VERR_PDM_NO_ATTACHED_DRIVER)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette