aboutsummaryrefslogtreecommitdiff
path: root/kernel/filesystem/src/device_file.cpp
diff options
context:
space:
mode:
authorLukas Oesch <lukasoesch20@gmail.com>2026-03-09 23:54:54 +0100
committerLukas Oesch <lukasoesch20@gmail.com>2026-03-17 16:42:52 +0100
commit7430778a773cfdb97bed3c77c17f7c737706ba6a (patch)
tree510b95f089e1940f65259432195a81ce4dd426d7 /kernel/filesystem/src/device_file.cpp
parent58aea4f1bbb4f24d4fc4cda5501d753886968234 (diff)
downloadteachos-7430778a773cfdb97bed3c77c17f7c737706ba6a.tar.xz
teachos-7430778a773cfdb97bed3c77c17f7c737706ba6a.zip
add todos
Diffstat (limited to 'kernel/filesystem/src/device_file.cpp')
-rw-r--r--kernel/filesystem/src/device_file.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/filesystem/src/device_file.cpp b/kernel/filesystem/src/device_file.cpp
index a6c234c..34195db 100644
--- a/kernel/filesystem/src/device_file.cpp
+++ b/kernel/filesystem/src/device_file.cpp
@@ -99,6 +99,7 @@ namespace filesystem
return 0;
size_t const total_to_process = std::min(size, capacity - offset);
+ // TODO BA-FS26 use kstd::vector when available
std::array<std::byte, 512> scratch_buffer{}; // TODO BA-FS26 better solution than fixed scratch_buffer ??
auto processed = 0uz;