forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from openzfs/master
merge upstream
- Loading branch information
Showing
991 changed files
with
73,731 additions
and
8,732 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{c,h}] | ||
tab_width = 8 | ||
indent_style = tab |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
preprocessorErrorDirective:./module/zfs/vdev_raidz_math_avx512f.c:243 | ||
preprocessorErrorDirective:./module/zfs/vdev_raidz_math_sse2.c:266 | ||
|
||
uninitvar:module/os/freebsd/zfs/vdev_geom.c | ||
uninitvar:module/os/freebsd/zfs/zfs_vfsops.c | ||
uninitvar:module/os/freebsd/spl/spl_zone.c | ||
uninitvar:lib/libzutil/os/freebsd/zutil_import_os.c |
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 |
---|---|---|
|
@@ -62,4 +62,9 @@ cscope.* | |
*.patch | ||
*.orig | ||
*.log | ||
*.tmp | ||
venv | ||
|
||
*.so | ||
*.so.debug | ||
*.so.full |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,35 @@ | ||
 | ||
 | ||
|
||
ZFS on Linux is an advanced file system and volume manager which was originally | ||
OpenZFS is an advanced file system and volume manager which was originally | ||
developed for Solaris and is now maintained by the OpenZFS community. | ||
This repository contains the code for running OpenZFS on Linux and FreeBSD. | ||
|
||
[](https://codecov.io/gh/zfsonlinux/zfs) | ||
[](https://scan.coverity.com/projects/zfsonlinux-zfs) | ||
[](https://codecov.io/gh/openzfs/zfs) | ||
[](https://scan.coverity.com/projects/openzfs-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/) | ||
* [Wiki](https://github.com/openzfs/zfs/wiki) - for using and developing this repo | ||
* [ZoL Site](https://zfsonlinux.org) - Linux release info & links | ||
* [Mailing lists](https://github.com/openzfs/zfs/wiki/Mailing-Lists) | ||
* [OpenZFS site](http://open-zfs.org/) - for conference videos and info on other platforms (illumos, OSX, Windows, etc) | ||
|
||
# Installation | ||
|
||
Full documentation for installing ZoL on your favorite Linux distribution can | ||
be found at [our site](http://zfsonlinux.org/). | ||
Full documentation for installing OpenZFS on your favorite Linux distribution can | ||
be found at the [ZoL Site](https://zfsonlinux.org/). | ||
|
||
# Contribute & Develop | ||
|
||
We have a separate document with [contribution guidelines](./.github/CONTRIBUTING.md). | ||
|
||
We have a [Code of Conduct](./CODE_OF_CONDUCT.md). | ||
|
||
# Release | ||
|
||
ZFS on Linux is released under a CDDL license. | ||
OpenZFS 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. | ||
* The `META` file contains the officially recognized supported Linux kernel versions. | ||
* Supported FreeBSD versions are 12-STABLE and 13-CURRENT. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
SUBDIRS = zfs zpool zdb zhack zinject zstreamdump ztest | ||
SUBDIRS += fsck_zfs vdev_id raidz_test zgenhostid | ||
SUBDIRS = zfs zpool zdb zhack zinject zstream zstreamdump ztest | ||
SUBDIRS += fsck_zfs vdev_id raidz_test | ||
|
||
if USING_PYTHON | ||
SUBDIRS += arcstat arc_summary dbufstat | ||
endif | ||
|
||
if BUILD_LINUX | ||
SUBDIRS += mount_zfs zed zvol_id zvol_wait | ||
SUBDIRS += mount_zfs zed zgenhostid zvol_id zvol_wait | ||
endif |
Oops, something went wrong.