1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:08:11 +00:00

Kernel/Storage: Implement basic AHCI hotplug support

This is really a basic support for AHCI hotplug events, so we know how
to add a node representing the device in /sys/dev/block and removing it
according to the event type (insertion/removal).

This change doesn't take into account what happens if the device was
mounted or a read/write operation is being handled.

For this to work correctly, StorageManagement now uses the Singleton
container, as it might be accessed simultaneously from many CPUs
for hotplug events. DiskPartition holds a WeakPtr instead of a RefPtr,
to allow removal of a StorageDevice object from the heap.
StorageDevices are now stored and being referenced to via an
IntrusiveList to make it easier to remove them on hotplug event.

In future changes, all of the stated above might change, but for now,
this commit represents the least amount of changes to make everything
to work correctly.
This commit is contained in:
Liav A 2021-08-27 08:08:43 +03:00 committed by Andreas Kling
parent 74c4c864bd
commit fb7b4caa57
11 changed files with 96 additions and 61 deletions

View file

@ -34,7 +34,7 @@ StringView SATADiskDevice::class_name() const
void SATADiskDevice::start_request(AsyncBlockDeviceRequest& request)
{
m_port->start_request(request);
m_port.strong_ref()->start_request(request);
}
String SATADiskDevice::storage_name() const