aboutsummaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
authorLukas Oesch <lukasoesch20@gmail.com>2026-05-15 15:47:06 +0200
committerLukas Oesch <lukasoesch20@gmail.com>2026-05-16 11:56:07 +0200
commit66d0e68376c9ad3e2b13f6ff8d999a0c85bda1a4 (patch)
treedb3f89d5bb4b73552f64fc74cc92b05f71c1d712 /kernel/include
parent963c926c68aac4606d80743aca8e7b052eee7efe (diff)
downloadkernel-66d0e68376c9ad3e2b13f6ff8d999a0c85bda1a4.tar.xz
kernel-66d0e68376c9ad3e2b13f6ff8d999a0c85bda1a4.zip
renaming
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/kernel/filesystem/vfs.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/include/kernel/filesystem/vfs.hpp b/kernel/include/kernel/filesystem/vfs.hpp
index 8515af0..7e2eae7 100644
--- a/kernel/include/kernel/filesystem/vfs.hpp
+++ b/kernel/include/kernel/filesystem/vfs.hpp
@@ -94,8 +94,9 @@ namespace kernel::filesystem
[[nodiscard]] auto resolve_path(std::string_view path) -> kstd::shared_ptr<dentry>;
[[nodiscard]] auto find_mount(std::string_view path) -> kstd::shared_ptr<mount>;
- auto do_mount_internal(kstd::shared_ptr<dentry> const & target_dentry, kstd::shared_ptr<mount> const & target_mount,
- kstd::shared_ptr<filesystem> const & fs) -> void;
+ auto do_mount_internal(kstd::shared_ptr<dentry> const & mount_point_dentry,
+ kstd::shared_ptr<mount> const & parent_mount, kstd::shared_ptr<filesystem> const & fs)
+ -> void;
auto graft_persistent_device_fs(kstd::shared_ptr<devfs::filesystem> const & device_fs) -> void;