summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-05-06 21:07:48 +0200
committerGitHub <noreply@github.com>2025-05-06 21:07:48 +0200
commit4a80c0e7eaa36817f52e0f3cd6d8c8e07bf860dc (patch)
tree68b118c8c1897388dc24cd25db5f4bfc9b8efc1e
parented6c7d2e771da75c02a7f96644baab407bcf85e5 (diff)
dev(kernel): Fix typo of `kHeFSDefaultVoluneName` to `kHeFSDefaultVolumeName` in HeFS.
-rw-r--r--dev/kernel/FSKit/HeFS.h2
-rw-r--r--dev/kernel/src/FS/HeFS+FileSystemParser.cc2
-rw-r--r--docs/tex/hefs.tex2
-rw-r--r--tooling/hefs.h2
-rw-r--r--tooling/mkfs.hefs.cc4
5 files changed, 6 insertions, 6 deletions
diff --git a/dev/kernel/FSKit/HeFS.h b/dev/kernel/FSKit/HeFS.h
index ce9b9226..f7e1d648 100644
--- a/dev/kernel/FSKit/HeFS.h
+++ b/dev/kernel/FSKit/HeFS.h
@@ -27,7 +27,7 @@
#define kHeFSMinimumDiskSize (gib_cast(1))
-#define kHeFSDefaultVoluneName u8"HeFS Volume"
+#define kHeFSDefaultVolumeName u8"HeFS Volume"
#define kHeFSINDStartOffset (sizeof(HEFS_INDEX_NODE_DIRECTORY) + sizeof(HEFS_BOOT_NODE))
diff --git a/dev/kernel/src/FS/HeFS+FileSystemParser.cc b/dev/kernel/src/FS/HeFS+FileSystemParser.cc
index 53e05c08..d3331710 100644
--- a/dev/kernel/src/FS/HeFS+FileSystemParser.cc
+++ b/dev/kernel/src/FS/HeFS+FileSystemParser.cc
@@ -1166,7 +1166,7 @@ Boolean fs_init_hefs(Void) {
HeFileSystemParser parser;
- parser.Format(&kMountPoint, kHeFSEncodingFlagsUTF8, kHeFSDefaultVoluneName);
+ parser.Format(&kMountPoint, kHeFSEncodingFlagsUTF8, kHeFSDefaultVolumeName);
MUST_PASS(parser.CreateINode(&kMountPoint, kHeFSEncodingFlagsBinary | kHeFSFlagsReadOnly,
u8"/boot", u8"ジェット警察.txt", kHeFSFileKindRegular));
diff --git a/docs/tex/hefs.tex b/docs/tex/hefs.tex
index afafc472..dd857795 100644
--- a/docs/tex/hefs.tex
+++ b/docs/tex/hefs.tex
@@ -25,7 +25,7 @@ The High-throughput Extended File System (HeFS) is a custom filesystem tailored
\texttt{kHeFSFileNameLen} & 256 characters \\
\texttt{kHeFSPartNameLen} & 128 characters \\
\texttt{kHeFSMinimumDiskSize} & 16 MiB \\
-\texttt{kHeFSDefaultVoluneName} & "HeFS Volume" \\
+\texttt{kHeFSDefaultVolumeName} & "HeFS Volume" \\
\texttt{kHeFSINDStartOffset} & Offset after boot + dir nodes \\
\texttt{kHeFSSearchAllStr} & "\*" (wildcard string) \\
\hline
diff --git a/tooling/hefs.h b/tooling/hefs.h
index ded6cbef..f281e7a3 100644
--- a/tooling/hefs.h
+++ b/tooling/hefs.h
@@ -16,7 +16,7 @@
#define kHeFSFileNameLen (256U)
#define kHeFSPartNameLen (128U)
-#define kHeFSDefaultVoluneName u8"HeFS Volume"
+#define kHeFSDefaultVolumeName u8"HeFS Volume"
namespace mkfs::hefs {
diff --git a/tooling/mkfs.hefs.cc b/tooling/mkfs.hefs.cc
index bc1f3d3c..5a706646 100644
--- a/tooling/mkfs.hefs.cc
+++ b/tooling/mkfs.hefs.cc
@@ -11,7 +11,7 @@
static size_t kDiskSize = 1024 * 1024 * 1024 * 4UL;
static uint16_t kVersion = kHeFSVersion;
-static std::u8string kLabel = kHeFSDefaultVoluneName;
+static std::u8string kLabel = kHeFSDefaultVolumeName;
static size_t kSectorSize = 512;
int main(int argc, char** argv) {
@@ -43,7 +43,7 @@ int main(int argc, char** argv) {
kSectorSize = std::strtol(mkfs::get_option<char>(args, "-s").data(), nullptr, 10);
kLabel = mkfs::get_option<char8_t>(args_wide, u8"-L");
- if (kLabel.empty()) kLabel = kHeFSDefaultVoluneName;
+ if (kLabel.empty()) kLabel = kHeFSDefaultVolumeName;
kDiskSize =
std::strtol(mkfs::get_option<char>(args, "-S").data(), nullptr, 10) * 1024 * 1024 * 1024;