From owner-freebsd-stable@FreeBSD.ORG Mon Aug 22 20:54:38 2005 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5CEA16A41F for ; Mon, 22 Aug 2005 20:54:38 +0000 (GMT) (envelope-from boco@ufanet.ru) Received: from proxy1.ufanet.ru (proxy1.ufanet.ru [81.30.199.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46DDC43D45 for ; Mon, 22 Aug 2005 20:54:37 +0000 (GMT) (envelope-from boco@ufanet.ru) Received: from mail.ufanet.ru (mail.ufanet.ru [81.30.199.70]) by proxy1.ufanet.ru (Postfix) with ESMTP id EADB01D2F0F; Tue, 23 Aug 2005 02:54:35 +0600 (YEKST) Received: from mail.ufanet.ru (localhost [127.0.0.1]) by mail.ufanet.ru (8.13.1/8.13.1) with ESMTP id j7MKsWBi085040; Tue, 23 Aug 2005 02:54:34 +0600 (YEKST) (envelope-from boco@ufanet.ru) Received: (from boco@localhost) by mail.ufanet.ru (8.13.1/8.13.1/Submit) id j7MKsWuu085039; Tue, 23 Aug 2005 02:54:32 +0600 (YEKST) (envelope-from boco@ufanet.ru) X-Authentication-Warning: mail.ufanet.ru: boco set sender to boco@ufanet.ru using -f Date: Tue, 23 Aug 2005 02:54:32 +0600 From: damir bikmuhametov To: Mike Tancsa Message-ID: <20050822205432.GA82381@ufanet.ru> References: <6.2.3.4.0.20050822161456.07b27678@64.7.153.2> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6.2.3.4.0.20050822161456.07b27678@64.7.153.2> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.6 (mail.ufanet.ru [127.0.0.1]); Tue, 23 Aug 2005 02:54:35 +0600 (YEKST) Cc: freebsd-stable@freebsd.org Subject: Re: ata breakage from RELENG_5 to RELENG_6 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Aug 2005 20:54:38 -0000 On Mon, Aug 22, 2005 at 04:24:12PM -0400, Mike Tancsa wrote: > I updated one of our boxes from RELENG_5 to 6. Couple of things I > noticed was that the smartmontools and atacontrol seems to be broken > now. [...] > [verify1] /usr/ports/sysutils/smartmontools# atacontrol cap 0 0 > usage: atacontrol args: > atacontrol list > atacontrol info channel > atacontrol attach channel > atacontrol detach channel > atacontrol reinit channel > atacontrol create type [interleave] disk0 ... diskN > atacontrol delete channel > atacontrol addspare array disk > atacontrol rebuild array > atacontrol status array > atacontrol mode device [mode] > atacontrol cap device > [verify1] /usr/ports/sysutils/smartmontools# atacontrol info 0 > atacontrol: Invalid channel 0 Mike, You have to use device name for 'cap' and channel name for 'info': # atacontrol cap ad6 Protocol ATA/ATAPI revision 6 device model HDS722525VLAT80 serial number VN69HMCFDTLEDD firmware revision V36OA6EA cylinders 16383 heads 16 sectors/track 63 lba supported 268435455 sectors lba48 supported 488397168 sectors dma supported overlap not supported Feature Support Enable Value Vendor write cache yes yes read ahead yes yes Tagged Command Queuing (TCQ) yes yes 31/0x1F SMART yes no microcode download no no security yes no power management yes yes advanced power management yes no 0/0x00 automatic acoustic management yes no 254/0xFE 128/0x80 # atacontrol info ata3 Master: ad6 ATA/ATAPI revision 6 Slave: no device present # uname -r 6.0-BETA2 -- boco