From owner-freebsd-current@FreeBSD.ORG Tue Mar 6 15:53:31 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A99C16A400 for ; Tue, 6 Mar 2007 15:53:31 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id EC32013C4B5 for ; Tue, 6 Mar 2007 15:53:30 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: by nf-out-0910.google.com with SMTP id k27so2395552nfc for ; Tue, 06 Mar 2007 07:53:29 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=dUqjc7Ww9u+k+8L1NXGg9UPalsUYhLnzPFK9T8QNQ9ikSiOuYawOrNJ4YWwIdkWH6ajOwZBodwg+3OsriHo80JgQwYIzbp5Rphj+UBLYqzUO+6G5iofFzMwxQeoYbPoU5tbi/dRR9CERRj68CoAsbzjih3xgrE53ZGMmiGCqpTU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jzjLBGuYJRwFHRfWbQUqC42kwNmXNgiw/EWxolmEU5E/R5zhnlo8zSs0WdLxJme33G6Ya/u2EflyIQuHmgRGV5isAQahSbpClyL5CTeUtXNE38FAIufeHthh8hQrW/PUoIr/b/Tbv40WBSiBoetHWp0TQQu836slVjTK8lrhfFE= Received: by 10.78.171.13 with SMTP id t13mr805786hue.1173194719128; Tue, 06 Mar 2007 07:25:19 -0800 (PST) Received: by 10.78.15.2 with HTTP; Tue, 6 Mar 2007 07:25:18 -0800 (PST) Message-ID: <70e8236f0703060725j3487764enffe1ad524a098c96@mail.gmail.com> Date: Tue, 6 Mar 2007 15:25:18 +0000 From: "Joao Barros" To: "Pawel Jakub Dawidek" , freebsd-fs@freebsd.org, freebsd-current@freebsd.org In-Reply-To: <20070306005831.22fb6115.nork@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070304123801.GA22350@garage.freebsd.pl> <20070306005831.22fb6115.nork@FreeBSD.org> Cc: Subject: Re: ZFS port to FreeBSD: 2nd patchset available. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 06 Mar 2007 15:53:31 -0000 On 3/5/07, Norikatsu Shigemura wrote: > On Sun, 4 Mar 2007 13:38:01 +0100 > Pawel Jakub Dawidek wrote: > > # patch -p0 < /path/to/zfs_20070303.patch > > # make kernel <-- compiles and install patched kernel and > > zfs module > > # cd cddl > > # make && make install <-- compiles and install userland > > utilities and libraries > > Please report any problems ('it works without problems!' is nice too). > > To clean-build (make buildworld), please make src/lib/libthr before > src/cddl. Because cddl/lib/libzpool required libthr. > > --- Makefile.inc1.orig Sun Mar 4 01:50:22 2007 > +++ Makefile.inc1 Tue Mar 6 00:06:37 2007 > @@ -1013,7 +1013,7 @@ > lib/libradius lib/libsbuf lib/libtacplus lib/libutil \ > ${_lib_libypclnt} lib/libz lib/msun \ > ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ > - ${_secure_lib_libssl} > + ${_secure_lib_libssl} lib/libthr > > _generic_libs= cddl/lib gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib > > > I'm testing iozone -a. The new ZFS codes are too stable! After some tries I finally got it to buildworld, but at 3am I never got to test anything other than 'kldload zfs' I was reading the man pages and I was wondering if files are supported devices like in this example: Example 4 Creating a ZFS Storage Pool by Using Files The following command creates an unmirrored pool using files. While not recommended, a pool based on files can be useful for experimental purposes. # zpool create tank /path/to/file/a /path/to/file/b I'd have to feed some noisy disks to my machine if file devs are not supported -.- -- Joao Barros