zee_alloc
zee_alloc copied to clipboard
Experiment with slabs
Buddy allocation is generally pretty efficient but suffers from internal fragmentation. Can slab allocation have similar code efficiency?
Another idea: what if the current metadata remains the same, and the only difference is that each page is a slab? This might be a good hybrid to reap the benefit of slabs (consistent fragmentation, generally more cache friendly) without worse downsides.