aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kernel/include/kernel/filesystem/ext2/superblock.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/kernel/include/kernel/filesystem/ext2/superblock.hpp b/kernel/include/kernel/filesystem/ext2/superblock.hpp
index 8600b4c..e7e15f2 100644
--- a/kernel/include/kernel/filesystem/ext2/superblock.hpp
+++ b/kernel/include/kernel/filesystem/ext2/superblock.hpp
@@ -41,11 +41,8 @@ namespace kernel::filesystem::ext2
uint32_t feature_compat;
uint32_t feature_incompat;
uint32_t feature_ro_compat;
- // uint8_t uuid[16]; // TODO BA-FS26 really correct?
std::array<uint8_t, 16> uuid;
- // uint8_t volume_name[16]; // TODO BA-FS26 really correct?
std::array<uint8_t, 16> volume_name;
- // uint8_t last_mounted[64]; // TODO BA-FS26 really correct?
std::array<uint8_t, 64> last_mounted;
uint32_t algorithm_usage_bitmap;
@@ -55,14 +52,12 @@ namespace kernel::filesystem::ext2
uint16_t padding1;
// Journaling Support
- // uint8_t journal_uuid[16]; // TODO BA-FS26 really correct?
std::array<uint8_t, 16> journal_uuid;
uint32_t journal_inum;
uint32_t journal_dev;
uint32_t last_orphan;
// Directory Indexing Support
- // uint32_t hash_seed[4]; // TODO BA-FS26 really correct?
std::array<uint32_t, 4> hash_seed;
uint8_t def_hash_version;
std::array<uint8_t, 3> padding2;