+32
−5
+14
−2
Loading
Bug 1781167 - Allow stacking calls to Add/RemoveVsyncDispatcher so that we survive the sequence Add,Add,Remove. r=jrmuizel, a=RyanVM This fixes a bug which caused Firefox windows to become frozen after some time. Full credit goes to Susan and RandyS for bisecting the regressor of this bug, and to Jeff DeFouw for debugging the issue and finding the cause. The bug here is a "state race" between the VsyncDispatcher state and the VsyncSource state. Both are protected by locks, and the code that runs in those locks respectively can see a different orders of invocations. VsyncDispatcher::UpdateVsyncStatus does this thing where it updates its state inside a lock, gathers some information, and then calls methods on VsyncSource *outside* the lock. Since it calls those methods outside the lock, these calls can end up being executed in a different order than the state changes were observed inside the lock. Here's the bad scenario in detail, with the same VsyncDispatcher being used from two different threads, turning a Remove,Add into an Add,Remove: ``` Thread A Thread B VsyncDispatcher::UpdateVsync | |----> Enter VsyncDispatcher lock | | VsyncDispatcher::UpdateVsync | | state->mIsObservingVsync = false | | | (We want to stop listening) | | | | |<---- Exit VsyncDispatcher lock | | |----> Enter VsyncDispatcher lock | | | | | | state->mIsObservingVsync = true | | | (We want to start listening) | | | | |<---- Exit VsyncDispatcher lock | | | |----> Enter VsyncSource::AddVsyncDispatcher | | | | | |----> Enter VsyncSource lock | | | | | | | | state->mDispatchers.Contains(aVsyncDispatcher) |----> VsyncSource::RemoveVsyncDispatcher | | | VsyncDispatcher already present in list, not doing anything | | | | | | | | |<---- Exit VsyncSource lock | | | | | | |<---- Exit VsyncSource::AddVsyncDispatcher | |----> Enter VsyncSource lock | | | | | | Removing aVsyncDispatcher from state->mDispatchers | | | | |<---- Exit VsyncSource lock | | |<---- Exit VsyncSource::AddVsyncDispatcher ``` Now the VsyncDispatcher thinks it is still observing vsync, but it is no longer registered with the VsyncSource. This patch makes it so that two calls to AddVsyncDispatcher followed by one call to RemoveVsyncDispatcher result in the VsyncDispatcher still being registered. AddVsyncDispatcher is no longer idempotent. Differential Revision: https://phabricator.services.mozilla.com/D162760