diff options
| author | Marcel Braun <marcel.braun@ost.ch> | 2026-05-25 13:35:50 +0200 |
|---|---|---|
| committer | Marcel Braun <marcel.braun@ost.ch> | 2026-05-25 13:35:50 +0200 |
| commit | 5d3222599c2af9241ac44718ede4ec9f4955f490 (patch) | |
| tree | 1e89b73ef4206b4cbe5d52d8dfa86660dfb28909 | |
| parent | 685990ae8c4fad6847e8f90cccb52bb34280298c (diff) | |
| download | kernel-5d3222599c2af9241ac44718ede4ec9f4955f490.tar.xz kernel-5d3222599c2af9241ac44718ede4ec9f4955f490.zip | |
Fix mount parameter description
| -rw-r--r-- | kernel/include/kernel/filesystem/mount.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/include/kernel/filesystem/mount.hpp b/kernel/include/kernel/filesystem/mount.hpp index 6c0c5b9..53d7f6d 100644 --- a/kernel/include/kernel/filesystem/mount.hpp +++ b/kernel/include/kernel/filesystem/mount.hpp @@ -24,8 +24,8 @@ namespace kernel::filesystem @param mount_dentry The dentry where the filesystem is mounted. @param root_dentry The root dentry of the mounted filesystem. @param fs The filesystem instance being mounted. - @param mount_path The path at which the filesystem is mounted. - @param parent_mount The parent mount that this mount is attached beneath. + @param parent_mount The mount that contains the mount_dentry. + @param source_mount The mount that the filesystem originates from. */ mount(kstd::shared_ptr<dentry> const & mount_dentry, kstd::shared_ptr<dentry> const & root_dentry, kstd::shared_ptr<filesystem> const & fs, kstd::shared_ptr<mount> const & parent_mount, |
