aboutsummaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
authorMarcel Braun <marcel.braun@ost.ch>2026-05-15 11:42:33 +0200
committerLukas Oesch <lukasoesch20@gmail.com>2026-05-16 11:56:07 +0200
commit963c926c68aac4606d80743aca8e7b052eee7efe (patch)
treec678534c823cf708cf4b840a4dfe6ddf12a49c60 /kernel/include
parentfe0b38db0f8848da8cf28bb883e01bbbb889dd0a (diff)
downloadkernel-963c926c68aac4606d80743aca8e7b052eee7efe.tar.xz
kernel-963c926c68aac4606d80743aca8e7b052eee7efe.zip
Rename mount_table method from find_exact_mount to find_mount
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/kernel/filesystem/mount_table.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/include/kernel/filesystem/mount_table.hpp b/kernel/include/kernel/filesystem/mount_table.hpp
index 59b9503..8bebfe2 100644
--- a/kernel/include/kernel/filesystem/mount_table.hpp
+++ b/kernel/include/kernel/filesystem/mount_table.hpp
@@ -43,7 +43,7 @@ namespace kernel::filesystem
@param path The path to match against the mount paths in the table.
@return A pointer to the mount with the exact matching path, or a null pointer if no mount matches the path.
*/
- [[nodiscard]] auto find_exact_mount(std::string_view path) const -> kstd::shared_ptr<mount>;
+ [[nodiscard]] auto find_mount(std::string_view path) const -> kstd::shared_ptr<mount>;
private:
[[nodiscard]] auto has_child_mounts(kstd::shared_ptr<mount> const & parent_mount) const -> bool;