VirtualBox

Changeset 84815 in vbox for trunk/src


Ignore:
Timestamp:
Jun 12, 2020 12:52:16 PM (5 years ago)
Author:
vboxsync
Message:

Devices/Audio/DevIchAc97: Workaround a hang upon resume when a NetBSD guest is used, see bugref:9759

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevIchAc97.cpp

    r84447 r84815  
    38023802        {
    38033803            /* Re-arm the timer for this stream. */
    3804             ichac97R3TimerSet(pDevIns, pStream, pStreamCC->State.cTransferTicks);
     3804            /** @todo r=aeichner This causes a VM hang upon saved state resume when NetBSD is used as a guest
     3805             * Stopping the timer if cTransferTicks is 0 is a workaround but needs further investigation,
     3806             * see @bugref{9759} for more information. */
     3807            if (pStreamCC->State.cTransferTicks)
     3808                ichac97R3TimerSet(pDevIns, pStream, pStreamCC->State.cTransferTicks);
     3809            else
     3810                PDMDevHlpTimerStop(pDevIns, pStream->hTimer);
    38053811        }
    38063812
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