mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-05 01:55:21 +03:00
a91589c09b
The ProcFS is an utter mess currently, so let's start move things that are not related to processes-info. To ensure it's done in a sane manner, we start by duplicating all /proc/ global nodes to the /sys/kernel/ directory, then we will move Userland to use the new directory so the old directory nodes can be removed from the /proc directory.
39 lines
1.3 KiB
C++
39 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 {
|
|
|
|
NonnullLockRefPtr<SysFSRootDirectory> SysFSRootDirectory::create()
|
|
{
|
|
return adopt_lock_ref(*new (nothrow) SysFSRootDirectory);
|
|
}
|
|
|
|
SysFSRootDirectory::SysFSRootDirectory()
|
|
{
|
|
auto 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(buses_directory);
|
|
list.append(device_identifiers_directory);
|
|
list.append(devices_directory);
|
|
list.append(global_kernel_stats_directory);
|
|
return {};
|
|
}));
|
|
m_buses_directory = buses_directory;
|
|
}
|
|
|
|
}
|