From 9e34e025a3459c0b22cb2282464d3f3ff0b081f8 Mon Sep 17 00:00:00 2001 From: FactorialN Date: Wed, 22 Nov 2023 23:52:05 -0800 Subject: [PATCH] fixed a constant to meet the current design --- include/fs_constants.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fs_constants.hpp b/include/fs_constants.hpp index e74e3ba..8353020 100644 --- a/include/fs_constants.hpp +++ b/include/fs_constants.hpp @@ -18,6 +18,7 @@ #define INODE_SIZE 512 -#define DATABLOCKS_PER_BITMAP_BLOCK 255 +// TODO: explore the optimal value for this +#define DATABLOCKS_PER_BITMAP_BLOCK 2047 #endif \ No newline at end of file