From owner-freebsd-bugs@FreeBSD.ORG Mon Jan 17 21:00:21 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 377A01065674 for ; Mon, 17 Jan 2011 21:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 169F08FC16 for ; Mon, 17 Jan 2011 21:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0HL0KnL085336 for ; Mon, 17 Jan 2011 21:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0HL0KBS085306; Mon, 17 Jan 2011 21:00:20 GMT (envelope-from gnats) Date: Mon, 17 Jan 2011 21:00:20 GMT Message-Id: <201101172100.p0HL0KBS085306@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Alexander Motin Cc: Subject: Re: kern/152817: [ahci] ahci doesn't find disk X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Motin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jan 2011 21:00:21 -0000 The following reply was made to PR kern/152817; it has been noted by GNATS. From: Alexander Motin To: bug-followup@FreeBSD.org, js@alien8.de Cc: Subject: Re: kern/152817: [ahci] ahci doesn't find disk Date: Mon, 17 Jan 2011 22:59:18 +0200 Problem looks alike to one workarounded in CURRENT by SVN revision 217444, just with different feature. That patch with such addition should probably help: --- ata_xpt.c (revision 217514) +++ ata_xpt.c (working copy) @@ -775,7 +775,8 @@ * device-initiated interface power management, but return * ABORT on attempt to disable it. */ - } else if (softc->action == PROBE_SETPM && + } else if ((softc->action == PROBE_SETPM || + softc->action == PROBE_SETDMAAA) && status == CAM_ATA_STATUS_ERROR) { goto noerror; } Try it please, as if it help, send me output of the `camcontrol identify ada0 -v` command for check. -- Alexander Motin