]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/zfs/spa_misc.c
Fix kstat state update during pool transition
[mirror_zfs.git] / module / zfs / spa_misc.c
index 234e5c60d80b0a472ccf119619c7b96680f0e45c..dddbe9cfa0e4751790ce44314c9b036cecc67e7a 100644 (file)
  */
 /*
  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
- * Copyright (c) 2011, 2017 by Delphix. All rights reserved.
+ * Copyright (c) 2011, 2018 by Delphix. All rights reserved.
  * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
  * Copyright 2013 Saso Kiselkov. All rights reserved.
  * Copyright (c) 2017 Datto Inc.
+ * Copyright (c) 2017, Intel Corporation.
  */
 
 #include <sys/zfs_context.h>
@@ -37,6 +38,8 @@
 #include <sys/zap.h>
 #include <sys/zil.h>
 #include <sys/vdev_impl.h>
+#include <sys/vdev_initialize.h>
+#include <sys/vdev_trim.h>
 #include <sys/vdev_file.h>
 #include <sys/vdev_raidz.h>
 #include <sys/metaslab.h>
@@ -80,7 +83,7 @@
  *     definition they must have an existing reference, and will never need
  *     to lookup a spa_t by name.
  *
- * spa_refcount (per-spa refcount_t protected by mutex)
+ * spa_refcount (per-spa zfs_refcount_t protected by mutex)
  *
  *     This reference count keep track of any active users of the spa_t.  The
  *     spa_t cannot be destroyed or freed while this is non-zero.  Internally,
  * vdev state is protected by spa_vdev_state_enter() / spa_vdev_state_exit().
  * Like spa_vdev_enter/exit, these are convenience wrappers -- the actual
  * locking is, always, based on spa_namespace_lock and spa_config_lock[].
- *
- * spa_rename() is also implemented within this file since it requires
- * manipulation of the namespace.
  */
 
 static avl_tree_t spa_namespace_avl;
@@ -314,7 +314,7 @@ unsigned long zfs_deadman_ziotime_ms = 300000ULL;
  * Check time in milliseconds. This defines the frequency at which we check
  * for hung I/O.
  */
-unsigned long  zfs_deadman_checktime_ms = 60000ULL;
+unsigned long zfs_deadman_checktime_ms = 60000ULL;
 
 /*
  * By default the deadman is enabled.
@@ -357,12 +357,15 @@ int spa_asize_inflation = 24;
  * These are the operations that call dsl_pool_adjustedsize() with the netfree
  * argument set to TRUE.
  *
+ * Operations that are almost guaranteed to free up space in the absence of
+ * a pool checkpoint can use up to three quarters of the slop space
+ * (e.g zfs destroy).
+ *
  * A very restricted set of operations are always permitted, regardless of
  * the amount of free space.  These are the operations that call
- * dsl_sync_task(ZFS_SPACE_CHECK_NONE), e.g. "zfs destroy".  If these
- * operations result in a net increase in the amount of space used,
- * it is possible to run the pool completely out of space, causing it to
- * be permanently read-only.
+ * dsl_sync_task(ZFS_SPACE_CHECK_NONE). If these operations result in a net
+ * increase in the amount of space used, it is possible to run the pool
+ * completely out of space, causing it to be permanently read-only.
  *
  * Note that on very small pools, the slop space will be larger than
  * 3.2%, in an effort to have it be at least spa_min_slop (128MB),
@@ -372,6 +375,8 @@ int spa_asize_inflation = 24;
  */
 int spa_slop_shift = 5;
 uint64_t spa_min_slop = 128 * 1024 * 1024;
+int spa_allocators = 4;
+
 
 /*PRINTFLIKE2*/
 void
@@ -403,6 +408,19 @@ spa_load_note(spa_t *spa, const char *fmt, ...)
            spa->spa_trust_config ? "trusted" : "untrusted", buf);
 }
 
+/*
+ * By default dedup and user data indirects land in the special class
+ */
+int zfs_ddt_data_is_special = B_TRUE;
+int zfs_user_indirect_is_special = B_TRUE;
+
+/*
+ * The percentage of special class final space reserved for metadata only.
+ * Once we allocate 100 - zfs_special_class_metadata_reserve_pct we only
+ * let metadata into the class.
+ */
+int zfs_special_class_metadata_reserve_pct = 25;
+
 /*
  * ==========================================================================
  * SPA config locking
@@ -415,7 +433,7 @@ spa_config_lock_init(spa_t *spa)
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                mutex_init(&scl->scl_lock, NULL, MUTEX_DEFAULT, NULL);
                cv_init(&scl->scl_cv, NULL, CV_DEFAULT, NULL);
-               refcount_create_untracked(&scl->scl_count);
+               zfs_refcount_create_untracked(&scl->scl_count);
                scl->scl_writer = NULL;
                scl->scl_write_wanted = 0;
        }
@@ -428,7 +446,7 @@ spa_config_lock_destroy(spa_t *spa)
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                mutex_destroy(&scl->scl_lock);
                cv_destroy(&scl->scl_cv);
-               refcount_destroy(&scl->scl_count);
+               zfs_refcount_destroy(&scl->scl_count);
                ASSERT(scl->scl_writer == NULL);
                ASSERT(scl->scl_write_wanted == 0);
        }
@@ -451,7 +469,7 @@ spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw)
                        }
                } else {
                        ASSERT(scl->scl_writer != curthread);
-                       if (!refcount_is_zero(&scl->scl_count)) {
+                       if (!zfs_refcount_is_zero(&scl->scl_count)) {
                                mutex_exit(&scl->scl_lock);
                                spa_config_exit(spa, locks & ((1 << i) - 1),
                                    tag);
@@ -459,7 +477,7 @@ spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw)
                        }
                        scl->scl_writer = curthread;
                }
-               (void) refcount_add(&scl->scl_count, tag);
+               (void) zfs_refcount_add(&scl->scl_count, tag);
                mutex_exit(&scl->scl_lock);
        }
        return (1);
@@ -485,14 +503,14 @@ spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw)
                        }
                } else {
                        ASSERT(scl->scl_writer != curthread);
-                       while (!refcount_is_zero(&scl->scl_count)) {
+                       while (!zfs_refcount_is_zero(&scl->scl_count)) {
                                scl->scl_write_wanted++;
                                cv_wait(&scl->scl_cv, &scl->scl_lock);
                                scl->scl_write_wanted--;
                        }
                        scl->scl_writer = curthread;
                }
-               (void) refcount_add(&scl->scl_count, tag);
+               (void) zfs_refcount_add(&scl->scl_count, tag);
                mutex_exit(&scl->scl_lock);
        }
        ASSERT3U(wlocks_held, <=, locks);
@@ -506,8 +524,8 @@ spa_config_exit(spa_t *spa, int locks, void *tag)
                if (!(locks & (1 << i)))
                        continue;
                mutex_enter(&scl->scl_lock);
-               ASSERT(!refcount_is_zero(&scl->scl_count));
-               if (refcount_remove(&scl->scl_count, tag) == 0) {
+               ASSERT(!zfs_refcount_is_zero(&scl->scl_count));
+               if (zfs_refcount_remove(&scl->scl_count, tag) == 0) {
                        ASSERT(scl->scl_writer == NULL ||
                            scl->scl_writer == curthread);
                        scl->scl_writer = NULL; /* OK in either case */
@@ -526,7 +544,8 @@ spa_config_held(spa_t *spa, int locks, krw_t rw)
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                if (!(locks & (1 << i)))
                        continue;
-               if ((rw == RW_READER && !refcount_is_zero(&scl->scl_count)) ||
+               if ((rw == RW_READER &&
+                   !zfs_refcount_is_zero(&scl->scl_count)) ||
                    (rw == RW_WRITER && scl->scl_writer == curthread))
                        locks_held |= 1 << i;
        }
@@ -621,7 +640,6 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        mutex_init(&spa->spa_suspend_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_vdev_top_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_feat_stats_lock, NULL, MUTEX_DEFAULT, NULL);
-       mutex_init(&spa->spa_alloc_lock, NULL, MUTEX_DEFAULT, NULL);
 
        cv_init(&spa->spa_async_cv, NULL, CV_DEFAULT, NULL);
        cv_init(&spa->spa_evicting_os_cv, NULL, CV_DEFAULT, NULL);
@@ -645,7 +663,7 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        spa->spa_deadman_ziotime = MSEC2NSEC(zfs_deadman_ziotime_ms);
        spa_set_deadman_failmode(spa, zfs_deadman_failmode);
 
-       refcount_create(&spa->spa_refcount);
+       zfs_refcount_create(&spa->spa_refcount);
        spa_config_lock_init(spa);
        spa_stats_init(spa);
 
@@ -657,8 +675,16 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        if (altroot)
                spa->spa_root = spa_strdup(altroot);
 
-       avl_create(&spa->spa_alloc_tree, zio_bookmark_compare,
-           sizeof (zio_t), offsetof(zio_t, io_alloc_node));
+       spa->spa_alloc_count = spa_allocators;
+       spa->spa_alloc_locks = kmem_zalloc(spa->spa_alloc_count *
+           sizeof (kmutex_t), KM_SLEEP);
+       spa->spa_alloc_trees = kmem_zalloc(spa->spa_alloc_count *
+           sizeof (avl_tree_t), KM_SLEEP);
+       for (int i = 0; i < spa->spa_alloc_count; i++) {
+               mutex_init(&spa->spa_alloc_locks[i], NULL, MUTEX_DEFAULT, NULL);
+               avl_create(&spa->spa_alloc_trees[i], zio_bookmark_compare,
+                   sizeof (zio_t), offsetof(zio_t, io_alloc_node));
+       }
 
        /*
         * Every pool starts with the default cachefile
@@ -705,6 +731,9 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
                spa->spa_feat_refcount_cache[i] = SPA_FEATURE_DISABLED;
        }
 
+       list_create(&spa->spa_leaf_list, sizeof (vdev_t),
+           offsetof(vdev_t, vdev_leaf_node));
+
        return (spa);
 }
 
@@ -720,7 +749,7 @@ spa_remove(spa_t *spa)
 
        ASSERT(MUTEX_HELD(&spa_namespace_lock));
        ASSERT(spa->spa_state == POOL_STATE_UNINITIALIZED);
-       ASSERT3U(refcount_count(&spa->spa_refcount), ==, 0);
+       ASSERT3U(zfs_refcount_count(&spa->spa_refcount), ==, 0);
 
        nvlist_free(spa->spa_config_splitting);
 
@@ -737,15 +766,24 @@ spa_remove(spa_t *spa)
                kmem_free(dp, sizeof (spa_config_dirent_t));
        }
 
-       avl_destroy(&spa->spa_alloc_tree);
+       for (int i = 0; i < spa->spa_alloc_count; i++) {
+               avl_destroy(&spa->spa_alloc_trees[i]);
+               mutex_destroy(&spa->spa_alloc_locks[i]);
+       }
+       kmem_free(spa->spa_alloc_locks, spa->spa_alloc_count *
+           sizeof (kmutex_t));
+       kmem_free(spa->spa_alloc_trees, spa->spa_alloc_count *
+           sizeof (avl_tree_t));
+
        list_destroy(&spa->spa_config_list);
+       list_destroy(&spa->spa_leaf_list);
 
        nvlist_free(spa->spa_label_features);
        nvlist_free(spa->spa_load_info);
        nvlist_free(spa->spa_feat_stats);
        spa_config_set(spa, NULL);
 
-       refcount_destroy(&spa->spa_refcount);
+       zfs_refcount_destroy(&spa->spa_refcount);
 
        spa_stats_destroy(spa);
        spa_config_lock_destroy(spa);
@@ -761,7 +799,6 @@ spa_remove(spa_t *spa)
        cv_destroy(&spa->spa_scrub_io_cv);
        cv_destroy(&spa->spa_suspend_cv);
 
-       mutex_destroy(&spa->spa_alloc_lock);
        mutex_destroy(&spa->spa_async_lock);
        mutex_destroy(&spa->spa_errlist_lock);
        mutex_destroy(&spa->spa_errlog_lock);
@@ -806,9 +843,9 @@ spa_next(spa_t *prev)
 void
 spa_open_ref(spa_t *spa, void *tag)
 {
-       ASSERT(refcount_count(&spa->spa_refcount) >= spa->spa_minref ||
+       ASSERT(zfs_refcount_count(&spa->spa_refcount) >= spa->spa_minref ||
            MUTEX_HELD(&spa_namespace_lock));
-       (void) refcount_add(&spa->spa_refcount, tag);
+       (void) zfs_refcount_add(&spa->spa_refcount, tag);
 }
 
 /*
@@ -818,9 +855,9 @@ spa_open_ref(spa_t *spa, void *tag)
 void
 spa_close(spa_t *spa, void *tag)
 {
-       ASSERT(refcount_count(&spa->spa_refcount) > spa->spa_minref ||
+       ASSERT(zfs_refcount_count(&spa->spa_refcount) > spa->spa_minref ||
            MUTEX_HELD(&spa_namespace_lock));
-       (void) refcount_remove(&spa->spa_refcount, tag);
+       (void) zfs_refcount_remove(&spa->spa_refcount, tag);
 }
 
 /*
@@ -834,7 +871,7 @@ spa_close(spa_t *spa, void *tag)
 void
 spa_async_close(spa_t *spa, void *tag)
 {
-       (void) refcount_remove(&spa->spa_refcount, tag);
+       (void) zfs_refcount_remove(&spa->spa_refcount, tag);
 }
 
 /*
@@ -847,7 +884,7 @@ spa_refcount_zero(spa_t *spa)
 {
        ASSERT(MUTEX_HELD(&spa_namespace_lock));
 
-       return (refcount_count(&spa->spa_refcount) == spa->spa_minref);
+       return (zfs_refcount_count(&spa->spa_refcount) == spa->spa_minref);
 }
 
 /*
@@ -1092,6 +1129,9 @@ spa_vdev_enter(spa_t *spa)
 {
        mutex_enter(&spa->spa_vdev_top_lock);
        mutex_enter(&spa_namespace_lock);
+
+       vdev_autotrim_stop_all(spa);
+
        return (spa_vdev_config_enter(spa));
 }
 
@@ -1140,6 +1180,8 @@ spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
         */
        ASSERT(metaslab_class_validate(spa_normal_class(spa)) == 0);
        ASSERT(metaslab_class_validate(spa_log_class(spa)) == 0);
+       ASSERT(metaslab_class_validate(spa_special_class(spa)) == 0);
+       ASSERT(metaslab_class_validate(spa_dedup_class(spa)) == 0);
 
        spa_config_exit(spa, SCL_ALL, spa);
 
@@ -1161,6 +1203,22 @@ spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
 
        if (vd != NULL) {
                ASSERT(!vd->vdev_detached || vd->vdev_dtl_sm == NULL);
+               if (vd->vdev_ops->vdev_op_leaf) {
+                       mutex_enter(&vd->vdev_initialize_lock);
+                       vdev_initialize_stop(vd, VDEV_INITIALIZE_CANCELED,
+                           NULL);
+                       mutex_exit(&vd->vdev_initialize_lock);
+
+                       mutex_enter(&vd->vdev_trim_lock);
+                       vdev_trim_stop(vd, VDEV_TRIM_CANCELED, NULL);
+                       mutex_exit(&vd->vdev_trim_lock);
+               }
+
+               /*
+                * The vdev may be both a leaf and top-level device.
+                */
+               vdev_autotrim_stop_wait(vd);
+
                spa_config_enter(spa, SCL_ALL, spa, RW_WRITER);
                vdev_free(vd);
                spa_config_exit(spa, SCL_ALL, spa);
@@ -1182,6 +1240,8 @@ spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
 int
 spa_vdev_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error)
 {
+       vdev_autotrim_restart(spa);
+
        spa_vdev_config_exit(spa, vd, txg, error, FTAG);
        mutex_exit(&spa_namespace_lock);
        mutex_exit(&spa->spa_vdev_top_lock);
@@ -1299,56 +1359,6 @@ spa_deactivate_mos_feature(spa_t *spa, const char *feature)
                vdev_config_dirty(spa->spa_root_vdev);
 }
 
-/*
- * Rename a spa_t.
- */
-int
-spa_rename(const char *name, const char *newname)
-{
-       spa_t *spa;
-       int err;
-
-       /*
-        * Lookup the spa_t and grab the config lock for writing.  We need to
-        * actually open the pool so that we can sync out the necessary labels.
-        * It's OK to call spa_open() with the namespace lock held because we
-        * allow recursive calls for other reasons.
-        */
-       mutex_enter(&spa_namespace_lock);
-       if ((err = spa_open(name, &spa, FTAG)) != 0) {
-               mutex_exit(&spa_namespace_lock);
-               return (err);
-       }
-
-       spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
-
-       avl_remove(&spa_namespace_avl, spa);
-       (void) strlcpy(spa->spa_name, newname, sizeof (spa->spa_name));
-       avl_add(&spa_namespace_avl, spa);
-
-       /*
-        * Sync all labels to disk with the new names by marking the root vdev
-        * dirty and waiting for it to sync.  It will pick up the new pool name
-        * during the sync.
-        */
-       vdev_config_dirty(spa->spa_root_vdev);
-
-       spa_config_exit(spa, SCL_ALL, FTAG);
-
-       txg_wait_synced(spa->spa_dsl_pool, 0);
-
-       /*
-        * Sync the updated config cache.
-        */
-       spa_write_cachefile(spa, B_FALSE, B_TRUE);
-
-       spa_close(spa, FTAG);
-
-       mutex_exit(&spa_namespace_lock);
-
-       return (0);
-}
-
 /*
  * Return the spa_t associated with given pool_guid, if it exists.  If
  * device_guid is non-zero, determine whether the pool exists *and* contains
@@ -1535,6 +1545,16 @@ zfs_strtonum(const char *str, char **nptr)
        return (val);
 }
 
+void
+spa_activate_allocation_classes(spa_t *spa, dmu_tx_t *tx)
+{
+       /*
+        * We bump the feature refcount for each special vdev added to the pool
+        */
+       ASSERT(spa_feature_is_enabled(spa, SPA_FEATURE_ALLOCATION_CLASSES));
+       spa_feature_incr(spa, SPA_FEATURE_ALLOCATION_CLASSES, tx);
+}
+
 /*
  * ==========================================================================
  * Accessor functions
@@ -1718,6 +1738,12 @@ spa_get_dspace(spa_t *spa)
        return (spa->spa_dspace);
 }
 
+uint64_t
+spa_get_checkpoint_space(spa_t *spa)
+{
+       return (spa->spa_checkpoint_info.sci_dspace);
+}
+
 void
 spa_update_dspace(spa_t *spa)
 {
@@ -1786,6 +1812,79 @@ spa_log_class(spa_t *spa)
        return (spa->spa_log_class);
 }
 
+metaslab_class_t *
+spa_special_class(spa_t *spa)
+{
+       return (spa->spa_special_class);
+}
+
+metaslab_class_t *
+spa_dedup_class(spa_t *spa)
+{
+       return (spa->spa_dedup_class);
+}
+
+/*
+ * Locate an appropriate allocation class
+ */
+metaslab_class_t *
+spa_preferred_class(spa_t *spa, uint64_t size, dmu_object_type_t objtype,
+    uint_t level, uint_t special_smallblk)
+{
+       if (DMU_OT_IS_ZIL(objtype)) {
+               if (spa->spa_log_class->mc_groups != 0)
+                       return (spa_log_class(spa));
+               else
+                       return (spa_normal_class(spa));
+       }
+
+       boolean_t has_special_class = spa->spa_special_class->mc_groups != 0;
+
+       if (DMU_OT_IS_DDT(objtype)) {
+               if (spa->spa_dedup_class->mc_groups != 0)
+                       return (spa_dedup_class(spa));
+               else if (has_special_class && zfs_ddt_data_is_special)
+                       return (spa_special_class(spa));
+               else
+                       return (spa_normal_class(spa));
+       }
+
+       /* Indirect blocks for user data can land in special if allowed */
+       if (level > 0 && (DMU_OT_IS_FILE(objtype) || objtype == DMU_OT_ZVOL)) {
+               if (has_special_class && zfs_user_indirect_is_special)
+                       return (spa_special_class(spa));
+               else
+                       return (spa_normal_class(spa));
+       }
+
+       if (DMU_OT_IS_METADATA(objtype) || level > 0) {
+               if (has_special_class)
+                       return (spa_special_class(spa));
+               else
+                       return (spa_normal_class(spa));
+       }
+
+       /*
+        * Allow small file blocks in special class in some cases (like
+        * for the dRAID vdev feature). But always leave a reserve of
+        * zfs_special_class_metadata_reserve_pct exclusively for metadata.
+        */
+       if (DMU_OT_IS_FILE(objtype) &&
+           has_special_class && size <= special_smallblk) {
+               metaslab_class_t *special = spa_special_class(spa);
+               uint64_t alloc = metaslab_class_get_alloc(special);
+               uint64_t space = metaslab_class_get_space(special);
+               uint64_t limit =
+                   (space * (100 - zfs_special_class_metadata_reserve_pct))
+                   / 100;
+
+               if (alloc < limit)
+                       return (special);
+       }
+
+       return (spa_normal_class(spa));
+}
+
 void
 spa_evicting_os_register(spa_t *spa, objset_t *os)
 {
@@ -1839,6 +1938,12 @@ spa_deadman_synctime(spa_t *spa)
        return (spa->spa_deadman_synctime);
 }
 
+spa_autotrim_t
+spa_get_autotrim(spa_t *spa)
+{
+       return (spa->spa_autotrim);
+}
+
 uint64_t
 spa_deadman_ziotime(spa_t *spa)
 {
@@ -1908,6 +2013,220 @@ bp_get_dsize(spa_t *spa, const blkptr_t *bp)
        return (dsize);
 }
 
+uint64_t
+spa_dirty_data(spa_t *spa)
+{
+       return (spa->spa_dsl_pool->dp_dirty_total);
+}
+
+/*
+ * ==========================================================================
+ * SPA Import Progress Routines
+ * ==========================================================================
+ */
+
+typedef struct spa_import_progress {
+       uint64_t                pool_guid;      /* unique id for updates */
+       char                    *pool_name;
+       spa_load_state_t        spa_load_state;
+       uint64_t                mmp_sec_remaining;      /* MMP activity check */
+       uint64_t                spa_load_max_txg;       /* rewind txg */
+       procfs_list_node_t      smh_node;
+} spa_import_progress_t;
+
+spa_history_list_t *spa_import_progress_list = NULL;
+
+static int
+spa_import_progress_show_header(struct seq_file *f)
+{
+       seq_printf(f, "%-20s %-14s %-14s %-12s %s\n", "pool_guid",
+           "load_state", "multihost_secs", "max_txg",
+           "pool_name");
+       return (0);
+}
+
+static int
+spa_import_progress_show(struct seq_file *f, void *data)
+{
+       spa_import_progress_t *sip = (spa_import_progress_t *)data;
+
+       seq_printf(f, "%-20llu %-14llu %-14llu %-12llu %s\n",
+           (u_longlong_t)sip->pool_guid, (u_longlong_t)sip->spa_load_state,
+           (u_longlong_t)sip->mmp_sec_remaining,
+           (u_longlong_t)sip->spa_load_max_txg,
+           (sip->pool_name ? sip->pool_name : "-"));
+
+       return (0);
+}
+
+/* Remove oldest elements from list until there are no more than 'size' left */
+static void
+spa_import_progress_truncate(spa_history_list_t *shl, unsigned int size)
+{
+       spa_import_progress_t *sip;
+       while (shl->size > size) {
+               sip = list_remove_head(&shl->procfs_list.pl_list);
+               if (sip->pool_name)
+                       spa_strfree(sip->pool_name);
+               kmem_free(sip, sizeof (spa_import_progress_t));
+               shl->size--;
+       }
+
+       IMPLY(size == 0, list_is_empty(&shl->procfs_list.pl_list));
+}
+
+static void
+spa_import_progress_init(void)
+{
+       spa_import_progress_list = kmem_zalloc(sizeof (spa_history_list_t),
+           KM_SLEEP);
+
+       spa_import_progress_list->size = 0;
+
+       spa_import_progress_list->procfs_list.pl_private =
+           spa_import_progress_list;
+
+       procfs_list_install("zfs",
+           "import_progress",
+           0644,
+           &spa_import_progress_list->procfs_list,
+           spa_import_progress_show,
+           spa_import_progress_show_header,
+           NULL,
+           offsetof(spa_import_progress_t, smh_node));
+}
+
+static void
+spa_import_progress_destroy(void)
+{
+       spa_history_list_t *shl = spa_import_progress_list;
+       procfs_list_uninstall(&shl->procfs_list);
+       spa_import_progress_truncate(shl, 0);
+       kmem_free(shl, sizeof (spa_history_list_t));
+       procfs_list_destroy(&shl->procfs_list);
+}
+
+int
+spa_import_progress_set_state(uint64_t pool_guid,
+    spa_load_state_t load_state)
+{
+       spa_history_list_t *shl = spa_import_progress_list;
+       spa_import_progress_t *sip;
+       int error = ENOENT;
+
+       if (shl->size == 0)
+               return (0);
+
+       mutex_enter(&shl->procfs_list.pl_lock);
+       for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
+           sip = list_prev(&shl->procfs_list.pl_list, sip)) {
+               if (sip->pool_guid == pool_guid) {
+                       sip->spa_load_state = load_state;
+                       error = 0;
+                       break;
+               }
+       }
+       mutex_exit(&shl->procfs_list.pl_lock);
+
+       return (error);
+}
+
+int
+spa_import_progress_set_max_txg(uint64_t pool_guid, uint64_t load_max_txg)
+{
+       spa_history_list_t *shl = spa_import_progress_list;
+       spa_import_progress_t *sip;
+       int error = ENOENT;
+
+       if (shl->size == 0)
+               return (0);
+
+       mutex_enter(&shl->procfs_list.pl_lock);
+       for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
+           sip = list_prev(&shl->procfs_list.pl_list, sip)) {
+               if (sip->pool_guid == pool_guid) {
+                       sip->spa_load_max_txg = load_max_txg;
+                       error = 0;
+                       break;
+               }
+       }
+       mutex_exit(&shl->procfs_list.pl_lock);
+
+       return (error);
+}
+
+int
+spa_import_progress_set_mmp_check(uint64_t pool_guid,
+    uint64_t mmp_sec_remaining)
+{
+       spa_history_list_t *shl = spa_import_progress_list;
+       spa_import_progress_t *sip;
+       int error = ENOENT;
+
+       if (shl->size == 0)
+               return (0);
+
+       mutex_enter(&shl->procfs_list.pl_lock);
+       for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
+           sip = list_prev(&shl->procfs_list.pl_list, sip)) {
+               if (sip->pool_guid == pool_guid) {
+                       sip->mmp_sec_remaining = mmp_sec_remaining;
+                       error = 0;
+                       break;
+               }
+       }
+       mutex_exit(&shl->procfs_list.pl_lock);
+
+       return (error);
+}
+
+/*
+ * A new import is in progress, add an entry.
+ */
+void
+spa_import_progress_add(spa_t *spa)
+{
+       spa_history_list_t *shl = spa_import_progress_list;
+       spa_import_progress_t *sip;
+       char *poolname = NULL;
+
+       sip = kmem_zalloc(sizeof (spa_import_progress_t), KM_SLEEP);
+       sip->pool_guid = spa_guid(spa);
+
+       (void) nvlist_lookup_string(spa->spa_config, ZPOOL_CONFIG_POOL_NAME,
+           &poolname);
+       if (poolname == NULL)
+               poolname = spa_name(spa);
+       sip->pool_name = spa_strdup(poolname);
+       sip->spa_load_state = spa_load_state(spa);
+
+       mutex_enter(&shl->procfs_list.pl_lock);
+       procfs_list_add(&shl->procfs_list, sip);
+       shl->size++;
+       mutex_exit(&shl->procfs_list.pl_lock);
+}
+
+void
+spa_import_progress_remove(uint64_t pool_guid)
+{
+       spa_history_list_t *shl = spa_import_progress_list;
+       spa_import_progress_t *sip;
+
+       mutex_enter(&shl->procfs_list.pl_lock);
+       for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
+           sip = list_prev(&shl->procfs_list.pl_list, sip)) {
+               if (sip->pool_guid == pool_guid) {
+                       if (sip->pool_name)
+                               spa_strfree(sip->pool_name);
+                       list_remove(&shl->procfs_list.pl_list, sip);
+                       shl->size--;
+                       kmem_free(sip, sizeof (spa_import_progress_t));
+                       break;
+               }
+       }
+       mutex_exit(&shl->procfs_list.pl_lock);
+}
+
 /*
  * ==========================================================================
  * Initialization and Termination
@@ -1969,7 +2288,7 @@ spa_init(int mode)
 #endif
 
        fm_init();
-       refcount_init();
+       zfs_refcount_init();
        unique_init();
        range_tree_init();
        metaslab_alloc_trace_init();
@@ -1988,6 +2307,7 @@ spa_init(int mode)
        l2arc_start();
        scan_init();
        qat_init();
+       spa_import_progress_init();
 }
 
 void
@@ -2008,10 +2328,11 @@ spa_fini(void)
        metaslab_alloc_trace_fini();
        range_tree_fini();
        unique_fini();
-       refcount_fini();
+       zfs_refcount_fini();
        fm_fini();
        scan_fini();
        qat_fini();
+       spa_import_progress_destroy();
 
        avl_destroy(&spa_namespace_avl);
        avl_destroy(&spa_spare_avl);
@@ -2065,7 +2386,8 @@ spa_writeable(spa_t *spa)
 boolean_t
 spa_has_pending_synctask(spa_t *spa)
 {
-       return (!txg_all_lists_empty(&spa->spa_dsl_pool->dp_sync_tasks));
+       return (!txg_all_lists_empty(&spa->spa_dsl_pool->dp_sync_tasks) ||
+           !txg_all_lists_empty(&spa->spa_dsl_pool->dp_early_sync_tasks));
 }
 
 int
@@ -2254,7 +2576,113 @@ spa_set_missing_tvds(spa_t *spa, uint64_t missing)
        spa->spa_missing_tvds = missing;
 }
 
-#if defined(_KERNEL) && defined(HAVE_SPL)
+/*
+ * Return the pool state string ("ONLINE", "DEGRADED", "SUSPENDED", etc).
+ */
+const char *
+spa_state_to_name(spa_t *spa)
+{
+       ASSERT3P(spa, !=, NULL);
+
+       /*
+        * it is possible for the spa to exist, without root vdev
+        * as the spa transitions during import/export
+        */
+       vdev_t *rvd = spa->spa_root_vdev;
+       if (rvd == NULL) {
+               return ("TRANSITIONING");
+       }
+       vdev_state_t state = rvd->vdev_state;
+       vdev_aux_t aux = rvd->vdev_stat.vs_aux;
+
+       if (spa_suspended(spa) &&
+           (spa_get_failmode(spa) != ZIO_FAILURE_MODE_CONTINUE))
+               return ("SUSPENDED");
+
+       switch (state) {
+       case VDEV_STATE_CLOSED:
+       case VDEV_STATE_OFFLINE:
+               return ("OFFLINE");
+       case VDEV_STATE_REMOVED:
+               return ("REMOVED");
+       case VDEV_STATE_CANT_OPEN:
+               if (aux == VDEV_AUX_CORRUPT_DATA || aux == VDEV_AUX_BAD_LOG)
+                       return ("FAULTED");
+               else if (aux == VDEV_AUX_SPLIT_POOL)
+                       return ("SPLIT");
+               else
+                       return ("UNAVAIL");
+       case VDEV_STATE_FAULTED:
+               return ("FAULTED");
+       case VDEV_STATE_DEGRADED:
+               return ("DEGRADED");
+       case VDEV_STATE_HEALTHY:
+               return ("ONLINE");
+       default:
+               break;
+       }
+
+       return ("UNKNOWN");
+}
+
+boolean_t
+spa_top_vdevs_spacemap_addressable(spa_t *spa)
+{
+       vdev_t *rvd = spa->spa_root_vdev;
+       for (uint64_t c = 0; c < rvd->vdev_children; c++) {
+               if (!vdev_is_spacemap_addressable(rvd->vdev_child[c]))
+                       return (B_FALSE);
+       }
+       return (B_TRUE);
+}
+
+boolean_t
+spa_has_checkpoint(spa_t *spa)
+{
+       return (spa->spa_checkpoint_txg != 0);
+}
+
+boolean_t
+spa_importing_readonly_checkpoint(spa_t *spa)
+{
+       return ((spa->spa_import_flags & ZFS_IMPORT_CHECKPOINT) &&
+           spa->spa_mode == FREAD);
+}
+
+uint64_t
+spa_min_claim_txg(spa_t *spa)
+{
+       uint64_t checkpoint_txg = spa->spa_uberblock.ub_checkpoint_txg;
+
+       if (checkpoint_txg != 0)
+               return (checkpoint_txg + 1);
+
+       return (spa->spa_first_txg);
+}
+
+/*
+ * If there is a checkpoint, async destroys may consume more space from
+ * the pool instead of freeing it. In an attempt to save the pool from
+ * getting suspended when it is about to run out of space, we stop
+ * processing async destroys.
+ */
+boolean_t
+spa_suspend_async_destroy(spa_t *spa)
+{
+       dsl_pool_t *dp = spa_get_dsl(spa);
+
+       uint64_t unreserved = dsl_pool_unreserved_space(dp,
+           ZFS_SPACE_CHECK_EXTRA_RESERVED);
+       uint64_t used = dsl_dir_phys(dp->dp_root_dir)->dd_used_bytes;
+       uint64_t avail = (unreserved > used) ? (unreserved - used) : 0;
+
+       if (spa_has_checkpoint(spa) && avail == 0)
+               return (B_TRUE);
+
+       return (B_FALSE);
+}
+
+#if defined(_KERNEL)
 
 #include <linux/mod_compat.h>
 
@@ -2326,6 +2754,26 @@ param_set_deadman_synctime(const char *val, zfs_kernel_param_t *kp)
        return (0);
 }
 
+static int
+param_set_slop_shift(const char *buf, zfs_kernel_param_t *kp)
+{
+       unsigned long val;
+       int error;
+
+       error = kstrtoul(buf, 0, &val);
+       if (error)
+               return (SET_ERROR(error));
+
+       if (val < 1 || val > 31)
+               return (SET_ERROR(-EINVAL));
+
+       error = param_set_int(buf, kp);
+       if (error < 0)
+               return (SET_ERROR(error));
+
+       return (0);
+}
+
 /* Namespace manipulation */
 EXPORT_SYMBOL(spa_lookup);
 EXPORT_SYMBOL(spa_add);
@@ -2372,6 +2820,8 @@ EXPORT_SYMBOL(spa_update_dspace);
 EXPORT_SYMBOL(spa_deflate);
 EXPORT_SYMBOL(spa_normal_class);
 EXPORT_SYMBOL(spa_log_class);
+EXPORT_SYMBOL(spa_special_class);
+EXPORT_SYMBOL(spa_preferred_class);
 EXPORT_SYMBOL(spa_max_replication);
 EXPORT_SYMBOL(spa_prev_software_version);
 EXPORT_SYMBOL(spa_get_failmode);
@@ -2383,7 +2833,6 @@ EXPORT_SYMBOL(spa_maxblocksize);
 EXPORT_SYMBOL(spa_maxdnodesize);
 
 /* Miscellaneous support routines */
-EXPORT_SYMBOL(spa_rename);
 EXPORT_SYMBOL(spa_guid_exists);
 EXPORT_SYMBOL(spa_strdup);
 EXPORT_SYMBOL(spa_strfree);
@@ -2406,6 +2855,12 @@ EXPORT_SYMBOL(spa_namespace_lock);
 EXPORT_SYMBOL(spa_trust_config);
 EXPORT_SYMBOL(spa_missing_tvds_allowed);
 EXPORT_SYMBOL(spa_set_missing_tvds);
+EXPORT_SYMBOL(spa_state_to_name);
+EXPORT_SYMBOL(spa_importing_readonly_checkpoint);
+EXPORT_SYMBOL(spa_min_claim_txg);
+EXPORT_SYMBOL(spa_suspend_async_destroy);
+EXPORT_SYMBOL(spa_has_checkpoint);
+EXPORT_SYMBOL(spa_top_vdevs_spacemap_addressable);
 
 /* BEGIN CSTYLED */
 module_param(zfs_flags, uint, 0644);
@@ -2443,7 +2898,21 @@ module_param(spa_asize_inflation, int, 0644);
 MODULE_PARM_DESC(spa_asize_inflation,
        "SPA size estimate multiplication factor");
 
-module_param(spa_slop_shift, int, 0644);
+module_param_call(spa_slop_shift, param_set_slop_shift, param_get_int,
+    &spa_slop_shift, 0644);
 MODULE_PARM_DESC(spa_slop_shift, "Reserved free space in pool");
+
+module_param(zfs_ddt_data_is_special, int, 0644);
+MODULE_PARM_DESC(zfs_ddt_data_is_special,
+       "Place DDT data into the special class");
+
+module_param(zfs_user_indirect_is_special, int, 0644);
+MODULE_PARM_DESC(zfs_user_indirect_is_special,
+       "Place user data indirect blocks into the special class");
+
+module_param(zfs_special_class_metadata_reserve_pct, int, 0644);
+MODULE_PARM_DESC(zfs_special_class_metadata_reserve_pct,
+       "Small file blocks in special vdevs depends on this much "
+       "free space available");
 /* END CSTYLED */
 #endif