aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/libata-eh.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2008-05-19 13:17:53 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-07-14 15:59:32 -0400
commitd8af0eb6046c56e7238171ca420622541db24926 (patch)
tree64f5c8b15f1d9549f4a7130ae7cf09699507e514 /drivers/ata/libata-eh.c
parent0a2c0f56159999e20015241d3b8fa89b1ab14309 (diff)
libata: use ULONG_MAX to terminate reset timeout table
This doesn't introduce any functional changes. This is to make reset timeout table consistent with to-be-added command timeout tables. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/libata-eh.c')
-rw-r--r--drivers/ata/libata-eh.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c
index 5b5ae631ed03..83d1451fa714 100644
--- a/drivers/ata/libata-eh.c
+++ b/drivers/ata/libata-eh.c
@@ -90,7 +90,7 @@ static const unsigned long ata_eh_reset_timeouts[] = {
90 10000, /* > 99% working drives spin up before 20sec */ 90 10000, /* > 99% working drives spin up before 20sec */
91 35000, /* give > 30 secs of idleness for retarded devices */ 91 35000, /* give > 30 secs of idleness for retarded devices */
92 5000, /* and sweet one last chance */ 92 5000, /* and sweet one last chance */
93 /* > 1 min has elapsed, give up */ 93 ULONG_MAX, /* > 1 min has elapsed, give up */
94}; 94};
95 95
96static void __ata_port_freeze(struct ata_port *ap); 96static void __ata_port_freeze(struct ata_port *ap);
@@ -2077,13 +2077,12 @@ int ata_eh_reset(struct ata_link *link, int classify,
2077 ata_prereset_fn_t prereset, ata_reset_fn_t softreset, 2077 ata_prereset_fn_t prereset, ata_reset_fn_t softreset,
2078 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset) 2078 ata_reset_fn_t hardreset, ata_postreset_fn_t postreset)
2079{ 2079{
2080 const int max_tries = ARRAY_SIZE(ata_eh_reset_timeouts);
2081 struct ata_port *ap = link->ap; 2080 struct ata_port *ap = link->ap;
2082 struct ata_eh_context *ehc = &link->eh_context; 2081 struct ata_eh_context *ehc = &link->eh_context;
2083 unsigned int *classes = ehc->classes; 2082 unsigned int *classes = ehc->classes;
2084 unsigned int lflags = link->flags; 2083 unsigned int lflags = link->flags;
2085 int verbose = !(ehc->i.flags & ATA_EHI_QUIET); 2084 int verbose = !(ehc->i.flags & ATA_EHI_QUIET);
2086 int try = 0; 2085 int max_tries = 0, try = 0;
2087 struct ata_device *dev; 2086 struct ata_device *dev;
2088 unsigned long deadline, now; 2087 unsigned long deadline, now;
2089 ata_reset_fn_t reset; 2088 ata_reset_fn_t reset;
@@ -2094,6 +2093,9 @@ int ata_eh_reset(struct ata_link *link, int classify,
2094 /* 2093 /*
2095 * Prepare to reset 2094 * Prepare to reset
2096 */ 2095 */
2096 while (ata_eh_reset_timeouts[max_tries] != ULONG_MAX)
2097 max_tries++;
2098
2097 now = jiffies; 2099 now = jiffies;
2098 deadline = ata_deadline(ehc->last_reset, ATA_EH_RESET_COOL_DOWN); 2100 deadline = ata_deadline(ehc->last_reset, ATA_EH_RESET_COOL_DOWN);
2099 if (time_before(now, deadline)) 2101 if (time_before(now, deadline))