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
commit d10e838efd
Notes: sideshowbarker 2024-07-17 01:00:06 +09:00

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());