svn commit: r217938 - stable/8/sys/dev/ata/chipsets
Alexander Motin
mav at FreeBSD.org
Thu Jan 27 13:40:04 UTC 2011
Author: mav
Date: Thu Jan 27 13:40:03 2011
New Revision: 217938
URL: http://svn.freebsd.org/changeset/base/217938
Log:
MFC r215936:
Do hard reset before soft reset for SATA channels. Soft reset reported to be
not enough to restore device readiness in some situations.
Modified:
stable/8/sys/dev/ata/chipsets/ata-serverworks.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
Modified: stable/8/sys/dev/ata/chipsets/ata-serverworks.c
==============================================================================
--- stable/8/sys/dev/ata/chipsets/ata-serverworks.c Thu Jan 27 13:38:52 2011 (r217937)
+++ stable/8/sys/dev/ata/chipsets/ata-serverworks.c Thu Jan 27 13:40:03 2011 (r217938)
@@ -413,7 +413,7 @@ ata_serverworks_sata_reset(device_t dev)
{
struct ata_channel *ch = device_get_softc(dev);
- if (ata_sata_phy_reset(dev, -1, 1))
+ if (ata_sata_phy_reset(dev, -1, 0))
ata_generic_reset(dev);
else
ch->devices = 0;
More information about the svn-src-all
mailing list