From owner-freebsd-stable@FreeBSD.ORG Sun Oct 28 13:57:10 2007 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D81616A417 for ; Sun, 28 Oct 2007 13:57:10 +0000 (UTC) (envelope-from msnkipa@mail.ru) Received: from f71.mail.ru (f71.mail.ru [194.67.57.222]) by mx1.freebsd.org (Postfix) with ESMTP id BD0C413C48A for ; Sun, 28 Oct 2007 13:57:09 +0000 (UTC) (envelope-from msnkipa@mail.ru) Received: from mail by f71.mail.ru with local id 1Im8dX-000PVN-00 for freebsd-stable@freebsd.org; Sun, 28 Oct 2007 16:57:07 +0300 Received: from [195.131.219.204] by win.mail.ru with HTTP; Sun, 28 Oct 2007 16:57:07 +0300 From: =?koi8-r?Q?=ED=C9=C8=C1=C9=CC_=EB=C9=D0=C1?= To: freebsd-stable@freebsd.org Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: [195.131.219.204] Date: Sun, 28 Oct 2007 16:57:07 +0300 X-Priority: 1 (High) Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Message-Id: Subject: Error in 6.2-RELEASE`s ata driver X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?koi8-r?Q?=ED=C9=C8=C1=C9=CC_=EB=C9=D0=C1?= List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2007 13:57:10 -0000 So I have southbridge VT8237A and two(!) HDDs attached to SATA chanels of this controller. I Prefer to have RAID on it. When I install FreeBSD 6.2-RELEASE (from floppies) it`s detected only one HDD and write that my RAID storage DEGRADED... I think that it is a bug in the kernel. I`m right. There is a bug in the "ata" driver! We have: /usr/src/sys/dev/ata/ata-chepset.c, line 4771: { ATA_VIA8237A, 0x00, 0, 0x00, ATA_SA150, "8237A" }, But ot must be: { ATA_VIA8237A, 0x00, 7, 0x00, ATA_SA150, "8237A" }, after this improvement and recompilation the kernel anything work fine! Misha.