aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2022-11-10 08:47:23 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2022-11-10 08:47:23 +0000
commitf993fff6897946077a3f9604b7dcbe59f5ce5135 (patch)
tree08df9fee3429532497264435056a5675ceb3dfa0
parentd88828148d893e3d7c747f9331187ec6e44f26bd (diff)
downloadsrc-f993fff6897946077a3f9604b7dcbe59f5ce5135.tar.gz
src-f993fff6897946077a3f9604b7dcbe59f5ce5135.zip
Sort list of supported features for more easy handling
in the future. Reviewed by: imp
-rw-r--r--stand/libsa/zfs/zfsimpl.c32
1 files 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
};