libata: skip old error history when counting probe trials
authorLin Ming <ming.m.lin@intel.com>
Thu, 3 May 2012 14:15:07 +0000 (22:15 +0800)
committerBen Hutchings <ben@decadent.org.uk>
Fri, 11 May 2012 12:14:52 +0000 (13:14 +0100)
commit9846235aec215c33af3ed3758b67e31ff6981089
tree83a7258e22d04c40ae17d3b414d17b519e4f51de
parentf1f1ed7959ff53a7f7c15baf044964d3603f63ae
libata: skip old error history when counting probe trials

commit 6868225e3e92399068be9a5f1635752d91012ad5 upstream.

Commit d902747("[libata] Add ATA transport class") introduced
ATA_EFLAG_OLD_ER to mark entries in the error ring as cleared.

But ata_count_probe_trials_cb() didn't check this flag and it still
counts the old error history. So wrong probe trials count is returned
and it causes problem, for example, SATA link speed is slowed down from
3.0Gbps to 1.5Gbps.

Fix it by checking ATA_EFLAG_OLD_ER in ata_count_probe_trials_cb().

Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/ata/libata-eh.c