OpenZFS on Linux and FreeBSD
Go to file
Brian Behlendorf cc4fbf2c35 Revert to previous behavior zdb fails when unable to open /dev/zfs.
For the moment I have added an error message to the failure path to
make it clear what happened.  I have also changed the zdb ASSERT to
a VERIFY so we always catch the failure.  For now we will just always
ensure the module stack is loaded, longer term we need something a
little more flexible.
2009-03-18 12:48:54 -07:00
cmd Revert to previous behavior zdb fails when unable to open /dev/zfs. 2009-03-18 12:48:54 -07:00
config Add NONE option for --with-linux and --with-spl. 2009-03-12 16:31:28 -07:00
doc Refresh zfs-branch 2008-12-05 09:46:11 -08:00
lib Revert to previous behavior zdb fails when unable to open /dev/zfs. 2009-03-18 12:48:54 -07:00
module Use include missing zfs_config.h and use ZFS_META_VERSION (not VERSION) 2009-03-17 16:02:09 -07:00
scripts Add 2 new args for zpool_create to take extra args 2009-02-06 14:57:37 -08:00
.topdeps New TopGit dependency: fix-deadcode 2009-03-16 10:11:57 -07:00
.topmsg Remove two self referential functions. 2009-03-16 10:02:06 -07:00
AUTHORS Refresh zfs-branch 2008-12-05 09:46:11 -08:00
COPYING Relocate COPYING+COPYRIGHT, remove README cruft 2008-12-01 15:34:53 -08:00
ChangeLog Prep for zfs-0.4.2 tag 2009-02-05 15:19:27 -08:00
DISCLAIMER Initial Linux ZFS GIT Repo 2008-11-20 12:01:55 -08:00
GIT Refresh type in topgit git://* reference 2009-01-26 21:58:32 -08:00
META Prep for zfs-0.4.2 tag 2009-02-05 15:19:27 -08:00
Makefile.am Build system and packaging (RPM support) (Part 2) 2009-03-10 21:13:30 -07:00
OPENSOLARIS.LICENSE Add CDDL license file 2008-12-01 14:49:34 -08:00
README Refresh README 2009-01-20 16:16:57 -08:00
TODO Update TODO 2009-02-04 16:25:09 -08:00
ZFS.RELEASE Rebase master to b108 2009-02-18 12:51:31 -08:00
autogen.sh Add --copy to automake to break configure phase dependency on automake. 2009-03-13 09:11:44 -07:00
configure.ac Build system and packaging (RPM support) (Part 2) 2009-03-10 21:13:30 -07:00
zfs.spec.in Add zlib/zlib-devel rpm dependency 2009-03-12 17:13:35 -07:00

README

============================ ZFS KERNEL BUILD ============================

1) Build the SPL (Solaris Porting Layer) module which is designed to
   provide many Solaris APIs in the Linux kernel which are needed
   by ZFS.  To build the SPL:

        tar -xzf spl-x.y.z.tgz
        cd spl-x.y.z
        ./configure --with-linux=<kernel src>
        make
        make check <as root>

2) Build ZFS, this port is based on build specified by the ZFS.RELEASE
   file.  You will need to have both the kernel and SPL source available.
   To build ZFS for use as a Linux kernel module.

        tar -xzf zfs-x.y.z.tgz
        cd zfs-x.y.z
        ./configure --with-linux=<kernel src> \
                    --with-spl=<spl src>
        make
        make check <as root>

============================ ZPIOS TEST SUITE ============================

3) Provided is an in-kernel test application called zpios which can be
   used to simulate a parallel IO load.  It may be used as a stress 
   or performance test for your configuration.  To simplify testing
   scripts provided in the scripts/ directory which provide a few
   pre-built zpool configurations and zpios test cases.  By default
   'make check' as root will run a simple test against several small
   loopback devices created in /tmp/.

       cd scripts
       ./zfs.sh					# Load the ZFS/SPL modules
       ./zpios.sh -c lo-raid0.sh -t tiny -v 	# Tiny zpios loopback test
       ./zfs.sh -u				# Unload the ZFS/SPL modules

Enjoy,
Brian Behlendorf <behlendorf1@llnl.gov>