diff options
| author | Marcel Braun <marcel.braun@ost.ch> | 2026-05-10 21:58:54 +0200 |
|---|---|---|
| committer | Lukas Oesch <lukasoesch20@gmail.com> | 2026-05-11 22:36:03 +0200 |
| commit | 763227e31adf924a5dfe3139db158e26162294a0 (patch) | |
| tree | e80a1fff2eeec2c73a1f9ba734fd7447285d3de9 /kernel/include | |
| parent | 636551d03ac725e015dd88631d531c02067ed3de (diff) | |
| download | kernel-763227e31adf924a5dfe3139db158e26162294a0.tar.xz kernel-763227e31adf924a5dfe3139db158e26162294a0.zip | |
Remove find_longest_prefix_mount
Diffstat (limited to 'kernel/include')
| -rw-r--r-- | kernel/include/kernel/filesystem/mount_table.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/include/kernel/filesystem/mount_table.hpp b/kernel/include/kernel/filesystem/mount_table.hpp index 8e57d9e..59b9503 100644 --- a/kernel/include/kernel/filesystem/mount_table.hpp +++ b/kernel/include/kernel/filesystem/mount_table.hpp @@ -39,13 +39,6 @@ namespace kernel::filesystem [[nodiscard]] auto remove_mount(std::string_view path) -> operation_result; /** - @brief Finds the mount with the longest prefix matching the given @p path. - @param path The path to match against the mount paths in the table. - @return A pointer to the mount with the longest matching prefix, or a null pointer if no mount matches the path. - */ - [[nodiscard]] auto find_longest_prefix_mount(std::string_view path) const -> kstd::shared_ptr<mount>; - - /** @brief Finds the mount with the exact mount path matching the given @p path. @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. |
