Bareflank / hypervisor

lightweight hypervisor SDK written in C++ with support for Windows, Linux and UEFI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] buddy allocator hangs when request is greater than available memory

connojd opened this issue · comments

[BUG] buddy allocator hangs when request is greater than available memory

Just don't allocate more memory than you have and you will be fine 😄

is it possible to have a check between requested memory and available before Bareflank loads?

Yes and no. My hope is to remove the need for the buddy allocator in favor of just a page allocator. I will have more details on that soon, which should make this issue OBE.