-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minimal changes required to integrate the SPL sources in to the ZFS repository build infrastructure. Build system and packaging: * Renamed SPL_* autoconf m4 macros to ZFS_*. * Removed redundant SPL_* autoconf m4 macros. * Updated the RPM spec files to remove SPL package dependency. * The zfs package obsoletes the spl package, and the zfs-kmod package obsoletes the spl-kmod package. * The zfs-kmod-devel* packages were updated to add compatibility symlinks under /usr/src/spl-x.y.z until all dependent packages can be updated. They will be removed in a future release. * Updated copy-builtin script for in-kernel builds. * Updated DKMS package to include the spl.ko. * Updated stale AUTHORS file to include all contributors. * Updated stale COPYRIGHT and included the SPL as an exception. Required code changes: * Removed redundant HAVE_SPL macro. * Removed _BOOT from nvpairs since it doesn't apply for Linux. * Initial header cleanup (removal of empty headers, refactoring). * Remove SPL repository clone/build from zimport.sh. * Use of DEFINE_RATELIMIT_STATE and DEFINE_SPINLOCK removed due to build issues when forcing C99 compilation. * Replaced legacy ACCESS_ONCE with READ_ONCE. * Include needed headers for `current` and `EXPORT_SYMBOL`. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> TEST_ZIMPORT_SKIP="yes" Build-ZFS: yes Build-SPL: no
- Loading branch information
1 parent
6cb3c60
commit cd73aef
Showing
204 changed files
with
1,055 additions
and
1,134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,31 @@ | ||
The majority of the code in the ZFS on Linux port comes from OpenSolaris | ||
which has been released under the terms of the CDDL open source license. | ||
This includes the core ZFS code, libavl, libnvpair, libefi, libunicode, | ||
and libutil. The original OpenSolaris source can be downloaded from: | ||
The latest released and development versions can be downloaded from: | ||
|
||
http://dlc.sun.com/osol/on/downloads/b121/on-src.tar.bz2 | ||
* https://github.com/zfsonlinux/zfs/releases | ||
|
||
Files which do not originate from OpenSolaris are noted in the file header | ||
and attributed properly. These exceptions include, but are not limited | ||
to, the vdev_disk.c and zvol.c implementation which are licensed under | ||
the CDDL. | ||
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: | ||
|
||
The latest stable and development versions of this port can be downloaded | ||
from the official ZFS on Linux site located at: | ||
|
||
http://zfsonlinux.org/ | ||
|
||
This ZFS on Linux port was produced at the Lawrence Livermore National | ||
Laboratory (LLNL) under Contract No. DE-AC52-07NA27344 (Contract 44) | ||
between the U.S. Department of Energy (DOE) and Lawrence Livermore | ||
National Security, LLC (LLNS) for the operation of LLNL. It has been | ||
approved for release under LLNL-CODE-403049. | ||
* 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. 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 | ||
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 file OPENSOLARIS.LICENSE for more information. | ||
See the OPENSOLARIS.LICENSE and DISCLAIMER for more information. | ||
|
||
Refer to the git commit log for authoritative copyright attribution. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.