git: f993fff68979 - main - Sort list of supported features for more easy handling in the future.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 10 Nov 2022 08:49:11 UTC
The branch main has been updated by netchild:
URL: https://cgit.FreeBSD.org/src/commit/?id=f993fff6897946077a3f9604b7dcbe59f5ce5135
commit f993fff6897946077a3f9604b7dcbe59f5ce5135
Author: Alexander Leidinger <netchild@FreeBSD.org>
AuthorDate: 2022-11-10 08:47:23 +0000
Commit: Alexander Leidinger <netchild@FreeBSD.org>
CommitDate: 2022-11-10 08:47:23 +0000
Sort list of supported features for more easy handling
in the future.
Reviewed by: imp
---
stand/libsa/zfs/zfsimpl.c | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/stand/libsa/zfs/zfsimpl.c b/stand/libsa/zfs/zfsimpl.c
index 6b961f3110ae..36c90613e827 100644
--- a/stand/libsa/zfs/zfsimpl.c
+++ b/stand/libsa/zfs/zfsimpl.c
@@ -118,29 +118,29 @@ static vdev_list_t zfs_vdevs;
* List of ZFS features supported for read
*/
static const char *features_for_read[] = {
- "org.illumos:lz4_compress",
- "com.delphix:hole_birth",
- "com.delphix:extensible_dataset",
- "com.delphix:embedded_data",
- "org.open-zfs:large_blocks",
- "org.illumos:sha512",
- "org.illumos:skein",
- "org.zfsonlinux:large_dnode",
- "com.joyent:multi_vdev_crash_dump",
- "com.delphix:spacemap_histogram",
- "com.delphix:zpool_checkpoint",
- "com.delphix:spacemap_v2",
- "com.datto:encryption",
"com.datto:bookmark_v2",
- "org.zfsonlinux:allocation_classes",
+ "com.datto:encryption",
"com.datto:resilver_defer",
+ "com.delphix:bookmark_written",
"com.delphix:device_removal",
+ "com.delphix:embedded_data",
+ "com.delphix:extensible_dataset",
+ "com.delphix:head_errlog",
+ "com.delphix:hole_birth",
"com.delphix:obsolete_counts",
+ "com.delphix:spacemap_histogram",
+ "com.delphix:spacemap_v2",
+ "com.delphix:zpool_checkpoint",
"com.intel:allocation_classes",
+ "com.joyent:multi_vdev_crash_dump",
"org.freebsd:zstd_compress",
- "com.delphix:bookmark_written",
- "com.delphix:head_errlog",
+ "org.illumos:lz4_compress",
+ "org.illumos:sha512",
+ "org.illumos:skein",
+ "org.open-zfs:large_blocks",
"org.openzfs:blake3",
+ "org.zfsonlinux:allocation_classes",
+ "org.zfsonlinux:large_dnode",
NULL
};