diff options
author | Toomas Soome <[email protected]> | 2016-12-02 23:13:44 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-04-07 14:18:19 -0700 |
commit | 8aab12182184802afb3937f1fa35be4368a45f0d (patch) | |
tree | f321a025a0d8438544065dbc3b4d29dade765ed2 /include/sys | |
parent | 10f251191f16d53d8a64a934e83c3bfe6cd9195f (diff) |
OpenZFS 7404 - rootpool_007_neg, bootfs_006_pos and bootfs_008_neg tests fail with the loader project bits
Authored by: Toomas Soome <[email protected]>
Reviewed by: Igor Kozhukhov <[email protected]>
Reviewed by: Marcel Telka <[email protected]>
Reviewed by: Matthew Ahrens <[email protected]>
Approved by: Richard Lowe <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Ported-by: Brian Behlendorf <[email protected]>
Porting Notes:
- Removed gzip and zle compression restriction on bootfs
datasets. Grub added support for these long ago. Ay
version of grub which understands lz4 also supports this.
- Enabled rootpool tests in runfile but skipped by default
in setup on Linux since they modify the rootpool.
- bootfs_006_pos.ksh, striped pools are allowed as bootfs.
OpenZFS-issue: https://www.illumos.org/issues/7404
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/55a424c
Closes #5982
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/zio.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/sys/zio.h b/include/sys/zio.h index 54b106f05..b69146b6e 100644 --- a/include/sys/zio.h +++ b/include/sys/zio.h @@ -120,6 +120,16 @@ enum zio_checksum { #define BOOTFS_COMPRESS_VALID(compress) \ ((compress) == ZIO_COMPRESS_LZJB || \ (compress) == ZIO_COMPRESS_LZ4 || \ + (compress) == ZIO_COMPRESS_GZIP_1 || \ + (compress) == ZIO_COMPRESS_GZIP_2 || \ + (compress) == ZIO_COMPRESS_GZIP_3 || \ + (compress) == ZIO_COMPRESS_GZIP_4 || \ + (compress) == ZIO_COMPRESS_GZIP_5 || \ + (compress) == ZIO_COMPRESS_GZIP_6 || \ + (compress) == ZIO_COMPRESS_GZIP_7 || \ + (compress) == ZIO_COMPRESS_GZIP_8 || \ + (compress) == ZIO_COMPRESS_GZIP_9 || \ + (compress) == ZIO_COMPRESS_ZLE || \ (compress) == ZIO_COMPRESS_ON || \ (compress) == ZIO_COMPRESS_OFF) |