diff options
author | Tejun Heo <tj@kernel.org> | 2008-08-13 07:19:09 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-08-22 02:07:43 -0400 |
commit | 05944bdf6fadb5394710269df6770dde447b23ca (patch) | |
tree | 7dd0435f44518b01e5d3a229167e7122425e2255 /drivers/ata/libata-eh.c | |
parent | 6a55617ed5d1aa62b850de2cf66f5ede2eef4825 (diff) |
libata: implement no[hs]rst force params
Implement force params nohrst, nosrst and norst. This is to work
around reset related problems and ease debugging.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/libata-eh.c')
-rw-r--r-- | drivers/ata/libata-eh.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index 58bdc538d229..a570ca47e239 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c | |||
@@ -2210,6 +2210,10 @@ int ata_eh_reset(struct ata_link *link, int classify, | |||
2210 | */ | 2210 | */ |
2211 | while (ata_eh_reset_timeouts[max_tries] != ULONG_MAX) | 2211 | while (ata_eh_reset_timeouts[max_tries] != ULONG_MAX) |
2212 | max_tries++; | 2212 | max_tries++; |
2213 | if (link->flags & ATA_LFLAG_NO_HRST) | ||
2214 | hardreset = NULL; | ||
2215 | if (link->flags & ATA_LFLAG_NO_SRST) | ||
2216 | softreset = NULL; | ||
2213 | 2217 | ||
2214 | now = jiffies; | 2218 | now = jiffies; |
2215 | deadline = ata_deadline(ehc->last_reset, ATA_EH_RESET_COOL_DOWN); | 2219 | deadline = ata_deadline(ehc->last_reset, ATA_EH_RESET_COOL_DOWN); |