Kernel: Remove bitmap debug printing from ext2 inode allocation

This commit is contained in:
Bananymous 2023-09-06 01:25:09 +03:00
parent 5a623adaa6
commit 0deab1be51
1 changed files with 0 additions and 9 deletions

View File

@ -192,15 +192,6 @@ namespace Kernel
.offset = inode_table_offset % block_size
};
dprintln("allocated inode {} at offset {2H}",
ino,
2048 + (inode_location.block - 2) * block_size + inode_location.offset
);
dprintln("bitmap byte at {2H} with bit {2H}",
2048 + (bgd->inode_bitmap - 2) * block_size + ino_bitmap_byte,
1 << ino_bitmap_bit
);
// NOTE: we don't need inode bitmap anymore, so we can reuse it
auto& inode_buffer = inode_bitmap;