提交 1e641060 编写于 作者: T Tejun Heo 提交者: Jeff Garzik

libata: clear eh_info on reset completion

Resets are done with port frozen but some controllers still issue
interrupts during reset and they may end up recording error conditions
in ehi leading to unnecessary EH retrials.

This patch makes ata_eh_reset() clear ehi on reset completion.  As
reset is the most severe recovery action, there's nothing to lose by
clearing ehi on its completion.
Signed-off-by: NTejun Heo <tj@kernel.org>
Reported-by: NZdenek Kaspar <zkaspar82@gmail.com>
Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
上级 388539f3
......@@ -2576,11 +2576,17 @@ int ata_eh_reset(struct ata_link *link, int classify,
postreset(slave, classes);
}
/* clear cached SError */
/*
* Some controllers can't be frozen very well and may set
* spuruious error conditions during reset. Clear accumulated
* error information. As reset is the final recovery action,
* nothing is lost by doing this.
*/
spin_lock_irqsave(link->ap->lock, flags);
link->eh_info.serror = 0;
memset(&link->eh_info, 0, sizeof(link->eh_info));
if (slave)
slave->eh_info.serror = 0;
memset(&slave->eh_info, 0, sizeof(link->eh_info));
ap->pflags &= ~ATA_PFLAG_EH_PENDING;
spin_unlock_irqrestore(link->ap->lock, flags);
/* Make sure onlineness and classification result correspond.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册