From ed70cffd357e53e451a3375263aade82c327edff Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Fri, 29 Jan 2010 12:47:04 +0000 Subject: Reset port on disconnect event, to abort any running requests. --- sys/dev/siis/siis.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'sys/dev/siis') diff --git a/sys/dev/siis/siis.c b/sys/dev/siis/siis.c index 630ee7b44c97..5298c1897eeb 100644 --- a/sys/dev/siis/siis.c +++ b/sys/dev/siis/siis.c @@ -741,17 +741,15 @@ siis_phy_check_events(device_t dev) u_int32_t status = ATA_INL(ch->r_mem, SIIS_P_SSTS); union ccb *ccb; - if (((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_ONLINE) && - ((status & ATA_SS_SPD_MASK) != ATA_SS_SPD_NO_SPEED) && - ((status & ATA_SS_IPM_MASK) == ATA_SS_IPM_ACTIVE)) { - if (bootverbose) + if (bootverbose) { + if (((status & ATA_SS_DET_MASK) == ATA_SS_DET_PHY_ONLINE) && + ((status & ATA_SS_SPD_MASK) != ATA_SS_SPD_NO_SPEED) && + ((status & ATA_SS_IPM_MASK) == ATA_SS_IPM_ACTIVE)) { device_printf(dev, "CONNECT requested\n"); - siis_reset(dev); - } else { - if (bootverbose) + } else device_printf(dev, "DISCONNECT requested\n"); - ch->devices = 0; } + siis_reset(dev); if ((ccb = xpt_alloc_ccb_nowait()) == NULL) return; if (xpt_create_path(&ccb->ccb_h.path, NULL, -- cgit v1.2.3