From 9e7e04e3b8747f16687cc2f5f7b8c06be235d17b Mon Sep 17 00:00:00 2001 From: Wildan M Date: Thu, 16 Apr 2026 05:28:28 +0700 Subject: [PATCH] Extend ided read timeout --- drivers/storage/ided/src/ide.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/storage/ided/src/ide.rs b/drivers/storage/ided/src/ide.rs index c6632e266a..5faf3250d4 100644 --- a/drivers/storage/ided/src/ide.rs +++ b/drivers/storage/ided/src/ide.rs @@ -11,7 +11,7 @@ use syscall::error::{Error, Result, EIO}; use common::dma::Dma; use common::io::{Io, Pio, ReadOnly, WriteOnly}; -static TIMEOUT: Duration = Duration::new(1, 0); +const TIMEOUT: Duration = Duration::new(5, 0); #[repr(u8)] pub enum AtaCommand {