From f993fff6897946077a3f9604b7dcbe59f5ce5135 Mon Sep 17 00:00:00 2001 From: Alexander Leidinger Date: Thu, 10 Nov 2022 09:47:23 +0100 Subject: [PATCH] Sort list of supported features for more easy handling in the future. Reviewed by: imp --- stand/libsa/zfs/zfsimpl.c | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/stand/libsa/zfs/zfsimpl.c b/stand/libsa/zfs/zfsimpl.c index 6b961f3110a..36c90613e82 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.datto:bookmark_v2", + "com.datto:encryption", + "com.datto:resilver_defer", + "com.delphix:bookmark_written", + "com.delphix:device_removal", "com.delphix:embedded_data", - "org.open-zfs:large_blocks", + "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", + "org.illumos:lz4_compress", "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:resilver_defer", - "com.delphix:device_removal", - "com.delphix:obsolete_counts", - "com.intel:allocation_classes", - "org.freebsd:zstd_compress", - "com.delphix:bookmark_written", - "com.delphix:head_errlog", + "org.open-zfs:large_blocks", "org.openzfs:blake3", + "org.zfsonlinux:allocation_classes", + "org.zfsonlinux:large_dnode", NULL };