VirtualBox

Changeset 24047 in vbox for trunk/src


Ignore:
Timestamp:
Oct 23, 2009 5:52:58 PM (15 years ago)
Author:
vboxsync
Message:

AsyncCompletion: Do not use a failsafe manager for more than one endpoint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/PDMAsyncCompletionFile.cpp

    r23973 r24047  
    667667                    }
    668668
    669                     /* Check for an idling one or create new if not found */
    670                     if (!pEpClassFile->pAioMgrHead)
     669                    pAioMgr = pEpClassFile->pAioMgrHead;
     670
     671                    /* Check for an idling not failsafe one or create new if not found */
     672                    while (pAioMgr && pAioMgr->fFailsafe)
     673                        pAioMgr = pAioMgr->pNext;
     674
     675                    if (!pAioMgr)
    671676                    {
    672677                        rc = pdmacFileAioMgrCreate(pEpClassFile, &pAioMgr, false);
    673678                        AssertRC(rc);
    674                     }
    675                     else
    676                     {
    677                         pAioMgr = pEpClassFile->pAioMgrHead;
    678679                    }
    679680                }
Note: See TracChangeset for help on using the changeset viewer.

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