summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/FSKit
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-05-11 01:27:29 +0200
committerAmlal <amlal@nekernel.org>2025-05-11 01:29:24 +0200
commit81bcbc74da189bfe5f3b1fd70ae83fb85a2ce859 (patch)
tree84129e8825886d69513612a079df64b216103f8e /dev/kernel/FSKit
parent9a33591a431698fc7f50e1cdc97fd3c22955365c (diff)
dev(feat:kernel): Working Core Layer of HeFS (Write/Read)
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/FSKit')
-rw-r--r--dev/kernel/FSKit/HeFS.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/dev/kernel/FSKit/HeFS.h b/dev/kernel/FSKit/HeFS.h
index c4f31836..85421069 100644
--- a/dev/kernel/FSKit/HeFS.h
+++ b/dev/kernel/FSKit/HeFS.h
@@ -198,8 +198,7 @@ struct PACKED HEFS_INDEX_NODE_DIRECTORY final {
UInt64 fHashPath; /// @brief Directory path as FNV hash.
UInt32 fFlags; /// @brief File flags.
- UInt16 fKind; /// @brief File kind. (Regular, Directory, Block, Character, FIFO, Socket,
- /// Symbolic Link, Unknown).
+ UInt16 fReserved; /// @note Reserved for future use.
UInt32 fEntryCount; /// @brief Entry Count of this directory inode.
UInt32 fChecksum; /// @brief Checksum of the file, index node checksum.
@@ -405,8 +404,8 @@ class HeFileSystemParser final {
const Utf8Char* name, const UInt8 kind);
_Output Bool INodeManip(_Input DriveTrait* drive, VoidPtr block, SizeT block_sz,
- const Utf8Char* dir, const UInt8 kind, const Utf8Char* name,
- const BOOL in);
+ const Utf8Char* dir, const Utf8Char* name, const UInt8 kind,
+ const BOOL input);
private:
_Output Bool INodeCtlManip(_Input DriveTrait* drive, _Input const Int32 flags,