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

Kernel: Add a FIXME about SD card synchronicity

This is a major bottleneck when booting the system, especially in
non-smp mode.
This commit is contained in:
Hendiadyoin1 2023-04-09 14:09:54 +02:00 committed by Sam Atkins
parent 863d0ac260
commit d10e838efd

View file

@ -23,6 +23,7 @@ SDMemoryCard::SDMemoryCard(SDHostController& sdhc, StorageDevice::LUNAddress lun
void SDMemoryCard::start_request(AsyncBlockDeviceRequest& request)
{
// FIXME: Make this asynchronous
MutexLocker locker(m_lock);
VERIFY(request.block_size() == block_size());