VirtualBox

Changeset 21519 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Jul 13, 2009 8:17:29 AM (16 years ago)
Author:
vboxsync
Message:

REMNotifyHandlerPhysicalFlushIfAlmostFull: Moved the threshold from 10 to 20 free items. See defect #4113.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/REMAll.cpp

    r20874 r21519  
    214214
    215215    /*
    216      * Less than 10 items means we should flush.
     216     * Less than 20 items means we should flush.
    217217     */
    218218    uint32_t cFree = 0;
     
    222222    {
    223223        Assert(idx < RT_ELEMENTS(pVM->rem.s.aHandlerNotifications));
    224         if (++cFree > 10)
     224        if (++cFree > 20)
    225225            return;
    226226    }
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