summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-12 13:54:35 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-12 13:54:35 +0200
commit911ebf833f04338c8307c598433e3d75053794c9 (patch)
treeeafa8d8677340e90ddedc44b76950ae149787c23
parentab617428ecd00ec15960ba92e12a1a2252f28e45 (diff)
dev(kernel:HeFS): fix warning in FileSystemParser file, and updated the
specification document. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--dev/kernel/src/FS/HeFS+FileSystemParser.cc2
-rw-r--r--docs/tex/hefs.tex4
2 files changed, 3 insertions, 3 deletions
diff --git a/dev/kernel/src/FS/HeFS+FileSystemParser.cc b/dev/kernel/src/FS/HeFS+FileSystemParser.cc
index a285593e..70a31154 100644
--- a/dev/kernel/src/FS/HeFS+FileSystemParser.cc
+++ b/dev/kernel/src/FS/HeFS+FileSystemParser.cc
@@ -758,7 +758,7 @@ _Output Bool HeFileSystemParser::Format(_Input _Output DriveTrait* mnt, _Input c
}
if (drv_std_get_size() < kHeFSMinimumDiskSize) {
- kout << "HeFS requires at least 128 GiB." << kendl;
+ (Void)(kout << "HeFS requires at least 128 GiB of free space." << kendl);
err_global_get() = kErrorDisk;
return NO;
}
diff --git a/docs/tex/hefs.tex b/docs/tex/hefs.tex
index cd20062c..c947710f 100644
--- a/docs/tex/hefs.tex
+++ b/docs/tex/hefs.tex
@@ -26,10 +26,10 @@ The High-throughput Extended File System (HeFS) is a custom filesystem tailored
\texttt{kHeFSBlockLen} & 512 bytes \\
\texttt{kHeFSFileNameLen} & 256 characters \\
\texttt{kHeFSPartNameLen} & 128 characters \\
-\texttt{kHeFSMinimumDiskSize} & 8 GiB \\
+\texttt{kHeFSMinimumDiskSize} & 128 GiB \\
\texttt{kHeFSDefaultVolumeName} & "HeFS Volume" \\
\texttt{kHeFSINDStartOffset} & Offset after boot node \\
-\texttt{kHeFSSearchAllStr} & "\*" (wildcard string) \\
+\texttt{kHeFSSearchAllStr} & "*" (wildcard string) \\
\hline
\end{longtable}