diff options
author | Liav A <liavalb@gmail.com> | 2021-09-10 14:44:46 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-11 11:41:14 +0200 |
commit | f5de4f24b260515f703a3a6ea183046f45cd4ce8 (patch) | |
tree | dadab2487c0fd610f188151ff1bfdcc6bb7c84b8 /Kernel/Devices/RandomDevice.cpp | |
parent | c545d4ffcb93e95d8226dff996fcb38f92c48d14 (diff) | |
download | serenity-f5de4f24b260515f703a3a6ea183046f45cd4ce8.zip |
Kernel/Devices: Defer creation of SysFS component after the constructor
Instead of doing so in the constructor, let's do immediately after the
constructor, so we can safely pass a reference of a Device, so the
SysFSDeviceComponent constructor can use that object to identify whether
it's a block device or a character device.
This allows to us to not hold a device in SysFSDeviceComponent with a
RefPtr.
Also, we also call the before_removing method in both SlavePTY::unref
and File::unref, so because Device has that method being overrided, it
can ensure the device is removed always cleanly.
Diffstat (limited to 'Kernel/Devices/RandomDevice.cpp')
-rw-r--r-- | Kernel/Devices/RandomDevice.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Kernel/Devices/RandomDevice.cpp b/Kernel/Devices/RandomDevice.cpp index d8116ca0dc..1d2ab995e4 100644 --- a/Kernel/Devices/RandomDevice.cpp +++ b/Kernel/Devices/RandomDevice.cpp @@ -12,7 +12,10 @@ namespace Kernel { UNMAP_AFTER_INIT NonnullRefPtr<RandomDevice> RandomDevice::must_create() { - return adopt_ref(*new RandomDevice); + auto random_device_or_error = try_create_device<RandomDevice>(); + // FIXME: Find a way to propagate errors + VERIFY(!random_device_or_error.is_error()); + return random_device_or_error.release_value(); } UNMAP_AFTER_INIT RandomDevice::RandomDevice() |