From owner-freebsd-current@FreeBSD.ORG Sat Feb 5 15:53:12 2005 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 309B516A4CE for ; Sat, 5 Feb 2005 15:53:12 +0000 (GMT) Received: from smtp1.powertech.no (smtp1.powertech.no [195.159.0.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B3C843D2F for ; Sat, 5 Feb 2005 15:53:11 +0000 (GMT) (envelope-from frode@nordahl.net) Received: from [192.168.1.34] (unknown [195.159.232.31]) by smtp1.powertech.no (Postfix) with ESMTP id 24AF57E56; Sat, 5 Feb 2005 16:53:10 +0100 (CET) In-Reply-To: <4204B006.9060604@DeepCore.dk> References: <42028F29.1030801@DeepCore.dk> <0cd37ec888636578f9bc4f5b85ce20af@nordahl.net> <4204B006.9060604@DeepCore.dk> Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Message-Id: <14f889a6248ec02e7cb5279b6046d961@nordahl.net> Content-Transfer-Encoding: quoted-printable From: Frode Nordahl Date: Sat, 5 Feb 2005 16:53:08 +0100 To: =?ISO-8859-1?Q?S=F8ren_Schmidt?= X-Mailer: Apple Mail (2.619.2) cc: 'FreeBSD Current' Subject: Re: ATA mkIII first official patches - please test! X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Feb 2005 15:53:12 -0000 On Feb 5, 2005, at 12:37, S=F8ren Schmidt wrote: >>> o ATA RAID support has been rewritten and and now supports=20 >>> these >>> metadata formats: >>> "Adaptec HostRAID" >>> "Highpoint V2 RocketRAID" >>> "Highpoint V3 RocketRAID" >>> "Intel MatrixRAID" >>> "Integrated Technology Express" >>> "LSILogic V2 MegaRAID" >>> "LSILogic V3 MegaRAID" >>> "Promise FastTrak" >>> "Silicon Image Medley" >> This works with my Intel S875WP1-E with Intel ICH5 / Adaptec HostRAID=20= >> onboard! > > Good :) I have been abusing a installation with this controller for the last 5=20= hours without incident! I'll let it run 'till monday. Running the following on /dev/ar0 which is a RAID1 on top of two 80G=20 Maxtors (Maxtor 6Y080M0 YAR511W0): in /var/tmp (20G) 5 simultaneous runs, extract and remove a copy of=20 /usr/src (the tar is read from a seperate PATA disk) while true; do for i in 0 1 2 3 4; do mv ./$i/usr ./$i/usr.bak rm -rf ./$i/usr.bak & tar -C ./$i -xf /1/src.tar & done wait done in /usr/home (50G) write a 4G file over and over again, read a 4G file=20= over and over again while true; do dd if=3D/dev/zero of=3Dwrite bs=3D1m count=3D4k & dd if=3Dread of=3D/dev/null bs=3D1m & wait done Maybe I'll throw in some bonnie processes as well just for fun :-) Regards, Frode > --=20 > > -S=F8ren > >