Blame SOURCES/0055-grub-core-disk-ahci.c-Increase-timeout.-Some-SSDs-ta.patch

23d2ea
From 729607c36706453f0a035aa3261f1c2ff8ee8253 Mon Sep 17 00:00:00 2001
39700a
From: Vladimir Serbinenko <phcoder@gmail.com>
39700a
Date: Wed, 29 Jan 2014 23:50:49 +0100
23d2ea
Subject: [PATCH 055/198] * grub-core/disk/ahci.c: Increase timeout. Some SSDs
23d2ea
 take up to 7 seconds to recover if last poweroff was bad.
39700a
39700a
---
39700a
 ChangeLog             | 5 +++++
39700a
 grub-core/disk/ahci.c | 2 +-
39700a
 2 files changed, 6 insertions(+), 1 deletion(-)
39700a
39700a
diff --git a/ChangeLog b/ChangeLog
39700a
index bc1ab23..1a822f3 100644
39700a
--- a/ChangeLog
39700a
+++ b/ChangeLog
39700a
@@ -1,5 +1,10 @@
39700a
 2014-01-29  Vladimir Serbinenko  <phcoder@gmail.com>
39700a
 
39700a
+	* grub-core/disk/ahci.c: Increase timeout. Some SSDs take up to
39700a
+	7 seconds to recover if last poweroff was bad.
39700a
+
39700a
+2014-01-29  Vladimir Serbinenko  <phcoder@gmail.com>
39700a
+
39700a
 	* grub-core/disk/ahci.c: Properly handle transactions with no
39700a
 	transferred data.
39700a
 
39700a
diff --git a/grub-core/disk/ahci.c b/grub-core/disk/ahci.c
39700a
index fdd40c6..5e4a639 100644
39700a
--- a/grub-core/disk/ahci.c
39700a
+++ b/grub-core/disk/ahci.c
39700a
@@ -1022,7 +1022,7 @@ grub_ahci_readwrite_real (struct grub_ahci_device *dev,
39700a
   grub_dprintf ("ahci", "AHCI tfd = %x\n",
39700a
 		dev->hba->ports[dev->port].task_file_data);
39700a
 
39700a
-  endtime = grub_get_time_ms () + (spinup ? 10000 : 5000);
39700a
+  endtime = grub_get_time_ms () + (spinup ? 20000 : 20000);
39700a
   while ((dev->hba->ports[dev->port].command_issue & 1))
39700a
     if (grub_get_time_ms () > endtime)
39700a
       {
39700a
-- 
23d2ea
2.7.4
39700a