Kernel: VERIFY that nobody is holding lock in ~BlockerSet()

By the time we end up destroying a BlockerSet, we don't need to take
the internal spinlock. And nobody else should be holding it either.
So replace the SpinlockLocker with a VERIFY().
This commit is contained in:
Andreas Kling 2021-08-22 17:01:46 +02:00
parent 85546af417
commit 928929bbe1

View file

@ -398,7 +398,7 @@ public:
virtual ~BlockerSet()
{
SpinlockLocker lock(m_lock);
VERIFY(!m_lock.is_locked());
VERIFY(m_blockers.is_empty());
}