diff options
| author | Marcel Braun <marcel.braun@ost.ch> | 2026-05-11 18:54:27 +0200 |
|---|---|---|
| committer | Marcel Braun <marcel.braun@ost.ch> | 2026-05-11 18:54:27 +0200 |
| commit | a4c9b9bdb768ce20c9f9eac353a34598e4a422a9 (patch) | |
| tree | b421998ccb81316792fa4bb85d7677669b92732a /kernel/src/filesystem/vfs.cpp | |
| parent | 7683d52861f05566a3b82e24484e367fcdc63ea8 (diff) | |
| download | kernel-a4c9b9bdb768ce20c9f9eac353a34598e4a422a9.tar.xz kernel-a4c9b9bdb768ce20c9f9eac353a34598e4a422a9.zip | |
Rename get_full_path to get_absolute_path
Diffstat (limited to 'kernel/src/filesystem/vfs.cpp')
| -rw-r--r-- | kernel/src/filesystem/vfs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/src/filesystem/vfs.cpp b/kernel/src/filesystem/vfs.cpp index 519550b..1410b2a 100644 --- a/kernel/src/filesystem/vfs.cpp +++ b/kernel/src/filesystem/vfs.cpp @@ -138,7 +138,7 @@ namespace kernel::filesystem auto vfs::do_mount_internal(kstd::shared_ptr<dentry> const & mount_point_dentry, kstd::shared_ptr<filesystem> const & fs) -> void { - auto mount_path = mount_point_dentry->get_full_path(); + auto mount_path = mount_point_dentry->get_absolute_path(); // TODO BA-FS26 refactoring, implement dentry lookup to get the parent mount... auto parent_mount = m_mount_table.find_longest_prefix_mount(mount_path.view()); @@ -216,7 +216,7 @@ namespace kernel::filesystem } else if (next_dentry->has_flag(dentry::dentry_flags::mounted)) { - current_mount = m_mount_table.find_exact_mount(next_dentry->get_full_path().view()); + current_mount = m_mount_table.find_exact_mount(next_dentry->get_absolute_path().view()); if (!current_mount) { kapi::system::panic("[FILESYSTEM] mount for dentry with mounted flag not found."); |
