Kernel: Turn VirtIOGPU operation lock from mutex into spinlock

This commit is contained in:
Andreas Kling 2022-02-03 15:43:54 +01:00
commit 200589ba27
Notes: sideshowbarker 2024-07-17 19:50:47 +09:00
3 changed files with 7 additions and 7 deletions

View file

@ -141,7 +141,7 @@ private:
// Synchronous commands
WaitQueue m_outstanding_request;
Mutex m_operation_lock;
Spinlock m_operation_lock;
OwnPtr<Memory::Region> m_scratch_space;
};
}