1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:58:11 +00:00

Kernel: Tighten assertion in MM::find_free_user_physical_page

If our book-keeping of user physical pages is correct, we should always
find a physical page, regardless if it was committed or uncommitted.
This commit is contained in:
Idan Horowitz 2022-06-05 22:54:02 +03:00
parent 427f1f7e31
commit b4e45a6636

View file

@ -915,7 +915,7 @@ RefPtr<PhysicalPage> MemoryManager::find_free_user_physical_page(bool committed)
break;
}
}
VERIFY(!committed || !page.is_null());
VERIFY(!page.is_null());
return page;
}