VirtualBox

Changeset 98122 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Jan 19, 2023 12:03:23 AM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
155291
Message:

VMM/PDM: Fixed assertion in PDMR3ResumeUsb after attaching a virtual MSD.

Location:
trunk/src/VBox/VMM/VMMR3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/PDM.cpp

    r98103 r98122  
    21212121DECLINLINE(int) pdmR3ResumeUsb(PPDMUSBINS pUsbIns)
    21222122{
    2123     Assert(pUsbIns->Internal.s.fVMSuspended);
    2124     if (pUsbIns->pReg->pfnVMResume)
    2125     {
    2126         LogFlow(("PDMR3Resume: Notifying - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
    2127         int rc = VINF_SUCCESS; pUsbIns->pReg->pfnVMResume(pUsbIns);
    2128         if (RT_FAILURE(rc))
    2129         {
    2130             LogRel(("PDMR3Resume: Device '%s'/%d -> %Rrc\n", pUsbIns->pReg->szName, pUsbIns->iInstance, rc));
    2131             return rc;
    2132         }
    2133     }
    2134     pUsbIns->Internal.s.fVMSuspended = false;
     2123    if (pUsbIns->Internal.s.fVMSuspended)
     2124    {
     2125        if (pUsbIns->pReg->pfnVMResume)
     2126        {
     2127            LogFlow(("PDMR3Resume: Notifying - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
     2128            int rc = VINF_SUCCESS; pUsbIns->pReg->pfnVMResume(pUsbIns);
     2129            if (RT_FAILURE(rc))
     2130            {
     2131                LogRel(("PDMR3Resume: Device '%s'/%d -> %Rrc\n", pUsbIns->pReg->szName, pUsbIns->iInstance, rc));
     2132                return rc;
     2133            }
     2134        }
     2135        pUsbIns->Internal.s.fVMSuspended = false;
     2136    }
    21352137    return VINF_SUCCESS;
    21362138}
  • trunk/src/VBox/VMM/VMMR3/PDMUsb.cpp

    r98103 r98122  
    547547                                PCFGMNODE *ppInstanceNode, VUSBSPEED enmSpeed, const char *pszCaptureFilename)
    548548{
    549     const bool fAtRuntime = iInstance == -1;
    550549    int rc;
    551550
     
    568567    PCFGMNODE pInstanceToDelete = NULL;
    569568    PCFGMNODE pInstanceNode = NULL;
    570     if (fAtRuntime)
     569    if (iInstance == -1)
    571570    {
    572571        /** @todo r=bird: This code is bogus as it ASSUMES that all USB devices are
     
    646645    //pUsbIns->Internal.s.pHub                = NULL;
    647646    pUsbIns->Internal.s.iPort               = UINT32_MAX; /* to be determined. */
    648     /* Set the flag accordingly.
    649      * Otherwise VMPowerOff, VMSuspend will not be called for devices attached at runtime.
    650      */
    651     pUsbIns->Internal.s.fVMSuspended        = !fAtRuntime;
     647    VMSTATE const enmVMState = VMR3GetState(pVM);
     648    pUsbIns->Internal.s.fVMSuspended        = !VMSTATE_IS_POWERED_ON(enmVMState);
    652649    //pUsbIns->Internal.s.pfnAsyncNotify      = NULL;
    653650    pUsbIns->pHlpR3                         = &g_pdmR3UsbHlp;
     
    712709
    713710            /* Send the hot-plugged notification if applicable. */
    714             if (fAtRuntime && pUsbIns->pReg->pfnHotPlugged)
     711            if (VMSTATE_IS_POWERED_ON(enmVMState) && pUsbIns->pReg->pfnHotPlugged)
    715712                pUsbIns->pReg->pfnHotPlugged(pUsbIns);
    716713
     
    729726            rc = VERR_PDM_USBDEV_VERSION_MISMATCH;
    730727    }
    731     if (fAtRuntime)
     728    if (VMSTATE_IS_POWERED_ON(enmVMState))
    732729        pdmR3UsbDestroyDevice(pVM, pUsbIns);
    733730    /* else: destructors are invoked later. */
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