mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 14:14:45 +03:00
b02ee664e7
To do this we also need to get rid of LockRefPtrs in the USB code as well. Most of the SysFS nodes are statically generated during boot and are not mutated afterwards. The same goes for general device code - once we generate the appropriate SysFS nodes, we almost never mutate the node pointers afterwards, making locking unnecessary.
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/FileSystem/SysFS/Registry.h>
|
|
#include <Kernel/FileSystem/SysFS/RootDirectory.h>
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/Bus/Directory.h>
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/DeviceIdentifiers/Directory.h>
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/Devices/Directory.h>
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/Kernel/Directory.h>
|
|
#include <Kernel/Sections.h>
|
|
|
|
namespace Kernel {
|
|
|
|
NonnullRefPtr<SysFSRootDirectory> SysFSRootDirectory::create()
|
|
{
|
|
return adopt_ref(*new (nothrow) SysFSRootDirectory);
|
|
}
|
|
|
|
SysFSRootDirectory::SysFSRootDirectory()
|
|
: m_buses_directory(SysFSBusDirectory::must_create(*this))
|
|
{
|
|
auto device_identifiers_directory = SysFSDeviceIdentifiersDirectory::must_create(*this);
|
|
auto devices_directory = SysFSDevicesDirectory::must_create(*this);
|
|
auto global_kernel_stats_directory = SysFSGlobalKernelStatsDirectory::must_create(*this);
|
|
MUST(m_child_components.with([&](auto& list) -> ErrorOr<void> {
|
|
list.append(m_buses_directory);
|
|
list.append(device_identifiers_directory);
|
|
list.append(devices_directory);
|
|
list.append(global_kernel_stats_directory);
|
|
return {};
|
|
}));
|
|
}
|
|
|
|
}
|