Kernel: Disable USB Mass Storage writing until I get it fixed
This prevented real hw from running for over 10-20 seconds. When first disk sync happens after 10 secods, USB storage would enter faulty state and not allow any io operations. I have no idea what the problem is. If I don't send Reset command to the USB device writing seems to work fine. I also don't think its part of the Reset process either as reading works just fine.
This commit is contained in:
parent
88a86a9927
commit
1941885cfd
|
@ -174,6 +174,8 @@ namespace Kernel
|
|||
|
||||
BAN::ErrorOr<void> USBSCSIDevice::write_sectors_impl(uint64_t first_lba, uint64_t sector_count, BAN::ConstByteSpan buffer)
|
||||
{
|
||||
return BAN::Error::from_errno(ENOTSUP);
|
||||
|
||||
dprintln_if(DEBUG_USB_MASS_STORAGE, "write_blocks({}, {})", first_lba, sector_count);
|
||||
|
||||
const size_t max_blocks_per_write = m_max_packet_size / m_block_size;
|
||||
|
|
Loading…
Reference in New Issue