phys: remove comment about merging bitmap/refcounts

This commit is contained in:
2025-03-24 10:16:54 +02:00
parent 1bc326de6d
commit 1effc9e76f
-1
View File
@@ -258,7 +258,6 @@ fn alloc_bitmap(bits_required: usize) Bitmap {
const bitmap = alloc_slice(u64, "bitmap", bitmap_entries);
return .{ .data = bitmap };
}
// TODO: combine refcounters and bitmap allocation into a single chunk
fn alloc_refcounters(count: usize) []u32 {
const refcounters = alloc_slice(u32, "refcounters", count);
@memset(refcounters, std.math.maxInt(u32));