zfs-0.8.3
This commit is contained in:
parent
8ebbcc31ec
commit
5c7d859b70
5320 changed files with 1474758 additions and 0 deletions
BIN
pkgs-0.8.3/libnvpair1_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/libnvpair1_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/libuutil1_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/libuutil1_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/libzfs2-devel_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/libzfs2-devel_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/libzfs2_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/libzfs2_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/libzpool2_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/libzpool2_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/python3-pyzfs_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/python3-pyzfs_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
9
pkgs-0.8.3/replace_packages_ubuntu
Normal file
9
pkgs-0.8.3/replace_packages_ubuntu
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
apt update
|
||||
apt-get install python3 python3-dev python3-setuptools python3-cffi dkms python3-distutils gdebi -y
|
||||
apt remove "zfs*" -y
|
||||
apt autoremove -y
|
||||
for file in *$1*.deb; do sudo gdebi -q --non-interactive $file; done
|
||||
cp zfSnap /usr/sbin/zfSnap
|
||||
chmod 755 /usr/sbin/zfSnap
|
||||
echo zfs >> /etc/modules-load.d/modules.conf
|
435
pkgs-0.8.3/zfSnap
Executable file
435
pkgs-0.8.3/zfSnap
Executable file
|
@ -0,0 +1,435 @@
|
|||
#!/bin/sh
|
||||
|
||||
# "THE BEER-WARE LICENSE":
|
||||
# <graudeejs@yandex.com> wrote this file. As long as you retain this notice you
|
||||
# can do whatever you want with this stuff. If we meet some day, and you think
|
||||
# this stuff is worth it, you can buy me a beer in return. Aldis Berjoza
|
||||
|
||||
# wiki: https://github.com/graudeejs/zfSnap/wiki
|
||||
# repository: https://github.com/graudeejs/zfSnap
|
||||
# Bug tracking: https://github.com/graudeejs/zfSnap/issues
|
||||
|
||||
readonly VERSION=1.11.1
|
||||
|
||||
ESED='sed -E'
|
||||
zfs_cmd='/sbin/zfs'
|
||||
zpool_cmd='/sbin/zpool'
|
||||
|
||||
|
||||
note() {
|
||||
echo "NOTE: $*" > /dev/stderr
|
||||
}
|
||||
|
||||
err() {
|
||||
echo "ERROR: $*" > /dev/stderr
|
||||
}
|
||||
|
||||
fatal() {
|
||||
echo "FATAL: $*" > /dev/stderr
|
||||
exit 1
|
||||
}
|
||||
|
||||
warn() {
|
||||
echo "WARNING: $*" > /dev/stderr
|
||||
}
|
||||
|
||||
|
||||
OS=`uname`
|
||||
case $OS in
|
||||
'FreeBSD')
|
||||
;;
|
||||
'SunOS')
|
||||
ESED='sed -r'
|
||||
if [ -d "/usr/gnu/bin" ]; then
|
||||
export PATH="/usr/gnu/bin:$PATH"
|
||||
else
|
||||
fatal "GNU bin direcotry not found"
|
||||
fi
|
||||
;;
|
||||
'Linux'|'GNU/kFreeBSD')
|
||||
ESED='sed -r'
|
||||
;;
|
||||
'Darwin')
|
||||
zfs_cmd='/usr/sbin/zfs'
|
||||
zpool_cmd='/usr/sbin/zpool'
|
||||
;;
|
||||
*)
|
||||
fatal "Your OS isn't supported"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
is_true() {
|
||||
case "$1" in
|
||||
[Tt][Rr][Uu][Ee])
|
||||
return 0
|
||||
;;
|
||||
[Ff][Aa][Ll][Ss][Ee])
|
||||
return 1
|
||||
;;
|
||||
*)
|
||||
fatal "must be yes or no"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
is_false() {
|
||||
is_true $1 && return 1 || return 0
|
||||
}
|
||||
|
||||
s2time() {
|
||||
# convert seconds to human readable time
|
||||
xtime=$1
|
||||
|
||||
years=$(($xtime / 31536000))
|
||||
xtime=$(($xtime % 31536000))
|
||||
[ ${years:-0} -gt 0 ] && years="${years}y" || years=""
|
||||
|
||||
months=$(($xtime / 2592000))
|
||||
xtime=$(($xtime % 2592000))
|
||||
[ ${months:-0} -gt 0 ] && months="${months}m" || months=""
|
||||
|
||||
days=$(($xtime / 86400))
|
||||
xtime=$(($xtime % 86400))
|
||||
[ ${days:-0} -gt 0 ] && days="${days}d" || days=""
|
||||
|
||||
hours=$(($xtime / 3600))
|
||||
xtime=$(($xtime % 3600))
|
||||
[ ${hours:-0} -gt 0 ] && hours="${hours}h" || hours=""
|
||||
|
||||
minutes=$(($xtime / 60))
|
||||
[ ${minutes:-0} -gt 0 ] && minutes="${minutes}M" || minutes=""
|
||||
|
||||
seconds=$(($xtime % 60))
|
||||
[ ${seconds:-0} -gt 0 ] && seconds="${seconds}s" || seconds=""
|
||||
|
||||
echo "${years}${months}${days}${hours}${minutes}${seconds}"
|
||||
}
|
||||
|
||||
time2s() {
|
||||
# convert human readable time to seconds
|
||||
echo "$1" | sed -e 's/y/*31536000+/g; s/m/*2592000+/g; s/w/*604800+/g; s/d/*86400+/g; s/h/*3600+/g; s/M/*60+/g; s/s//g; s/\+$//' | bc -l
|
||||
}
|
||||
|
||||
date2timestamp() {
|
||||
date_normal="`echo $1 | $ESED -e 's/\./:/g; s/(20[0-9][0-9]-[01][0-9]-[0-3][0-9])_([0-2][0-9]:[0-5][0-9]:[0-5][0-9])/\1 \2/'`"
|
||||
|
||||
case $OS in
|
||||
'FreeBSD' | 'Darwin' )
|
||||
date -j -f '%Y-%m-%d %H:%M:%S' "$date_normal" '+%s'
|
||||
;;
|
||||
*)
|
||||
date --date "$date_normal" '+%s'
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
help() {
|
||||
cat << EOF
|
||||
${0##*/} v${VERSION} by Aldis Berjoza
|
||||
|
||||
Syntax:
|
||||
${0##*/} [ generic options ] [ options ] zpool/filesystem ...
|
||||
|
||||
GENERIC OPTIONS:
|
||||
-d = Delete old snapshots
|
||||
-e = Return number of failed actions as exit code.
|
||||
-F age = Force delete all snapshots exceeding age
|
||||
-n = Only show actions that would be performed
|
||||
-s = Don't do anything on pools running resilver
|
||||
-S = Don't do anything on pools running scrub
|
||||
-v = Verbose output
|
||||
-z = Force new snapshots to have 00 seconds!
|
||||
-zpool28fix = Workaround for zpool v28 zfs destroy -r bug
|
||||
|
||||
OPTIONS:
|
||||
-a ttl = Set how long snapshot should be kept
|
||||
-D pool/fs = Delete all zfSnap snapshots of specific pool/fs (ignore ttl)
|
||||
-p prefix = Use prefix for snapshots after this switch
|
||||
-P = Don't use prefix for snapshots after this switch
|
||||
-r = Create recursive snapshots for all zfs file systems that
|
||||
fallow this switch
|
||||
-R = Create non-recursive snapshots for all zfs file systems that
|
||||
fallow this switch
|
||||
|
||||
LINKS:
|
||||
wiki: https://github.com/graudeejs/zfSnap/wiki
|
||||
repository: https://github.com/graudeejs/zfSnap
|
||||
Bug tracking: https://github.com/graudeejs/zfSnap/issues
|
||||
|
||||
EOF
|
||||
exit 0
|
||||
}
|
||||
|
||||
rm_zfs_snapshot() {
|
||||
if is_true $zpool28fix && [ "$1" = '-r' ]; then
|
||||
# get rid of '-r' parameter
|
||||
rm_zfs_snapshot $2
|
||||
return
|
||||
fi
|
||||
|
||||
if [ "$1" = '-r' ]; then
|
||||
skip_pool $2 || return 1
|
||||
else
|
||||
skip_pool $1 || return 1
|
||||
fi
|
||||
|
||||
zfs_destroy="$zfs_cmd destroy $*"
|
||||
|
||||
# hardening: make really, really sure we are deleting snapshot
|
||||
if echo $i | grep -q -e '@'; then
|
||||
if is_false $dry_run; then
|
||||
if $zfs_destroy > /dev/stderr; then
|
||||
is_true $verbose && echo "$zfs_destroy ... DONE"
|
||||
else
|
||||
is_true $verbose && echo "$zfs_destroy ... FAIL"
|
||||
is_true $count_failures && failures=$(($failures + 1))
|
||||
fi
|
||||
else
|
||||
echo "$zfs_destroy"
|
||||
fi
|
||||
else
|
||||
echo "FATAL: trying to delete zfs pool or filesystem? WTF?" > /dev/stderr
|
||||
echo " This is bug, we definitely don't want that." > /dev/stderr
|
||||
echo " Please report it to https://github.com/graudeejs/zfSnap/issues" > /dev/stderr
|
||||
echo " Don't panic, nothing was deleted :)" > /dev/stderr
|
||||
is_true $count_failures && [ $failures -gt 0 ] && exit $failures
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
skip_pool() {
|
||||
# more like skip pool???
|
||||
if is_true $scrub_skip; then
|
||||
for i in $scrub_pools; do
|
||||
if [ `echo $1 | sed -e 's#/.*$##; s/@.*//'` = $i ]; then
|
||||
is_true $verbose && note "No action will be performed on '$1'. Scrub is running on pool."
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
if is_true $resilver_skip; then
|
||||
for i in $resilver_pools; do
|
||||
if [ `echo $1 | sed -e 's#/.*$##; s/@.*//'` = $i ]; then
|
||||
is_true $verbose && note "No action will be performed on '$1'. Resilver is running on pool."
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
[ $# = 0 ] && help
|
||||
[ "$1" = '-h' -o $1 = "--help" ] && help
|
||||
|
||||
ttl='1m' # default snapshot ttl
|
||||
force_delete_snapshots_age=-1 # Delete snapshots older than x seconds. -1 means NO
|
||||
delete_snapshots="false" # Delete old snapshots?
|
||||
verbose="false" # Verbose output?
|
||||
dry_run="false" # Dry run?
|
||||
prefx="" # Default prefix
|
||||
prefxes="" # List of prefixes
|
||||
delete_specific_fs_snapshots="" # List of specific snapshots to delete
|
||||
delete_specific_fs_snapshots_recursively="" # List of specific snapshots to delete recursively
|
||||
zero_seconds="false" # Should new snapshots always have 00 seconds?
|
||||
scrub_pools="" # List of pools that are in precess of scrubing
|
||||
resilver_pools="" # List of pools that are in process of resilvering
|
||||
pools="" # List of pools
|
||||
get_pools="false" # Should I get list of pools?
|
||||
resilver_skip="false" # Should I skip processing pools in process of resilvering.
|
||||
scrub_skip="false" # Should I skip processing pools in process of scrubing.
|
||||
failures=0 # Number of failed actions.
|
||||
count_failures="false" # Should I coundt failed actions?
|
||||
zpool28fix="false" # Workaround for zpool v28 zfs destroy -r bug
|
||||
|
||||
while [ "$1" = '-d' -o "$1" = '-v' -o "$1" = '-n' -o "$1" = '-F' -o "$1" = '-z' -o "$1" = '-s' -o "$1" = '-S' -o "$1" = '-e' -o "$1" = '-zpool28fix' ]; do
|
||||
case "$1" in
|
||||
'-d')
|
||||
delete_snapshots="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-v')
|
||||
verbose="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-n')
|
||||
dry_run="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-F')
|
||||
force_delete_snapshots_age=`time2s $2`
|
||||
shift 2
|
||||
;;
|
||||
|
||||
'-z')
|
||||
zero_seconds="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-s')
|
||||
get_pools="true"
|
||||
resilver_skip="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-S')
|
||||
get_pools="true"
|
||||
scrub_skip="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-e')
|
||||
count_failures="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
'-zpool28fix')
|
||||
zpool28fix="true"
|
||||
shift
|
||||
;;
|
||||
|
||||
esac
|
||||
done
|
||||
|
||||
if is_true $get_pools; then
|
||||
pools=`$zpool_cmd list -H -o name`
|
||||
for i in $pools; do
|
||||
if is_true $resilver_skip; then
|
||||
$zpool_cmd status $i | grep -q -e 'resilver in progress' && resilver_pools="$resilver_pools $i"
|
||||
fi
|
||||
if is_true $scrub_skip; then
|
||||
$zpool_cmd status $i | grep -q -e 'scrub in progress' && scrub_pools="$scrub_pools $i"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
readonly date_pattern='20[0-9][0-9]-[01][0-9]-[0-3][0-9]_[0-2][0-9]\.[0-5][0-9]\.[0-5][0-9]'
|
||||
if is_false $zero_seconds; then
|
||||
readonly tfrmt='%Y-%m-%d_%H.%M.%S'
|
||||
else
|
||||
readonly tfrmt='%Y-%m-%d_%H.%M.00'
|
||||
fi
|
||||
|
||||
readonly htime_pattern='([0-9]+y)?([0-9]+m)?([0-9]+w)?([0-9]+d)?([0-9]+h)?([0-9]+M)?([0-9]+[s]?)?'
|
||||
|
||||
|
||||
is_true $dry_run && zfs_list=`$zfs_cmd list -H -o name`
|
||||
ntime=`date "+$tfrmt"`
|
||||
while [ "$1" ]; do
|
||||
while [ "$1" = '-r' -o "$1" = '-R' -o "$1" = '-a' -o "$1" = '-p' -o "$1" = '-P' -o "$1" = '-D' ]; do
|
||||
case "$1" in
|
||||
'-r')
|
||||
zopt='-r'
|
||||
shift
|
||||
;;
|
||||
'-R')
|
||||
zopt=''
|
||||
shift
|
||||
;;
|
||||
'-a')
|
||||
ttl="$2"
|
||||
echo "$ttl" | grep -q -E -e "^[0-9]+$" && ttl=`s2time $ttl`
|
||||
shift 2
|
||||
;;
|
||||
'-p')
|
||||
prefx="$2"
|
||||
prefxes="$prefxes|$prefx"
|
||||
shift 2
|
||||
;;
|
||||
'-P')
|
||||
prefx=""
|
||||
shift
|
||||
;;
|
||||
'-D')
|
||||
if [ "$zopt" != '-r' ]; then
|
||||
delete_specific_fs_snapshots="$delete_specific_fs_snapshots $2"
|
||||
else
|
||||
delete_specific_fs_snapshots_recursively="$delete_specific_fs_snapshots_recursively $2"
|
||||
fi
|
||||
shift 2
|
||||
;;
|
||||
|
||||
esac
|
||||
done
|
||||
|
||||
# create snapshots
|
||||
if [ $1 ]; then
|
||||
if skip_pool $1; then
|
||||
if [ $1 = `echo $1 | $ESED -e 's/^-//'` ]; then
|
||||
zfs_snapshot="$zfs_cmd snapshot $zopt $1@${prefx}${ntime}--${ttl}${postfx}"
|
||||
if is_false $dry_run; then
|
||||
if $zfs_snapshot > /dev/stderr; then
|
||||
is_true $verbose && echo "$zfs_snapshot ... DONE"
|
||||
else
|
||||
is_true $verbose && echo "$zfs_snapshot ... FAIL"
|
||||
is_true $count_failures && failures=$(($failures + 1))
|
||||
fi
|
||||
else
|
||||
printf "%s\n" $zfs_list | grep -m 1 -q -E -e "^$1$" \
|
||||
&& echo "$zfs_snapshot" \
|
||||
|| err "Looks like zfs filesystem '$1' doesn't exist"
|
||||
fi
|
||||
else
|
||||
warn "'$1' doesn't look like valid argument. Ignoring"
|
||||
fi
|
||||
fi
|
||||
shift
|
||||
fi
|
||||
done
|
||||
|
||||
prefxes=`echo "$prefxes" | sed -e 's/^\|//'`
|
||||
|
||||
# delete snapshots
|
||||
if is_true $delete_snapshots || [ $force_delete_snapshots_age -ne -1 ]; then
|
||||
|
||||
if is_false $zpool28fix; then
|
||||
zfs_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^.*@(${prefxes})?${date_pattern}--${htime_pattern}$" | sed -e 's#/.*@#@#'`
|
||||
else
|
||||
zfs_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^.*@(${prefxes})?${date_pattern}--${htime_pattern}$"`
|
||||
fi
|
||||
|
||||
current_time=`date +%s`
|
||||
for i in `echo $zfs_snapshots | xargs printf "%s\n" | $ESED -e "s/^.*@//" | sort -u`; do
|
||||
create_time=$(date2timestamp `echo "$i" | $ESED -e "s/--${htime_pattern}$//; s/^(${prefxes})?//"`)
|
||||
if is_true $delete_snapshots; then
|
||||
stay_time=$(time2s `echo $i | $ESED -e "s/^(${prefxes})?${date_pattern}--//"`)
|
||||
[ $current_time -gt $(($create_time + $stay_time)) ] \
|
||||
&& rm_snapshot_pattern="$rm_snapshot_pattern $i"
|
||||
fi
|
||||
if [ "$force_delete_snapshots_age" -ne -1 ]; then
|
||||
[ $current_time -gt $(($create_time + $force_delete_snapshots_age)) ] \
|
||||
&& rm_snapshot_pattern="$rm_snapshot_pattern $i"
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$rm_snapshot_pattern" != '' ]; then
|
||||
rm_snapshots=$(echo $zfs_snapshots | xargs printf '%s\n' | grep -E -e "@`echo $rm_snapshot_pattern | sed -e 's/ /|/g'`" | sort -u)
|
||||
for i in $rm_snapshots; do
|
||||
rm_zfs_snapshot -r $i
|
||||
done
|
||||
fi
|
||||
fi
|
||||
|
||||
# delete all snap
|
||||
if [ "$delete_specific_fs_snapshots" != '' ]; then
|
||||
rm_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^($(echo "$delete_specific_fs_snapshots" | tr ' ' '|'))@(${prefxes})?${date_pattern}--${htime_pattern}$"`
|
||||
for i in $rm_snapshots; do
|
||||
rm_zfs_snapshot $i
|
||||
done
|
||||
fi
|
||||
|
||||
if [ "$delete_specific_fs_snapshots_recursively" != '' ]; then
|
||||
rm_snapshots=`$zfs_cmd list -H -o name -t snapshot | grep -E -e "^($(echo "$delete_specific_fs_snapshots_recursively" | tr ' ' '|'))@(${prefxes})?${date_pattern}--${htime_pattern}$"`
|
||||
for i in $rm_snapshots; do
|
||||
rm_zfs_snapshot -r $i
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
is_true $count_failures && exit $failures
|
||||
exit 0
|
||||
# vim: set ts=4 sw=4 expandtab:
|
BIN
pkgs-0.8.3/zfs-dkms_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/zfs-dkms_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/zfs-dracut_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/zfs-dracut_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/zfs-initramfs_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/zfs-initramfs_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/zfs-test_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/zfs-test_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
pkgs-0.8.3/zfs_0.8.3-1_amd64.deb
Normal file
BIN
pkgs-0.8.3/zfs_0.8.3-1_amd64.deb
Normal file
Binary file not shown.
BIN
zfs-0.8.3.tar.gz
Normal file
BIN
zfs-0.8.3.tar.gz
Normal file
Binary file not shown.
304
zfs-0.8.3/AUTHORS
Normal file
304
zfs-0.8.3/AUTHORS
Normal file
|
@ -0,0 +1,304 @@
|
|||
MAINTAINERS:
|
||||
|
||||
Brian Behlendorf <behlendorf1@llnl.gov>
|
||||
Tony Hutter <hutter2@llnl.gov>
|
||||
|
||||
PAST MAINTAINERS:
|
||||
|
||||
Ned Bass <bass6@llnl.gov>
|
||||
|
||||
CONTRIBUTORS:
|
||||
|
||||
Aaron Fineman <abyxcos@gmail.com>
|
||||
Adam Leventhal <ahl@delphix.com>
|
||||
Adam Stevko <adam.stevko@gmail.com>
|
||||
Ahmed G <ahmedg@delphix.com>
|
||||
Akash Ayare <aayare@delphix.com>
|
||||
Alan Somers <asomers@gmail.com>
|
||||
Alar Aun <spamtoaun@gmail.com>
|
||||
Albert Lee <trisk@nexenta.com>
|
||||
Alec Salazar <alec.j.salazar@gmail.com>
|
||||
Alejandro R. Sedeño <asedeno@mit.edu>
|
||||
Alek Pinchuk <alek@nexenta.com>
|
||||
Alex Braunegg <alex.braunegg@gmail.com>
|
||||
Alex McWhirter <alexmcwhirter@triadic.us>
|
||||
Alex Reece <alex@delphix.com>
|
||||
Alex Wilson <alex.wilson@joyent.com>
|
||||
Alex Zhuravlev <alexey.zhuravlev@intel.com>
|
||||
Alexander Eremin <a.eremin@nexenta.com>
|
||||
Alexander Motin <mav@freebsd.org>
|
||||
Alexander Pyhalov <apyhalov@gmail.com>
|
||||
Alexander Stetsenko <ams@nexenta.com>
|
||||
Alexey Shvetsov <alexxy@gentoo.org>
|
||||
Alexey Smirnoff <fling@member.fsf.org>
|
||||
Allan Jude <allanjude@freebsd.org>
|
||||
AndCycle <andcycle@andcycle.idv.tw>
|
||||
Andreas Buschmann <andreas.buschmann@tech.net.de>
|
||||
Andreas Dilger <adilger@intel.com>
|
||||
Andrew Barnes <barnes333@gmail.com>
|
||||
Andrew Hamilton <ahamilto@tjhsst.edu>
|
||||
Andrew Reid <ColdCanuck@nailedtotheperch.com>
|
||||
Andrew Stormont <andrew.stormont@nexenta.com>
|
||||
Andrew Tselischev <andrewtselischev@gmail.com>
|
||||
Andrey Vesnovaty <andrey.vesnovaty@gmail.com>
|
||||
Andriy Gapon <avg@freebsd.org>
|
||||
Andy Bakun <github@thwartedefforts.org>
|
||||
Aniruddha Shankar <k@191a.net>
|
||||
Antonio Russo <antonio.e.russo@gmail.com>
|
||||
Arkadiusz Bubała <arkadiusz.bubala@open-e.com>
|
||||
Arne Jansen <arne@die-jansens.de>
|
||||
Aron Xu <happyaron.xu@gmail.com>
|
||||
Bart Coddens <bart.coddens@gmail.com>
|
||||
Basil Crow <basil.crow@delphix.com>
|
||||
Huang Liu <liu.huang@zte.com.cn>
|
||||
Ben Allen <bsallen@alcf.anl.gov>
|
||||
Ben Rubson <ben.rubson@gmail.com>
|
||||
Benjamin Albrecht <git@albrecht.io>
|
||||
Bill McGonigle <bill-github.com-public1@bfccomputing.com>
|
||||
Bill Pijewski <wdp@joyent.com>
|
||||
Boris Protopopov <boris.protopopov@nexenta.com>
|
||||
Brad Lewis <brad.lewis@delphix.com>
|
||||
Brian Behlendorf <behlendorf1@llnl.gov>
|
||||
Brian J. Murrell <brian@sun.com>
|
||||
Caleb James DeLisle <calebdelisle@lavabit.com>
|
||||
Cao Xuewen <cao.xuewen@zte.com.cn>
|
||||
Carlo Landmeter <clandmeter@gmail.com>
|
||||
Carlos Alberto Lopez Perez <clopez@igalia.com>
|
||||
Chaoyu Zhang <zhang.chaoyu@zte.com.cn>
|
||||
Chen Can <chen.can2@zte.com.cn>
|
||||
Chen Haiquan <oc@yunify.com>
|
||||
Chip Parker <aparker@enthought.com>
|
||||
Chris Burroughs <chris.burroughs@gmail.com>
|
||||
Chris Dunlap <cdunlap@llnl.gov>
|
||||
Chris Dunlop <chris@onthe.net.au>
|
||||
Chris Siden <chris.siden@delphix.com>
|
||||
Chris Wedgwood <cw@f00f.org>
|
||||
Chris Williamson <chris.williamson@delphix.com>
|
||||
Chris Zubrzycki <github@mid-earth.net>
|
||||
Christ Schlacta <aarcane@aarcane.info>
|
||||
Christer Ekholm <che@chrekh.se>
|
||||
Christian Kohlschütter <christian@kohlschutter.com>
|
||||
Christian Neukirchen <chneukirchen@gmail.com>
|
||||
Christian Schwarz <me@cschwarz.com>
|
||||
Christopher Voltz <cjunk@voltz.ws>
|
||||
Chunwei Chen <david.chen@nutanix.com>
|
||||
Clemens Fruhwirth <clemens@endorphin.org>
|
||||
Colin Ian King <colin.king@canonical.com>
|
||||
Craig Loomis <cloomis@astro.princeton.edu>
|
||||
Craig Sanders <github@taz.net.au>
|
||||
Cyril Plisko <cyril.plisko@infinidat.com>
|
||||
DHE <git@dehacked.net>
|
||||
Damian Wojsław <damian@wojslaw.pl>
|
||||
Dan Kimmel <dan.kimmel@delphix.com>
|
||||
Dan McDonald <danmcd@nexenta.com>
|
||||
Dan Swartzendruber <dswartz@druber.com>
|
||||
Dan Vatca <dan.vatca@gmail.com>
|
||||
Daniel Hoffman <dj.hoffman@delphix.com>
|
||||
Daniel Verite <daniel@verite.pro>
|
||||
Daniil Lunev <d.lunev.mail@gmail.com>
|
||||
Darik Horn <dajhorn@vanadac.com>
|
||||
Dave Eddy <dave@daveeddy.com>
|
||||
David Lamparter <equinox@diac24.net>
|
||||
David Qian <david.qian@intel.com>
|
||||
David Quigley <david.quigley@intel.com>
|
||||
Debabrata Banerjee <dbanerje@akamai.com>
|
||||
Denys Rtveliashvili <denys@rtveliashvili.name>
|
||||
Derek Dai <daiderek@gmail.com>
|
||||
Dimitri John Ledkov <xnox@ubuntu.com>
|
||||
Dmitry Khasanov <pik4ez@gmail.com>
|
||||
Dominik Hassler <hadfl@omniosce.org>
|
||||
Dominik Honnef <dominikh@fork-bomb.org>
|
||||
Don Brady <don.brady@delphix.com>
|
||||
Dr. András Korn <korn-github.com@elan.rulez.org>
|
||||
Eli Rosenthal <eli.rosenthal@delphix.com>
|
||||
Eric Desrochers <eric.desrochers@canonical.com>
|
||||
Eric Dillmann <eric@jave.fr>
|
||||
Eric Schrock <Eric.Schrock@delphix.com>
|
||||
Etienne Dechamps <etienne@edechamps.fr>
|
||||
Evan Susarret <evansus@gmail.com>
|
||||
Fabian Grünbichler <f.gruenbichler@proxmox.com>
|
||||
Fajar A. Nugraha <github@fajar.net>
|
||||
Fan Yong <fan.yong@intel.com>
|
||||
Feng Sun <loyou85@gmail.com>
|
||||
Frederik Wessels <wessels147@gmail.com>
|
||||
Frédéric Vanniere <f.vanniere@planet-work.com>
|
||||
Garrett D'Amore <garrett@nexenta.com>
|
||||
Garrison Jensen <garrison.jensen@gmail.com>
|
||||
Gary Mills <gary_mills@fastmail.fm>
|
||||
Gaurav Kumar <gauravk.18@gmail.com>
|
||||
GeLiXin <ge.lixin@zte.com.cn>
|
||||
George Amanakis <g_amanakis@yahoo.com>
|
||||
George Melikov <mail@gmelikov.ru>
|
||||
George Wilson <gwilson@delphix.com>
|
||||
Georgy Yakovlev <ya@sysdump.net>
|
||||
Giuseppe Di Natale <guss80@gmail.com>
|
||||
Gordan Bobic <gordan@redsleeve.org>
|
||||
Gordon Ross <gwr@nexenta.com>
|
||||
Gregor Kopka <gregor@kopka.net>
|
||||
Grischa Zengel <github.zfsonlinux@zengel.info>
|
||||
Gunnar Beutner <gunnar@beutner.name>
|
||||
Gvozden Neskovic <neskovic@gmail.com>
|
||||
Hajo Möller <dasjoe@gmail.com>
|
||||
Hans Rosenfeld <hans.rosenfeld@nexenta.com>
|
||||
Håkan Johansson <f96hajo@chalmers.se>
|
||||
Igor Kozhukhov <ikozhukhov@gmail.com>
|
||||
Igor Lvovsky <ilvovsky@gmail.com>
|
||||
Isaac Huang <he.huang@intel.com>
|
||||
JK Dingwall <james@dingwall.me.uk>
|
||||
Jacek Fefliński <feflik@gmail.com>
|
||||
James Cowgill <james.cowgill@mips.com>
|
||||
James Lee <jlee@thestaticvoid.com>
|
||||
James Pan <jiaming.pan@yahoo.com>
|
||||
Jan Engelhardt <jengelh@inai.de>
|
||||
Jan Kryl <jan.kryl@nexenta.com>
|
||||
Jan Sanislo <oystr@cs.washington.edu>
|
||||
Jason King <jason.brian.king@gmail.com>
|
||||
Jason Zaman <jasonzaman@gmail.com>
|
||||
Javen Wu <wu.javen@gmail.com>
|
||||
Jeremy Gill <jgill@parallax-innovations.com>
|
||||
Jeremy Jones <jeremy@delphix.com>
|
||||
Jerry Jelinek <jerry.jelinek@joyent.com>
|
||||
Jinshan Xiong <jinshan.xiong@intel.com>
|
||||
Joe Stein <joe.stein@delphix.com>
|
||||
John Albietz <inthecloud247@gmail.com>
|
||||
John Eismeier <john.eismeier@gmail.com>
|
||||
John L. Hammond <john.hammond@intel.com>
|
||||
John Layman <jlayman@sagecloud.com>
|
||||
John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
|
||||
John Wren Kennedy <john.kennedy@delphix.com>
|
||||
Johnny Stenback <github@jstenback.com>
|
||||
Jorgen Lundman <lundman@lundman.net>
|
||||
Josef 'Jeff' Sipek <josef.sipek@nexenta.com>
|
||||
Joshua M. Clulow <josh@sysmgr.org>
|
||||
Justin Bedő <cu@cua0.org>
|
||||
Justin Lecher <jlec@gentoo.org>
|
||||
Justin T. Gibbs <gibbs@FreeBSD.org>
|
||||
Jörg Thalheim <joerg@higgsboson.tk>
|
||||
KORN Andras <korn@elan.rulez.org>
|
||||
Kamil Domański <kamil@domanski.co>
|
||||
Karsten Kretschmer <kkretschmer@gmail.com>
|
||||
Kash Pande <kash@tripleback.net>
|
||||
Keith M Wesolowski <wesolows@foobazco.org>
|
||||
Kevin Tanguy <kevin.tanguy@ovh.net>
|
||||
KireinaHoro <i@jsteward.moe>
|
||||
Kohsuke Kawaguchi <kk@kohsuke.org>
|
||||
Kyle Blatter <kyleblatter@llnl.gov>
|
||||
Kyle Fuller <inbox@kylefuller.co.uk>
|
||||
Loli <ezomori.nozomu@gmail.com>
|
||||
Lars Johannsen <laj@it.dk>
|
||||
Li Dongyang <dongyang.li@anu.edu.au>
|
||||
Li Wei <W.Li@Sun.COM>
|
||||
Lukas Wunner <lukas@wunner.de>
|
||||
Madhav Suresh <madhav.suresh@delphix.com>
|
||||
Manoj Joseph <manoj.joseph@delphix.com>
|
||||
Manuel Amador (Rudd-O) <rudd-o@rudd-o.com>
|
||||
Marcel Huber <marcelhuberfoo@gmail.com>
|
||||
Marcel Telka <marcel.telka@nexenta.com>
|
||||
Marcel Wysocki <maci.stgn@gmail.com>
|
||||
Mark Shellenbaum <Mark.Shellenbaum@Oracle.COM>
|
||||
Mark Wright <markwright@internode.on.net>
|
||||
Martin Matuska <mm@FreeBSD.org>
|
||||
Massimo Maggi <me@massimo-maggi.eu>
|
||||
Matt Johnston <matt@fugro-fsi.com.au>
|
||||
Matt Kemp <matt@mattikus.com>
|
||||
Matthew Ahrens <matt@delphix.com>
|
||||
Matthew Thode <mthode@mthode.org>
|
||||
Matus Kral <matuskral@me.com>
|
||||
Max Grossman <max.grossman@delphix.com>
|
||||
Maximilian Mehnert <maximilian.mehnert@gmx.de>
|
||||
Michael Gebetsroither <michael@mgeb.org>
|
||||
Michael Kjorling <michael@kjorling.se>
|
||||
Michael Martin <mgmartin.mgm@gmail.com>
|
||||
Mike Gerdts <mike.gerdts@joyent.com>
|
||||
Mike Harsch <mike@harschsystems.com>
|
||||
Mike Leddy <mike.leddy@gmail.com>
|
||||
Mike Swanson <mikeonthecomputer@gmail.com>
|
||||
Milan Jurik <milan.jurik@xylab.cz>
|
||||
Morgan Jones <mjones@rice.edu>
|
||||
Moritz Maxeiner <moritz@ucworks.org>
|
||||
Nathaniel Clark <Nathaniel.Clark@misrule.us>
|
||||
Nathaniel Wesley Filardo <nwf@cs.jhu.edu>
|
||||
Nav Ravindranath <nav@delphix.com>
|
||||
Neal Gompa (ニール・ゴンパ) <ngompa13@gmail.com>
|
||||
Ned Bass <bass6@llnl.gov>
|
||||
Neependra Khare <neependra@kqinfotech.com>
|
||||
Neil Stockbridge <neil@dist.ro>
|
||||
Nick Garvey <garvey.nick@gmail.com>
|
||||
Nikolay Borisov <n.borisov.lkml@gmail.com>
|
||||
Olaf Faaland <faaland1@llnl.gov>
|
||||
Oleg Drokin <green@linuxhacker.ru>
|
||||
Oleg Stepura <oleg@stepura.com>
|
||||
Patrik Greco <sikevux@sikevux.se>
|
||||
Paul B. Henson <henson@acm.org>
|
||||
Paul Dagnelie <pcd@delphix.com>
|
||||
Paul Zuchowski <pzuchowski@datto.com>
|
||||
Pavel Boldin <boldin.pavel@gmail.com>
|
||||
Pavel Zakharov <pavel.zakharov@delphix.com>
|
||||
Pawel Jakub Dawidek <pjd@FreeBSD.org>
|
||||
Pedro Giffuni <pfg@freebsd.org>
|
||||
Peng <peng.hse@xtaotech.com>
|
||||
Peter Ashford <ashford@accs.com>
|
||||
Prakash Surya <prakash.surya@delphix.com>
|
||||
Prasad Joshi <prasadjoshi124@gmail.com>
|
||||
Ralf Ertzinger <ralf@skytale.net>
|
||||
Randall Mason <ClashTheBunny@gmail.com>
|
||||
Remy Blank <remy.blank@pobox.com>
|
||||
Ricardo M. Correia <ricardo.correia@oracle.com>
|
||||
Rich Ercolani <rincebrain@gmail.com>
|
||||
Richard Elling <Richard.Elling@RichardElling.com>
|
||||
Richard Laager <rlaager@wiktel.com>
|
||||
Richard Lowe <richlowe@richlowe.net>
|
||||
Richard Sharpe <rsharpe@samba.org>
|
||||
Richard Yao <ryao@gentoo.org>
|
||||
Rohan Puri <rohan.puri15@gmail.com>
|
||||
Romain Dolbeau <romain.dolbeau@atos.net>
|
||||
Roman Strashkin <roman.strashkin@nexenta.com>
|
||||
Ruben Kerkhof <ruben@rubenkerkhof.com>
|
||||
Saso Kiselkov <saso.kiselkov@nexenta.com>
|
||||
Scot W. Stevenson <scot.stevenson@gmail.com>
|
||||
Sean Eric Fagan <sef@ixsystems.com>
|
||||
Sen Haerens <sen@senhaerens.be>
|
||||
Serapheim Dimitropoulos <serapheim@delphix.com>
|
||||
Seth Forshee <seth.forshee@canonical.com>
|
||||
Shampavman <sham.pavman@nexenta.com>
|
||||
Shen Yan <shenyanxxxy@qq.com>
|
||||
Simon Guest <simon.guest@tesujimath.org>
|
||||
Simon Klinkert <simon.klinkert@gmail.com>
|
||||
Sowrabha Gopal <sowrabha.gopal@delphix.com>
|
||||
Stanislav Seletskiy <s.seletskiy@gmail.com>
|
||||
Steffen Müthing <steffen.muething@iwr.uni-heidelberg.de>
|
||||
Stephen Blinick <stephen.blinick@delphix.com>
|
||||
Steve Dougherty <sdougherty@barracuda.com>
|
||||
Steven Burgess <sburgess@dattobackup.com>
|
||||
Steven Hartland <smh@freebsd.org>
|
||||
Steven Johnson <sjohnson@sakuraindustries.com>
|
||||
Stian Ellingsen <stian@plaimi.net>
|
||||
Suman Chakravartula <schakrava@gmail.com>
|
||||
Sydney Vanda <sydney.m.vanda@intel.com>
|
||||
Sören Tempel <soeren+git@soeren-tempel.net>
|
||||
Thijs Cramer <thijs.cramer@gmail.com>
|
||||
Tim Chase <tim@chase2k.com>
|
||||
Tim Connors <tconnors@rather.puzzling.org>
|
||||
Tim Crawford <tcrawford@datto.com>
|
||||
Tim Haley <Tim.Haley@Sun.COM>
|
||||
Tobin Harding <me@tobin.cc>
|
||||
Tom Caputi <tcaputi@datto.com>
|
||||
Tom Matthews <tom@axiom-partners.com>
|
||||
Tom Prince <tom.prince@ualberta.net>
|
||||
Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
|
||||
Tony Hutter <hutter2@llnl.gov>
|
||||
Toomas Soome <tsoome@me.com>
|
||||
Trey Dockendorf <treydock@gmail.com>
|
||||
Turbo Fredriksson <turbo@bayour.com>
|
||||
Tyler J. Stachecki <stachecki.tyler@gmail.com>
|
||||
Vitaut Bajaryn <vitaut.bayaryn@gmail.com>
|
||||
Weigang Li <weigang.li@intel.com>
|
||||
Will Andrews <will@freebsd.org>
|
||||
Will Rouesnel <w.rouesnel@gmail.com>
|
||||
Wolfgang Bumiller <w.bumiller@proxmox.com>
|
||||
Xin Li <delphij@FreeBSD.org>
|
||||
Ying Zhu <casualfisher@gmail.com>
|
||||
YunQiang Su <syq@debian.org>
|
||||
Yuri Pankov <yuri.pankov@gmail.com>
|
||||
Yuxuan Shui <yshuiv7@gmail.com>
|
||||
Zachary Bedell <zac@thebedells.org>
|
2
zfs-0.8.3/CODE_OF_CONDUCT.md
Normal file
2
zfs-0.8.3/CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
The [OpenZFS Code of Conduct](http://www.open-zfs.org/wiki/Code_of_Conduct)
|
||||
applies to spaces associated with the ZFS on Linux project, including GitHub.
|
27
zfs-0.8.3/COPYRIGHT
Normal file
27
zfs-0.8.3/COPYRIGHT
Normal file
|
@ -0,0 +1,27 @@
|
|||
Refer to the git commit log for authoritative copyright attribution.
|
||||
|
||||
The original ZFS source code was obtained from Open Solaris which was
|
||||
released under the terms of the CDDL open source license. Additional
|
||||
changes have been included from OpenZFS and the Illumos project which
|
||||
are similarly licensed. These projects can be found on Github at:
|
||||
|
||||
* https://github.com/illumos/illumos-gate
|
||||
* https://github.com/openzfs/openzfs
|
||||
|
||||
Unless otherwise noted, all files in this distribution are released
|
||||
under the Common Development and Distribution License (CDDL).
|
||||
|
||||
Exceptions are noted within the associated source files headers and
|
||||
by including a THIRDPARTYLICENSE file with the license terms. A few
|
||||
notable exceptions and their respective licenses include:
|
||||
|
||||
* Skein Checksum Implementation: module/icp/algs/skein/THIRDPARTYLICENSE
|
||||
* AES Implementation: module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman
|
||||
* AES Implementation: module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
|
||||
* PBKDF2 Implementation: lib/libzfs/THIRDPARTYLICENSE.openssl
|
||||
* SPL Implementation: module/spl/THIRDPARTYLICENSE.gplv2
|
||||
|
||||
This product includes software developed by the OpenSSL Project for use
|
||||
in the OpenSSL Toolkit (http://www.openssl.org/)
|
||||
|
||||
See the LICENSE and NOTICE for more information.
|
384
zfs-0.8.3/LICENSE
Normal file
384
zfs-0.8.3/LICENSE
Normal file
|
@ -0,0 +1,384 @@
|
|||
Unless otherwise noted, all files in this distribution are released
|
||||
under the Common Development and Distribution License (CDDL).
|
||||
Exceptions are noted within the associated source files.
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
|
||||
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0
|
||||
|
||||
1. Definitions.
|
||||
|
||||
1.1. "Contributor" means each individual or entity that creates
|
||||
or contributes to the creation of Modifications.
|
||||
|
||||
1.2. "Contributor Version" means the combination of the Original
|
||||
Software, prior Modifications used by a Contributor (if any),
|
||||
and the Modifications made by that particular Contributor.
|
||||
|
||||
1.3. "Covered Software" means (a) the Original Software, or (b)
|
||||
Modifications, or (c) the combination of files containing
|
||||
Original Software with files containing Modifications, in
|
||||
each case including portions thereof.
|
||||
|
||||
1.4. "Executable" means the Covered Software in any form other
|
||||
than Source Code.
|
||||
|
||||
1.5. "Initial Developer" means the individual or entity that first
|
||||
makes Original Software available under this License.
|
||||
|
||||
1.6. "Larger Work" means a work which combines Covered Software or
|
||||
portions thereof with code not governed by the terms of this
|
||||
License.
|
||||
|
||||
1.7. "License" means this document.
|
||||
|
||||
1.8. "Licensable" means having the right to grant, to the maximum
|
||||
extent possible, whether at the time of the initial grant or
|
||||
subsequently acquired, any and all of the rights conveyed
|
||||
herein.
|
||||
|
||||
1.9. "Modifications" means the Source Code and Executable form of
|
||||
any of the following:
|
||||
|
||||
A. Any file that results from an addition to, deletion from or
|
||||
modification of the contents of a file containing Original
|
||||
Software or previous Modifications;
|
||||
|
||||
B. Any new file that contains any part of the Original
|
||||
Software or previous Modifications; or
|
||||
|
||||
C. Any new file that is contributed or otherwise made
|
||||
available under the terms of this License.
|
||||
|
||||
1.10. "Original Software" means the Source Code and Executable
|
||||
form of computer software code that is originally released
|
||||
under this License.
|
||||
|
||||
1.11. "Patent Claims" means any patent claim(s), now owned or
|
||||
hereafter acquired, including without limitation, method,
|
||||
process, and apparatus claims, in any patent Licensable by
|
||||
grantor.
|
||||
|
||||
1.12. "Source Code" means (a) the common form of computer software
|
||||
code in which modifications are made and (b) associated
|
||||
documentation included in or with such code.
|
||||
|
||||
1.13. "You" (or "Your") means an individual or a legal entity
|
||||
exercising rights under, and complying with all of the terms
|
||||
of, this License. For legal entities, "You" includes any
|
||||
entity which controls, is controlled by, or is under common
|
||||
control with You. For purposes of this definition,
|
||||
"control" means (a) the power, direct or indirect, to cause
|
||||
the direction or management of such entity, whether by
|
||||
contract or otherwise, or (b) ownership of more than fifty
|
||||
percent (50%) of the outstanding shares or beneficial
|
||||
ownership of such entity.
|
||||
|
||||
2. License Grants.
|
||||
|
||||
2.1. The Initial Developer Grant.
|
||||
|
||||
Conditioned upon Your compliance with Section 3.1 below and
|
||||
subject to third party intellectual property claims, the Initial
|
||||
Developer hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Initial Developer, to use,
|
||||
reproduce, modify, display, perform, sublicense and
|
||||
distribute the Original Software (or portions thereof),
|
||||
with or without Modifications, and/or as part of a Larger
|
||||
Work; and
|
||||
|
||||
(b) under Patent Claims infringed by the making, using or
|
||||
selling of Original Software, to make, have made, use,
|
||||
practice, sell, and offer for sale, and/or otherwise
|
||||
dispose of the Original Software (or portions thereof).
|
||||
|
||||
(c) The licenses granted in Sections 2.1(a) and (b) are
|
||||
effective on the date Initial Developer first distributes
|
||||
or otherwise makes the Original Software available to a
|
||||
third party under the terms of this License.
|
||||
|
||||
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
||||
granted: (1) for code that You delete from the Original
|
||||
Software, or (2) for infringements caused by: (i) the
|
||||
modification of the Original Software, or (ii) the
|
||||
combination of the Original Software with other software
|
||||
or devices.
|
||||
|
||||
2.2. Contributor Grant.
|
||||
|
||||
Conditioned upon Your compliance with Section 3.1 below and
|
||||
subject to third party intellectual property claims, each
|
||||
Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Contributor to use, reproduce,
|
||||
modify, display, perform, sublicense and distribute the
|
||||
Modifications created by such Contributor (or portions
|
||||
thereof), either on an unmodified basis, with other
|
||||
Modifications, as Covered Software and/or as part of a
|
||||
Larger Work; and
|
||||
|
||||
(b) under Patent Claims infringed by the making, using, or
|
||||
selling of Modifications made by that Contributor either
|
||||
alone and/or in combination with its Contributor Version
|
||||
(or portions of such combination), to make, use, sell,
|
||||
offer for sale, have made, and/or otherwise dispose of:
|
||||
(1) Modifications made by that Contributor (or portions
|
||||
thereof); and (2) the combination of Modifications made by
|
||||
that Contributor with its Contributor Version (or portions
|
||||
of such combination).
|
||||
|
||||
(c) The licenses granted in Sections 2.2(a) and 2.2(b) are
|
||||
effective on the date Contributor first distributes or
|
||||
otherwise makes the Modifications available to a third
|
||||
party.
|
||||
|
||||
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
||||
granted: (1) for any code that Contributor has deleted
|
||||
from the Contributor Version; (2) for infringements caused
|
||||
by: (i) third party modifications of Contributor Version,
|
||||
or (ii) the combination of Modifications made by that
|
||||
Contributor with other software (except as part of the
|
||||
Contributor Version) or other devices; or (3) under Patent
|
||||
Claims infringed by Covered Software in the absence of
|
||||
Modifications made by that Contributor.
|
||||
|
||||
3. Distribution Obligations.
|
||||
|
||||
3.1. Availability of Source Code.
|
||||
|
||||
Any Covered Software that You distribute or otherwise make
|
||||
available in Executable form must also be made available in Source
|
||||
Code form and that Source Code form must be distributed only under
|
||||
the terms of this License. You must include a copy of this
|
||||
License with every copy of the Source Code form of the Covered
|
||||
Software You distribute or otherwise make available. You must
|
||||
inform recipients of any such Covered Software in Executable form
|
||||
as to how they can obtain such Covered Software in Source Code
|
||||
form in a reasonable manner on or through a medium customarily
|
||||
used for software exchange.
|
||||
|
||||
3.2. Modifications.
|
||||
|
||||
The Modifications that You create or to which You contribute are
|
||||
governed by the terms of this License. You represent that You
|
||||
believe Your Modifications are Your original creation(s) and/or
|
||||
You have sufficient rights to grant the rights conveyed by this
|
||||
License.
|
||||
|
||||
3.3. Required Notices.
|
||||
|
||||
You must include a notice in each of Your Modifications that
|
||||
identifies You as the Contributor of the Modification. You may
|
||||
not remove or alter any copyright, patent or trademark notices
|
||||
contained within the Covered Software, or any notices of licensing
|
||||
or any descriptive text giving attribution to any Contributor or
|
||||
the Initial Developer.
|
||||
|
||||
3.4. Application of Additional Terms.
|
||||
|
||||
You may not offer or impose any terms on any Covered Software in
|
||||
Source Code form that alters or restricts the applicable version
|
||||
of this License or the recipients' rights hereunder. You may
|
||||
choose to offer, and to charge a fee for, warranty, support,
|
||||
indemnity or liability obligations to one or more recipients of
|
||||
Covered Software. However, you may do so only on Your own behalf,
|
||||
and not on behalf of the Initial Developer or any Contributor.
|
||||
You must make it absolutely clear that any such warranty, support,
|
||||
indemnity or liability obligation is offered by You alone, and You
|
||||
hereby agree to indemnify the Initial Developer and every
|
||||
Contributor for any liability incurred by the Initial Developer or
|
||||
such Contributor as a result of warranty, support, indemnity or
|
||||
liability terms You offer.
|
||||
|
||||
3.5. Distribution of Executable Versions.
|
||||
|
||||
You may distribute the Executable form of the Covered Software
|
||||
under the terms of this License or under the terms of a license of
|
||||
Your choice, which may contain terms different from this License,
|
||||
provided that You are in compliance with the terms of this License
|
||||
and that the license for the Executable form does not attempt to
|
||||
limit or alter the recipient's rights in the Source Code form from
|
||||
the rights set forth in this License. If You distribute the
|
||||
Covered Software in Executable form under a different license, You
|
||||
must make it absolutely clear that any terms which differ from
|
||||
this License are offered by You alone, not by the Initial
|
||||
Developer or Contributor. You hereby agree to indemnify the
|
||||
Initial Developer and every Contributor for any liability incurred
|
||||
by the Initial Developer or such Contributor as a result of any
|
||||
such terms You offer.
|
||||
|
||||
3.6. Larger Works.
|
||||
|
||||
You may create a Larger Work by combining Covered Software with
|
||||
other code not governed by the terms of this License and
|
||||
distribute the Larger Work as a single product. In such a case,
|
||||
You must make sure the requirements of this License are fulfilled
|
||||
for the Covered Software.
|
||||
|
||||
4. Versions of the License.
|
||||
|
||||
4.1. New Versions.
|
||||
|
||||
Sun Microsystems, Inc. is the initial license steward and may
|
||||
publish revised and/or new versions of this License from time to
|
||||
time. Each version will be given a distinguishing version number.
|
||||
Except as provided in Section 4.3, no one other than the license
|
||||
steward has the right to modify this License.
|
||||
|
||||
4.2. Effect of New Versions.
|
||||
|
||||
You may always continue to use, distribute or otherwise make the
|
||||
Covered Software available under the terms of the version of the
|
||||
License under which You originally received the Covered Software.
|
||||
If the Initial Developer includes a notice in the Original
|
||||
Software prohibiting it from being distributed or otherwise made
|
||||
available under any subsequent version of the License, You must
|
||||
distribute and make the Covered Software available under the terms
|
||||
of the version of the License under which You originally received
|
||||
the Covered Software. Otherwise, You may also choose to use,
|
||||
distribute or otherwise make the Covered Software available under
|
||||
the terms of any subsequent version of the License published by
|
||||
the license steward.
|
||||
|
||||
4.3. Modified Versions.
|
||||
|
||||
When You are an Initial Developer and You want to create a new
|
||||
license for Your Original Software, You may create and use a
|
||||
modified version of this License if You: (a) rename the license
|
||||
and remove any references to the name of the license steward
|
||||
(except to note that the license differs from this License); and
|
||||
(b) otherwise make it clear that the license contains terms which
|
||||
differ from this License.
|
||||
|
||||
5. DISCLAIMER OF WARRANTY.
|
||||
|
||||
COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
|
||||
BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
|
||||
INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
|
||||
SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
|
||||
PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
|
||||
PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
|
||||
COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
|
||||
INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY
|
||||
NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
|
||||
WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
||||
ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
|
||||
DISCLAIMER.
|
||||
|
||||
6. TERMINATION.
|
||||
|
||||
6.1. This License and the rights granted hereunder will terminate
|
||||
automatically if You fail to comply with terms herein and fail to
|
||||
cure such breach within 30 days of becoming aware of the breach.
|
||||
Provisions which, by their nature, must remain in effect beyond
|
||||
the termination of this License shall survive.
|
||||
|
||||
6.2. If You assert a patent infringement claim (excluding
|
||||
declaratory judgment actions) against Initial Developer or a
|
||||
Contributor (the Initial Developer or Contributor against whom You
|
||||
assert such claim is referred to as "Participant") alleging that
|
||||
the Participant Software (meaning the Contributor Version where
|
||||
the Participant is a Contributor or the Original Software where
|
||||
the Participant is the Initial Developer) directly or indirectly
|
||||
infringes any patent, then any and all rights granted directly or
|
||||
indirectly to You by such Participant, the Initial Developer (if
|
||||
the Initial Developer is not the Participant) and all Contributors
|
||||
under Sections 2.1 and/or 2.2 of this License shall, upon 60 days
|
||||
notice from Participant terminate prospectively and automatically
|
||||
at the expiration of such 60 day notice period, unless if within
|
||||
such 60 day period You withdraw Your claim with respect to the
|
||||
Participant Software against such Participant either unilaterally
|
||||
or pursuant to a written agreement with Participant.
|
||||
|
||||
6.3. In the event of termination under Sections 6.1 or 6.2 above,
|
||||
all end user licenses that have been validly granted by You or any
|
||||
distributor hereunder prior to termination (excluding licenses
|
||||
granted to You by any distributor) shall survive termination.
|
||||
|
||||
7. LIMITATION OF LIABILITY.
|
||||
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
||||
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
|
||||
INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
|
||||
COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
|
||||
LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
|
||||
CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
|
||||
LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
|
||||
STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
||||
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
|
||||
INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
|
||||
APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
|
||||
NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
|
||||
APPLY TO YOU.
|
||||
|
||||
8. U.S. GOVERNMENT END USERS.
|
||||
|
||||
The Covered Software is a "commercial item," as that term is
|
||||
defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
|
||||
computer software" (as that term is defined at 48
|
||||
C.F.R. 252.227-7014(a)(1)) and "commercial computer software
|
||||
documentation" as such terms are used in 48 C.F.R. 12.212
|
||||
(Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48
|
||||
C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all
|
||||
U.S. Government End Users acquire Covered Software with only those
|
||||
rights set forth herein. This U.S. Government Rights clause is in
|
||||
lieu of, and supersedes, any other FAR, DFAR, or other clause or
|
||||
provision that addresses Government rights in computer software
|
||||
under this License.
|
||||
|
||||
9. MISCELLANEOUS.
|
||||
|
||||
This License represents the complete agreement concerning subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. This License shall be governed
|
||||
by the law of the jurisdiction specified in a notice contained
|
||||
within the Original Software (except to the extent applicable law,
|
||||
if any, provides otherwise), excluding such jurisdiction's
|
||||
conflict-of-law provisions. Any litigation relating to this
|
||||
License shall be subject to the jurisdiction of the courts located
|
||||
in the jurisdiction and venue specified in a notice contained
|
||||
within the Original Software, with the losing party responsible
|
||||
for costs, including, without limitation, court costs and
|
||||
reasonable attorneys' fees and expenses. The application of the
|
||||
United Nations Convention on Contracts for the International Sale
|
||||
of Goods is expressly excluded. Any law or regulation which
|
||||
provides that the language of a contract shall be construed
|
||||
against the drafter shall not apply to this License. You agree
|
||||
that You alone are responsible for compliance with the United
|
||||
States export administration regulations (and the export control
|
||||
laws and regulation of any other countries) when You use,
|
||||
distribute or otherwise make available any Covered Software.
|
||||
|
||||
10. RESPONSIBILITY FOR CLAIMS.
|
||||
|
||||
As between Initial Developer and the Contributors, each party is
|
||||
responsible for claims and damages arising, directly or
|
||||
indirectly, out of its utilization of rights under this License
|
||||
and You agree to work with Initial Developer and Contributors to
|
||||
distribute such responsibility on an equitable basis. Nothing
|
||||
herein is intended or shall be deemed to constitute any admission
|
||||
of liability.
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND
|
||||
DISTRIBUTION LICENSE (CDDL)
|
||||
|
||||
For Covered Software in this distribution, this License shall
|
||||
be governed by the laws of the State of California (excluding
|
||||
conflict-of-law provisions).
|
||||
|
||||
Any litigation relating to this License shall be subject to the
|
||||
jurisdiction of the Federal Courts of the Northern District of
|
||||
California and the state courts of the State of California, with
|
||||
venue lying in Santa Clara County, California.
|
10
zfs-0.8.3/META
Normal file
10
zfs-0.8.3/META
Normal file
|
@ -0,0 +1,10 @@
|
|||
Meta: 1
|
||||
Name: zfs
|
||||
Branch: 1.0
|
||||
Version: 0.8.3
|
||||
Release: 1
|
||||
Release-Tags: relext
|
||||
License: CDDL
|
||||
Author: OpenZFS on Linux
|
||||
Linux-Maximum: 5.4
|
||||
Linux-Minimum: 2.6.32
|
1672
zfs-0.8.3/Makefile
Normal file
1672
zfs-0.8.3/Makefile
Normal file
File diff suppressed because it is too large
Load diff
174
zfs-0.8.3/Makefile.am
Normal file
174
zfs-0.8.3/Makefile.am
Normal file
|
@ -0,0 +1,174 @@
|
|||
ACLOCAL_AMFLAGS = -I config
|
||||
|
||||
include config/rpm.am
|
||||
include config/deb.am
|
||||
include config/tgz.am
|
||||
|
||||
SUBDIRS = include rpm
|
||||
if CONFIG_USER
|
||||
SUBDIRS += udev etc man scripts lib tests cmd contrib
|
||||
endif
|
||||
if CONFIG_KERNEL
|
||||
SUBDIRS += module
|
||||
|
||||
extradir = $(prefix)/src/zfs-$(VERSION)
|
||||
extra_HEADERS = zfs.release.in zfs_config.h.in
|
||||
|
||||
kerneldir = $(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION)
|
||||
nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
|
||||
endif
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
EXTRA_DIST = autogen.sh copy-builtin
|
||||
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
||||
EXTRA_DIST += META AUTHORS COPYRIGHT LICENSE NEWS NOTICE README.md
|
||||
EXTRA_DIST += CODE_OF_CONDUCT.md
|
||||
|
||||
# Include all the extra licensing information for modules
|
||||
EXTRA_DIST += module/icp/algs/skein/THIRDPARTYLICENSE
|
||||
EXTRA_DIST += module/icp/algs/skein/THIRDPARTYLICENSE.descrip
|
||||
EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman
|
||||
EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman.descrip
|
||||
EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
|
||||
EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl.descrip
|
||||
EXTRA_DIST += module/spl/THIRDPARTYLICENSE.gplv2
|
||||
EXTRA_DIST += module/spl/THIRDPARTYLICENSE.gplv2.descrip
|
||||
EXTRA_DIST += module/zfs/THIRDPARTYLICENSE.cityhash
|
||||
EXTRA_DIST += module/zfs/THIRDPARTYLICENSE.cityhash.descrip
|
||||
|
||||
@CODE_COVERAGE_RULES@
|
||||
|
||||
.PHONY: gitrev
|
||||
gitrev:
|
||||
-${top_srcdir}/scripts/make_gitrev.sh
|
||||
|
||||
BUILT_SOURCES = gitrev
|
||||
|
||||
# Double-colon rules are allowed; there are multiple independent definitions.
|
||||
distclean-local::
|
||||
-$(RM) -R autom4te*.cache build
|
||||
-find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
|
||||
-o -name .pc -o -name .hg -o -name .git \) -prune -o \
|
||||
\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
|
||||
-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
|
||||
-o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
|
||||
-o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
|
||||
-o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
|
||||
-o -name '*.gcno' \) \
|
||||
-type f -print | xargs $(RM)
|
||||
|
||||
all-local:
|
||||
-[ -x ${top_builddir}/scripts/zfs-tests.sh ] && \
|
||||
${top_builddir}/scripts/zfs-tests.sh -c
|
||||
|
||||
dist-hook: gitrev
|
||||
cp ${top_srcdir}/include/zfs_gitrev.h $(distdir)/include; \
|
||||
sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
|
||||
$(distdir)/META
|
||||
|
||||
# For compatibility, create a matching spl-x.y.z directly which contains
|
||||
# symlinks to the updated header and object file locations. These
|
||||
# compatibility links will be removed in the next major release.
|
||||
if CONFIG_KERNEL
|
||||
install-data-hook:
|
||||
rm -rf $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
|
||||
mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
|
||||
cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
|
||||
ln -s ../zfs-$(VERSION)/include/spl include && \
|
||||
ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
|
||||
ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
|
||||
ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
|
||||
cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
|
||||
ln -fs zfs_config.h spl_config.h && \
|
||||
ln -fs zfs.release spl.release
|
||||
endif
|
||||
|
||||
codecheck: cstyle shellcheck flake8 mancheck testscheck vcscheck
|
||||
|
||||
checkstyle: codecheck commitcheck
|
||||
|
||||
commitcheck:
|
||||
@if git rev-parse --git-dir > /dev/null 2>&1; then \
|
||||
${top_srcdir}/scripts/commitcheck.sh; \
|
||||
fi
|
||||
|
||||
cstyle:
|
||||
@find ${top_srcdir} -name build -prune -o -name '*.[hc]' \
|
||||
! -name 'zfs_config.*' ! -name '*.mod.c' -type f \
|
||||
-exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
|
||||
|
||||
shellcheck:
|
||||
@if type shellcheck > /dev/null 2>&1; then \
|
||||
shellcheck --exclude=SC1090 --format=gcc \
|
||||
$$(find ${top_srcdir}/scripts/*.sh -type f) \
|
||||
$$(find ${top_srcdir}/cmd/zed/zed.d/*.sh -type f) \
|
||||
$$(find ${top_srcdir}/cmd/zpool/zpool.d/* -executable); \
|
||||
else \
|
||||
echo "skipping shellcheck because shellcheck is not installed"; \
|
||||
fi
|
||||
|
||||
mancheck:
|
||||
@if type mandoc > /dev/null 2>&1; then \
|
||||
find ${top_srcdir}/man/man8 -type f -name 'zfs.8' \
|
||||
-o -name 'zpool.8' -o -name 'zdb.8' \
|
||||
-o -name 'zgenhostid.8' | \
|
||||
xargs mandoc -Tlint -Werror; \
|
||||
else \
|
||||
echo "skipping mancheck because mandoc is not installed"; \
|
||||
fi
|
||||
|
||||
testscheck:
|
||||
@find ${top_srcdir}/tests/zfs-tests -type f \
|
||||
\( -name '*.ksh' -not -executable \) -o \
|
||||
\( -name '*.kshlib' -executable \) -o \
|
||||
\( -name '*.shlib' -executable \) -o \
|
||||
\( -name '*.cfg' -executable \) | \
|
||||
xargs -r stat -c '%A %n' | \
|
||||
awk '{c++; print} END {if(c>0) exit 1}'
|
||||
|
||||
vcscheck:
|
||||
@if git rev-parse --git-dir > /dev/null 2>&1; then \
|
||||
git ls-files . --exclude-standard --others | \
|
||||
awk '{c++; print} END {if(c>0) exit 1}' ; \
|
||||
fi
|
||||
|
||||
lint: cppcheck paxcheck
|
||||
|
||||
cppcheck:
|
||||
@if type cppcheck > /dev/null 2>&1; then \
|
||||
cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
|
||||
--suppressions-list=.github/suppressions.txt \
|
||||
-UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
|
||||
${top_srcdir}; \
|
||||
else \
|
||||
echo "skipping cppcheck because cppcheck is not installed"; \
|
||||
fi
|
||||
|
||||
paxcheck:
|
||||
@if type scanelf > /dev/null 2>&1; then \
|
||||
${top_srcdir}/scripts/paxcheck.sh ${top_srcdir}; \
|
||||
else \
|
||||
echo "skipping paxcheck because scanelf is not installed"; \
|
||||
fi
|
||||
|
||||
flake8:
|
||||
@if type flake8 > /dev/null 2>&1; then \
|
||||
flake8 ${top_srcdir}; \
|
||||
else \
|
||||
echo "skipping flake8 because flake8 is not installed"; \
|
||||
fi
|
||||
|
||||
ctags:
|
||||
$(RM) tags
|
||||
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
||||
|
||||
etags:
|
||||
$(RM) TAGS
|
||||
find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
|
||||
|
||||
tags: ctags etags
|
||||
|
||||
pkg: @DEFAULT_PACKAGE@
|
||||
pkg-dkms: @DEFAULT_PACKAGE@-dkms
|
||||
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
||||
pkg-utils: @DEFAULT_PACKAGE@-utils
|
1574
zfs-0.8.3/Makefile.in
Normal file
1574
zfs-0.8.3/Makefile.in
Normal file
File diff suppressed because it is too large
Load diff
3
zfs-0.8.3/NEWS
Normal file
3
zfs-0.8.3/NEWS
Normal file
|
@ -0,0 +1,3 @@
|
|||
Descriptions of all releases can be found on github:
|
||||
|
||||
https://github.com/zfsonlinux/zfs/releases
|
16
zfs-0.8.3/NOTICE
Normal file
16
zfs-0.8.3/NOTICE
Normal file
|
@ -0,0 +1,16 @@
|
|||
This work was produced under the auspices of the U.S. Department of Energy by
|
||||
Lawrence Livermore National Laboratory under Contract DE-AC52-07NA27344.
|
||||
|
||||
This work was prepared as an account of work sponsored by an agency of the
|
||||
United States Government. Neither the United States Government nor Lawrence
|
||||
Livermore National Security, LLC, nor any of their employees makes any warranty,
|
||||
expressed or implied, or assumes any legal liability or responsibility for the
|
||||
accuracy, completeness, or usefulness of any information, apparatus, product, or
|
||||
process disclosed, or represents that its use would not infringe privately owned
|
||||
rights. Reference herein to any specific commercial product, process, or service
|
||||
by trade name, trademark, manufacturer, or otherwise does not necessarily
|
||||
constitute or imply its endorsement, recommendation, or favoring by the United
|
||||
States Government or Lawrence Livermore National Security, LLC. The views and
|
||||
opinions of authors expressed herein do not necessarily state or reflect those
|
||||
of the United States Government or Lawrence Livermore National Security, LLC,
|
||||
and shall not be used for advertising or product endorsement purposes.
|
31
zfs-0.8.3/README.md
Normal file
31
zfs-0.8.3/README.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
![img](http://zfsonlinux.org/images/zfs-linux.png)
|
||||
|
||||
ZFS on Linux is an advanced file system and volume manager which was originally
|
||||
developed for Solaris and is now maintained by the OpenZFS community.
|
||||
|
||||
[![codecov](https://codecov.io/gh/zfsonlinux/zfs/branch/master/graph/badge.svg)](https://codecov.io/gh/zfsonlinux/zfs)
|
||||
[![coverity](https://scan.coverity.com/projects/1973/badge.svg)](https://scan.coverity.com/projects/zfsonlinux-zfs)
|
||||
|
||||
# Official Resources
|
||||
|
||||
* [Site](http://zfsonlinux.org)
|
||||
* [Wiki](https://github.com/zfsonlinux/zfs/wiki)
|
||||
* [Mailing lists](https://github.com/zfsonlinux/zfs/wiki/Mailing-Lists)
|
||||
* [OpenZFS site](http://open-zfs.org/)
|
||||
|
||||
# Installation
|
||||
|
||||
Full documentation for installing ZoL on your favorite Linux distribution can
|
||||
be found at [our site](http://zfsonlinux.org/).
|
||||
|
||||
# Contribute & Develop
|
||||
|
||||
We have a separate document with [contribution guidelines](./.github/CONTRIBUTING.md).
|
||||
|
||||
# Release
|
||||
|
||||
ZFS on Linux is released under a CDDL license.
|
||||
For more details see the NOTICE, LICENSE and COPYRIGHT files; `UCRL-CODE-235197`
|
||||
|
||||
# Supported Kernels
|
||||
* The `META` file contains the officially recognized supported kernel versions.
|
1596
zfs-0.8.3/aclocal.m4
vendored
Normal file
1596
zfs-0.8.3/aclocal.m4
vendored
Normal file
File diff suppressed because it is too large
Load diff
4
zfs-0.8.3/autogen.sh
Executable file
4
zfs-0.8.3/autogen.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
autoreconf -fiv || exit 1
|
||||
rm -Rf autom4te.cache
|
1
zfs-0.8.3/bin/arc_summary
Symbolic link
1
zfs-0.8.3/bin/arc_summary
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/bin/arc_summary3
|
1
zfs-0.8.3/bin/arc_summary3
Symbolic link
1
zfs-0.8.3/bin/arc_summary3
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/cmd/arc_summary/arc_summary3
|
1
zfs-0.8.3/bin/arcstat
Symbolic link
1
zfs-0.8.3/bin/arcstat
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/cmd/arcstat/arcstat
|
1
zfs-0.8.3/bin/arp
Symbolic link
1
zfs-0.8.3/bin/arp
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/sbin/arp
|
1
zfs-0.8.3/bin/awk
Symbolic link
1
zfs-0.8.3/bin/awk
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/awk
|
1
zfs-0.8.3/bin/base64
Symbolic link
1
zfs-0.8.3/bin/base64
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/base64
|
1
zfs-0.8.3/bin/basename
Symbolic link
1
zfs-0.8.3/bin/basename
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/basename
|
1
zfs-0.8.3/bin/bc
Symbolic link
1
zfs-0.8.3/bin/bc
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/bc
|
1
zfs-0.8.3/bin/blkid
Symbolic link
1
zfs-0.8.3/bin/blkid
Symbolic link
|
@ -0,0 +1 @@
|
|||
/sbin/blkid
|
1
zfs-0.8.3/bin/blockdev
Symbolic link
1
zfs-0.8.3/bin/blockdev
Symbolic link
|
@ -0,0 +1 @@
|
|||
/sbin/blockdev
|
1
zfs-0.8.3/bin/bunzip2
Symbolic link
1
zfs-0.8.3/bin/bunzip2
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/bunzip2
|
1
zfs-0.8.3/bin/bzcat
Symbolic link
1
zfs-0.8.3/bin/bzcat
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/bzcat
|
1
zfs-0.8.3/bin/cat
Symbolic link
1
zfs-0.8.3/bin/cat
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/cat
|
1
zfs-0.8.3/bin/chattr
Symbolic link
1
zfs-0.8.3/bin/chattr
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/chattr
|
1
zfs-0.8.3/bin/chg_usr_exec
Symbolic link
1
zfs-0.8.3/bin/chg_usr_exec
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/chg_usr_exec/chg_usr_exec
|
1
zfs-0.8.3/bin/chgrp
Symbolic link
1
zfs-0.8.3/bin/chgrp
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/chgrp
|
1
zfs-0.8.3/bin/chmod
Symbolic link
1
zfs-0.8.3/bin/chmod
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/chmod
|
1
zfs-0.8.3/bin/chown
Symbolic link
1
zfs-0.8.3/bin/chown
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/chown
|
1
zfs-0.8.3/bin/cksum
Symbolic link
1
zfs-0.8.3/bin/cksum
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/cksum
|
1
zfs-0.8.3/bin/cmp
Symbolic link
1
zfs-0.8.3/bin/cmp
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/cmp
|
1
zfs-0.8.3/bin/compress
Symbolic link
1
zfs-0.8.3/bin/compress
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/bin/gzip
|
1
zfs-0.8.3/bin/cp
Symbolic link
1
zfs-0.8.3/bin/cp
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/cp
|
1
zfs-0.8.3/bin/cpio
Symbolic link
1
zfs-0.8.3/bin/cpio
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/cpio
|
1
zfs-0.8.3/bin/cut
Symbolic link
1
zfs-0.8.3/bin/cut
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/cut
|
1
zfs-0.8.3/bin/date
Symbolic link
1
zfs-0.8.3/bin/date
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/date
|
1
zfs-0.8.3/bin/dbufstat
Symbolic link
1
zfs-0.8.3/bin/dbufstat
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/cmd/dbufstat/dbufstat
|
1
zfs-0.8.3/bin/dd
Symbolic link
1
zfs-0.8.3/bin/dd
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/dd
|
1
zfs-0.8.3/bin/devname2devid
Symbolic link
1
zfs-0.8.3/bin/devname2devid
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/devname2devid/devname2devid
|
1
zfs-0.8.3/bin/df
Symbolic link
1
zfs-0.8.3/bin/df
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/df
|
1
zfs-0.8.3/bin/diff
Symbolic link
1
zfs-0.8.3/bin/diff
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/diff
|
1
zfs-0.8.3/bin/dir_rd_update
Symbolic link
1
zfs-0.8.3/bin/dir_rd_update
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/dir_rd_update/dir_rd_update
|
1
zfs-0.8.3/bin/dirname
Symbolic link
1
zfs-0.8.3/bin/dirname
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/dirname
|
1
zfs-0.8.3/bin/dmesg
Symbolic link
1
zfs-0.8.3/bin/dmesg
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/dmesg
|
1
zfs-0.8.3/bin/dmidecode
Symbolic link
1
zfs-0.8.3/bin/dmidecode
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/sbin/dmidecode
|
1
zfs-0.8.3/bin/du
Symbolic link
1
zfs-0.8.3/bin/du
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/du
|
1
zfs-0.8.3/bin/echo
Symbolic link
1
zfs-0.8.3/bin/echo
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/echo
|
1
zfs-0.8.3/bin/egrep
Symbolic link
1
zfs-0.8.3/bin/egrep
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/egrep
|
1
zfs-0.8.3/bin/expr
Symbolic link
1
zfs-0.8.3/bin/expr
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/expr
|
1
zfs-0.8.3/bin/fallocate
Symbolic link
1
zfs-0.8.3/bin/fallocate
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/fallocate
|
1
zfs-0.8.3/bin/false
Symbolic link
1
zfs-0.8.3/bin/false
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/false
|
1
zfs-0.8.3/bin/fdisk
Symbolic link
1
zfs-0.8.3/bin/fdisk
Symbolic link
|
@ -0,0 +1 @@
|
|||
/sbin/fdisk
|
1
zfs-0.8.3/bin/file
Symbolic link
1
zfs-0.8.3/bin/file
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/file
|
1
zfs-0.8.3/bin/file_check
Symbolic link
1
zfs-0.8.3/bin/file_check
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/file_check/file_check
|
1
zfs-0.8.3/bin/file_trunc
Symbolic link
1
zfs-0.8.3/bin/file_trunc
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/file_trunc/file_trunc
|
1
zfs-0.8.3/bin/file_write
Symbolic link
1
zfs-0.8.3/bin/file_write
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/file_write/file_write
|
1
zfs-0.8.3/bin/find
Symbolic link
1
zfs-0.8.3/bin/find
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/find
|
1
zfs-0.8.3/bin/free
Symbolic link
1
zfs-0.8.3/bin/free
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/free
|
1
zfs-0.8.3/bin/fsck
Symbolic link
1
zfs-0.8.3/bin/fsck
Symbolic link
|
@ -0,0 +1 @@
|
|||
/sbin/fsck.ext4
|
1
zfs-0.8.3/bin/getconf
Symbolic link
1
zfs-0.8.3/bin/getconf
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/getconf
|
1
zfs-0.8.3/bin/getent
Symbolic link
1
zfs-0.8.3/bin/getent
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/getent
|
1
zfs-0.8.3/bin/getfacl
Symbolic link
1
zfs-0.8.3/bin/getfacl
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/getfacl
|
1
zfs-0.8.3/bin/grep
Symbolic link
1
zfs-0.8.3/bin/grep
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/grep
|
1
zfs-0.8.3/bin/groupadd
Symbolic link
1
zfs-0.8.3/bin/groupadd
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/sbin/groupadd
|
1
zfs-0.8.3/bin/groupdel
Symbolic link
1
zfs-0.8.3/bin/groupdel
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/sbin/groupdel
|
1
zfs-0.8.3/bin/groupmod
Symbolic link
1
zfs-0.8.3/bin/groupmod
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/sbin/groupmod
|
1
zfs-0.8.3/bin/gunzip
Symbolic link
1
zfs-0.8.3/bin/gunzip
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/gunzip
|
1
zfs-0.8.3/bin/gzip
Symbolic link
1
zfs-0.8.3/bin/gzip
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/gzip
|
1
zfs-0.8.3/bin/head
Symbolic link
1
zfs-0.8.3/bin/head
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/head
|
1
zfs-0.8.3/bin/hostid
Symbolic link
1
zfs-0.8.3/bin/hostid
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/hostid
|
1
zfs-0.8.3/bin/hostname
Symbolic link
1
zfs-0.8.3/bin/hostname
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/hostname
|
1
zfs-0.8.3/bin/id
Symbolic link
1
zfs-0.8.3/bin/id
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/id
|
1
zfs-0.8.3/bin/kill
Symbolic link
1
zfs-0.8.3/bin/kill
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/kill
|
1
zfs-0.8.3/bin/ksh
Symbolic link
1
zfs-0.8.3/bin/ksh
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/ksh
|
1
zfs-0.8.3/bin/largest_file
Symbolic link
1
zfs-0.8.3/bin/largest_file
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/largest_file/largest_file
|
1
zfs-0.8.3/bin/libzfs_input_check
Symbolic link
1
zfs-0.8.3/bin/libzfs_input_check
Symbolic link
|
@ -0,0 +1 @@
|
|||
/root/src/zfs-builds-mm/zfs-0.8.3/tests/zfs-tests/cmd/libzfs_input_check/libzfs_input_check
|
1
zfs-0.8.3/bin/ln
Symbolic link
1
zfs-0.8.3/bin/ln
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/ln
|
1
zfs-0.8.3/bin/logname
Symbolic link
1
zfs-0.8.3/bin/logname
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/logname
|
1
zfs-0.8.3/bin/losetup
Symbolic link
1
zfs-0.8.3/bin/losetup
Symbolic link
|
@ -0,0 +1 @@
|
|||
/sbin/losetup
|
1
zfs-0.8.3/bin/ls
Symbolic link
1
zfs-0.8.3/bin/ls
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/ls
|
1
zfs-0.8.3/bin/lsattr
Symbolic link
1
zfs-0.8.3/bin/lsattr
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/lsattr
|
1
zfs-0.8.3/bin/lsblk
Symbolic link
1
zfs-0.8.3/bin/lsblk
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/lsblk
|
1
zfs-0.8.3/bin/lscpu
Symbolic link
1
zfs-0.8.3/bin/lscpu
Symbolic link
|
@ -0,0 +1 @@
|
|||
/usr/bin/lscpu
|
1
zfs-0.8.3/bin/lsmod
Symbolic link
1
zfs-0.8.3/bin/lsmod
Symbolic link
|
@ -0,0 +1 @@
|
|||
/bin/lsmod
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue