serenity/Kernel/Storage/Partition
Liav A aee4786d8e Kernel: Introduce the DeviceManagement singleton
This singleton simplifies many aspects that we struggled with before:
1. There's no need to make derived classes of Device expose the
constructor as public anymore. The singleton is a friend of them, so he
can call the constructor. This solves the issue with try_create_device
helper neatly, hopefully for good.
2. Getting a reference of the NullDevice is now being done from this
singleton, which means that NullDevice no longer needs to use its own
singleton, and we can apply the try_create_device helper on it too :)
3. We can now defer registration completely after the Device constructor
which means the Device constructor is merely assigning the major and
minor numbers of the Device, and the try_create_device helper ensures it
calls the after_inserting method immediately after construction. This
creates a great opportunity to make registration more OOM-safe.
2021-09-17 01:02:48 +03:00
..
DiskPartition.cpp Kernel: Introduce the DeviceManagement singleton 2021-09-17 01:02:48 +03:00
DiskPartition.h Kernel: Introduce the DeviceManagement singleton 2021-09-17 01:02:48 +03:00
DiskPartitionMetadata.cpp Everywhere: Make use of container version of all_of 2021-08-03 10:46:43 +02:00
DiskPartitionMetadata.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
EBRPartitionTable.cpp Kernel: Fix incorrect argument when constructing DiskPartitionMetadata 2021-05-16 17:49:42 +02:00
EBRPartitionTable.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
GUIDPartitionTable.cpp Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safe 2021-09-06 01:53:26 +02:00
GUIDPartitionTable.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
MBRPartitionTable.cpp Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safe 2021-09-06 01:53:26 +02:00
MBRPartitionTable.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
PartitionTable.cpp Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
PartitionTable.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00