Kernel: Remove the now defunct LOCKER(..) macro.

This commit is contained in:
Brian Gianforcaro 2021-04-24 15:27:32 -07:00 committed by Andreas Kling
commit 8d6e9fad40
Notes: sideshowbarker 2024-07-18 19:07:40 +09:00
31 changed files with 196 additions and 198 deletions

View file

@ -161,7 +161,7 @@ AnonymousVMObject::~AnonymousVMObject()
int AnonymousVMObject::purge()
{
LOCKER(m_paging_lock);
Locker locker(m_paging_lock);
return purge_impl();
}