diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-18 12:28:44 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-18 12:28:44 +0200 |
| commit | b18a1dac7d4bfb2fa335fc4c7f49d14e9a25bc06 (patch) | |
| tree | 98575a0a2ed2f025024fb76e6f560a4e1dc9f41b /dev/kernel | |
| parent | 19c375e849dc407a49d16dd93b23029102bdee89 (diff) | |
FSKit, HeFS: Fix name regarding hungarian convention
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel')
| -rw-r--r-- | dev/kernel/FSKit/HeFS.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev/kernel/FSKit/HeFS.h b/dev/kernel/FSKit/HeFS.h index d67b2f82..6e529ce4 100644 --- a/dev/kernel/FSKit/HeFS.h +++ b/dev/kernel/FSKit/HeFS.h @@ -77,7 +77,7 @@ inline constexpr UInt16 kHeFSFileKindCount = 0x08; /// @brief HeFS blocks are array containing sparse blocks of data.
/// @details The blocks are used to store the data of a file. Each block is a pointer to a block of data on the disk.
-inline constexpr UInt16 fHeFSBlockCount = 0x06;
+inline constexpr UInt16 kHeFSBlockCount = 0x06;
struct PACKED HeFS_BOOT_NODE final
{
@@ -118,14 +118,14 @@ struct PACKED HeFS_INDEX_NODE final Kernel::UInt32 fUID, fGID;
Kernel::UInt32 fMode;
- Kernel::UInt64 fBlockLinkStart[fHeFSBlockCount];
- Kernel::UInt64 fBlockLinkEnd[fHeFSBlockCount];
+ Kernel::UInt64 fBlockLinkStart[kHeFSBlockCount];
+ Kernel::UInt64 fBlockLinkEnd[kHeFSBlockCount];
- Kernel::UInt64 fBlockStart[fHeFSBlockCount];
- Kernel::UInt64 fBlockEnd[fHeFSBlockCount];
+ Kernel::UInt64 fBlockStart[kHeFSBlockCount];
+ Kernel::UInt64 fBlockEnd[kHeFSBlockCount];
- Kernel::UInt64 fBlockRecoveryStart[fHeFSBlockCount];
- Kernel::UInt64 fBlockRecoveryEnd[fHeFSBlockCount];
+ Kernel::UInt64 fBlockRecoveryStart[kHeFSBlockCount];
+ Kernel::UInt64 fBlockRecoveryEnd[kHeFSBlockCount];
/// @brief Red-black tree pointers.
Kernel::Lba fNext, fPrev, fChild, fParent;
@@ -144,8 +144,8 @@ struct PACKED HeFS_INDEX_NODE_DIRECTORY final Kernel::UInt32 fUID, fGID;
Kernel::UInt32 fMode;
- Kernel::UInt64 fIndexNodeStart[fHeFSBlockCount];
- Kernel::UInt64 fIndexNodeEnd[fHeFSBlockCount];
+ Kernel::UInt64 fIndexNodeStart[kHeFSBlockCount];
+ Kernel::UInt64 fIndexNodeEnd[kHeFSBlockCount];
/// @brief Red-black tree pointers.
Kernel::Lba fNext, fPrev, fChild, fParent;
|
