diff --git a/headers/private/kernel/vm/VMCache.h b/headers/private/kernel/vm/VMCache.h index 99bb2f638e..8360a51abe 100644 --- a/headers/private/kernel/vm/VMCache.h +++ b/headers/private/kernel/vm/VMCache.h @@ -353,6 +353,8 @@ void VMCache::MarkPageUnbusy(vm_page* page) { ASSERT(page->busy); + ASSERT(page->Cache() == this); + page->busy = false; NotifyPageEvents(page, PAGE_EVENT_NOT_BUSY); }