mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel: Don't lock SysFS filesystem mutex calling traverse_as_directory
This locking is simply not needed because the associated SysFS component will use proper and more "atomic" locking on its own.
This commit is contained in:
parent
a467f78aa7
commit
bce17d06f5
Notes:
sideshowbarker
2024-07-17 01:06:10 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/bce17d06f5 Pull-request: https://github.com/SerenityOS/serenity/pull/19055
1 changed files with 0 additions and 2 deletions
|
@ -38,13 +38,11 @@ InodeMetadata SysFSDirectoryInode::metadata() const
|
|||
|
||||
ErrorOr<void> SysFSDirectoryInode::traverse_as_directory(Function<ErrorOr<void>(FileSystem::DirectoryEntryView const&)> callback) const
|
||||
{
|
||||
MutexLocker locker(fs().m_lock);
|
||||
return m_associated_component->traverse_as_directory(fs().fsid(), move(callback));
|
||||
}
|
||||
|
||||
ErrorOr<NonnullRefPtr<Inode>> SysFSDirectoryInode::lookup(StringView name)
|
||||
{
|
||||
MutexLocker locker(fs().m_lock);
|
||||
auto component = m_associated_component->lookup(name);
|
||||
if (!component)
|
||||
return ENOENT;
|
||||
|
|
Loading…
Reference in a new issue