From 21c2f90b27e4e19b33f21919654fdd848c8dcfe1 Mon Sep 17 00:00:00 2001 From: Faruk Kasumovic Date: Mon, 6 Aug 2018 14:21:34 +0200 Subject: [PATCH] Enable 0.7.x features per default --- zpool.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zpool.go b/zpool.go index f0d69be..a3f9d50 100644 --- a/zpool.go +++ b/zpool.go @@ -913,6 +913,14 @@ func PoolCreate(name string, vdev VDevTree, features map[string]string, features["filesystem_limits"] = FENABLED features["large_blocks"] = FENABLED + // Enable 0.7.x features per default + features["multi_vdev_crash_dump"] = FENABLED + features["large_dnode"] = FENABLED + features["sha512"] = FENABLED + features["skein"] = FENABLED + features["edonr"] = FENABLED + features["userobj_accounting"] = FENABLED + // convert properties cprops := toCPoolProperties(props) if cprops != nil {